|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.ObjectTask
com.sun.tools.ws.ant.Apt
public class Apt
apt task for use with the JAXWS project.
| Nested Class Summary | |
|---|---|
static class |
Apt.Jvmarg
|
static class |
Apt.Option
|
| Field Summary | |
|---|---|
protected Path |
bootclassPath
-bootclasspath option: override location of bootstrap class files |
protected Path |
compileClasspath
-classpath option |
protected boolean |
debug
-g option: debugging info |
protected String |
debugLevel
debug level |
protected boolean |
deprecation
-deprecation option: output source locations where deprecated APIs are used |
protected String |
encoding
-encoding option: character encoding used by the source files |
protected String |
endorseddirs
-endorseddirs option: override location of endorsed standards path |
protected String |
extdirs
-extdirs option: override location of installed extensions |
protected boolean |
fork
-fork option: |
protected List<Apt.Jvmarg> |
jvmargs
-J |
protected boolean |
nowarn
-nowarn option: generate no warnings |
protected List<Apt.Option> |
options
-A option |
protected List<FileSet> |
sourceFileset
|
protected Path |
sourcePath
-sourcepath option: Specify where to find input source files |
protected String |
targetVM
-target option: generate class files for specific VM version |
protected boolean |
verbose
-verbose option: output messages about what the compiler is doing |
| Constructor Summary | |
|---|---|
Apt()
|
|
| Method Summary | |
|---|---|
void |
addConfiguredSource(FileSet fileset)
|
Path |
createClasspath()
Creates a nested classpath element. |
Apt.Jvmarg |
createJvmarg()
|
Apt.Option |
createOption()
|
void |
execute()
Called by the project to let the task do it's work |
Path |
getBootclasspath()
|
Path |
getClasspath()
|
String |
getDebuglevel()
|
File |
getDestdir()
|
String |
getEncoding()
|
String |
getEndorseddirs()
|
String |
getExtdirs()
|
String |
getFactory()
|
File |
getFactorypath()
|
List<Apt.Jvmarg> |
getJvmargs()
|
List<Apt.Option> |
getOptions()
|
File |
getSourcedestdir()
|
Path |
getSourcepath()
|
String |
getTarget()
|
boolean |
isDebug()
|
boolean |
isDeprecation()
|
boolean |
isFork()
|
boolean |
isNocompile()
|
boolean |
isNowarn()
|
boolean |
isPrint()
|
boolean |
isVerbose()
|
boolean |
isXclassesasdecls()
|
boolean |
isXlistannotationtypes()
|
boolean |
isXlistdeclarations()
|
boolean |
isXprintaptrounds()
|
boolean |
isXprintfactoryinfo()
|
void |
setBootclasspath(Path bootclassPath)
|
void |
setClasspath(Path classpath)
|
void |
setClasspathRef(Reference r)
Adds a reference to a CLASSPATH defined elsewhere. |
void |
setDebug(boolean debug)
|
void |
setDebuglevel(String debugLevel)
|
void |
setDeprecation(boolean deprecation)
|
void |
setDestdir(File base)
|
void |
setEncoding(String encoding)
|
void |
setEndorseddirs(String endorseddirs)
|
void |
setExtdirs(String extdirs)
|
void |
setFactory(String factory)
|
void |
setFactorypath(File factoryPath)
|
void |
setFork(boolean fork)
|
void |
setNocompile(boolean noCompile)
|
void |
setNowarn(boolean nowarn)
|
void |
setPrint(boolean print)
|
void |
setSourcedestdir(File sourceBase)
|
void |
setSourcepath(Path sourcePath)
|
void |
setTarget(String target)
|
void |
setVerbose(boolean verbose)
|
void |
setXclassesasdecls(boolean xClassesAsDecls)
|
void |
setXlistannotationtypes(boolean xListAnnotationTypes)
|
void |
setXlistdeclarations(boolean xListDeclarations)
|
void |
setXprintaptrounds(boolean xPrintAptRounds)
|
void |
setXprintfactoryinfo(boolean xPrintFactoryInfo)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected Path compileClasspath
protected List<Apt.Option> options
protected List<Apt.Jvmarg> jvmargs
protected boolean debug
protected String debugLevel
protected boolean nowarn
protected boolean deprecation
protected Path bootclassPath
protected String extdirs
protected String endorseddirs
protected boolean verbose
protected Path sourcePath
protected String encoding
protected String targetVM
protected boolean fork
protected List<FileSet> sourceFileset
| Constructor Detail |
|---|
public Apt()
| Method Detail |
|---|
public Path getClasspath()
public void setClasspath(Path classpath)
public Path createClasspath()
public void setClasspathRef(Reference r)
public File getDestdir()
public void setDestdir(File base)
public void setSourcedestdir(File sourceBase)
public File getSourcedestdir()
public List<Apt.Option> getOptions()
public Apt.Option createOption()
public List<Apt.Jvmarg> getJvmargs()
public Apt.Jvmarg createJvmarg()
public boolean isNocompile()
public void setNocompile(boolean noCompile)
public boolean isPrint()
public void setPrint(boolean print)
public File getFactorypath()
public void setFactorypath(File factoryPath)
public String getFactory()
public void setFactory(String factory)
public boolean isXlistannotationtypes()
public void setXlistannotationtypes(boolean xListAnnotationTypes)
public boolean isXlistdeclarations()
public void setXlistdeclarations(boolean xListDeclarations)
public boolean isXprintaptrounds()
public void setXprintaptrounds(boolean xPrintAptRounds)
public boolean isXprintfactoryinfo()
public void setXprintfactoryinfo(boolean xPrintFactoryInfo)
public boolean isXclassesasdecls()
public void setXclassesasdecls(boolean xClassesAsDecls)
public boolean isDebug()
public void setDebug(boolean debug)
public String getDebuglevel()
public void setDebuglevel(String debugLevel)
public boolean isNowarn()
public void setNowarn(boolean nowarn)
public boolean isDeprecation()
public void setDeprecation(boolean deprecation)
public Path getBootclasspath()
public void setBootclasspath(Path bootclassPath)
public String getExtdirs()
public void setExtdirs(String extdirs)
public String getEndorseddirs()
public void setEndorseddirs(String endorseddirs)
public boolean isVerbose()
public void setVerbose(boolean verbose)
public Path getSourcepath()
public void setSourcepath(Path sourcePath)
public String getEncoding()
public void setEncoding(String encoding)
public String getTarget()
public void setTarget(String target)
public boolean isFork()
public void setFork(boolean fork)
public void addConfiguredSource(FileSet fileset)
public void execute()
throws BuildException
BuildException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||