1 16 17 package org.apache.axis.components.compiler; 18 19 import java.io.IOException ; 20 import java.util.List ; 21 22 29 public interface Compiler { 30 35 void addFile(String file); 36 37 42 void setSource(String srcDir); 43 44 50 void setDestination(String destDir); 51 52 57 void setClasspath(String classpath); 58 59 66 void setEncoding(String encoding); 67 68 77 boolean compile() throws IOException ; 78 79 85 List getErrors() throws IOException ; 86 } 87 | Popular Tags |