Interface RmicAdapter
- 
- All Known Implementing Classes:
- DefaultRmicAdapter,- ForkingSunRmic,- KaffeRmic,- SunRmic,- WLRmic,- XNewRmic
 
 public interface RmicAdapterThe interface that all rmic adapters must adhere to.A rmic adapter is an adapter that interprets the rmic's parameters in preparation to be passed off to the compiler this adapter represents. As all the necessary values are stored in the Rmic task itself, the only thing all adapters need is the rmic task, the execute command and a parameterless constructor (for reflection). - Since:
- Ant 1.4
 
- 
- 
Method SummaryModifier and Type Method Description booleanexecute()Call the rmic compiler.PathgetClasspath()The CLASSPATH this rmic process will use.FileNameMappergetMapper()Maps source class files to the files generated by this rmic implementation.voidsetRmic(Rmic attributes)Sets the rmic attributes, which are stored in the Rmic task.
 
- 
- 
- 
Method Detail- 
setRmicvoid setRmic(Rmic attributes) Sets the rmic attributes, which are stored in the Rmic task.- Parameters:
- attributes- the rmic attributes to use
 
 - 
executeboolean execute() throws BuildExceptionCall the rmic compiler.- Returns:
- true if has the compilation been successful
- Throws:
- BuildException- on error
 
 - 
getMapperFileNameMapper getMapper() Maps source class files to the files generated by this rmic implementation.- Returns:
- the filename mapper used by this implementation
 
 - 
getClasspathPath getClasspath() The CLASSPATH this rmic process will use.- Returns:
- the classpath this rmic process will use
 
 
- 
 
-