Package com.sun.xml.rpc.spi.tools
Interface CompileTool
-
- All Known Implementing Classes:
CompileTool,EndpointClientCompileTool,EndpointCompileTool
public interface CompileTool
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProcessorEnvironmentgetEnvironment()ProcessorgetProcessor()voidrun()Which one should we use? run() or run(String args[]).booleanrun(String[] args)run(String[] args) for now.voidsetDelegate(CompileToolDelegate delegate)
-
-
-
Method Detail
-
run
void run() throws Exception
Which one should we use? run() or run(String args[]). We have to define setters for each arguments if we were to use run();- Throws:
Exception
-
run
boolean run(String[] args)
run(String[] args) for now.
-
setDelegate
void setDelegate(CompileToolDelegate delegate)
-
getProcessor
Processor getProcessor()
-
getEnvironment
ProcessorEnvironment getEnvironment()
-
-