1 16 package sun.tools.javac; 17 18 import java.io.IOException ; 19 import java.io.OutputStream ; 20 21 27 public class Main { 28 29 public Main(OutputStream err, String string) { 30 throw new UnsupportedOperationException ("This is a mock object"); 31 } 32 33 public boolean compile(String [] strings) throws IOException { 34 throw new UnsupportedOperationException ("This is a mock object"); 35 } 36 } 37 | Popular Tags |