From 683d490074d93baa8a47db7ec43b7bd31145a12a Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Thu, 5 Nov 2009 23:00:15 +0100 Subject: Tar file expanded and committed --- .../apidocs/net/sf/antcontrib/cpptasks/CCTask.html | 1774 ++++++++++++++++++++ 1 file changed, 1774 insertions(+) create mode 100644 site/apidocs/net/sf/antcontrib/cpptasks/CCTask.html (limited to 'site/apidocs/net/sf/antcontrib/cpptasks/CCTask.html') diff --git a/site/apidocs/net/sf/antcontrib/cpptasks/CCTask.html b/site/apidocs/net/sf/antcontrib/cpptasks/CCTask.html new file mode 100644 index 0000000..05992a7 --- /dev/null +++ b/site/apidocs/net/sf/antcontrib/cpptasks/CCTask.html @@ -0,0 +1,1774 @@ + + + + + + + +CCTask (cpptasks 1.0b5 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +net.sf.antcontrib.cpptasks +
+Class CCTask

+
+java.lang.Object
+  extended by org.apache.tools.ant.ProjectComponent
+      extended by org.apache.tools.ant.Task
+          extended by net.sf.antcontrib.cpptasks.CCTask
+
+
+
+
public class CCTask
extends org.apache.tools.ant.Task
+ + +

+Compile and link task. + +

+ This task can compile various source languages and produce executables, + shared libraries (aka DLL's) and static libraries. Compiler adaptors are + currently available for several C/C++ compilers, FORTRAN, MIDL and Windows + Resource files. +

+ +

+ Copyright (c) 2001-2008, The Ant-Contrib project. +

+ +

+ Licensed under the Apache Software License 2.0, + http://www.apache.org/licenses/LICENSE-2.0. +

+ +

+ For use with Apache Ant 1.5 or later. This software is not a product of the + of the Apache Software Foundation and no endorsement is implied. +

+ +

+ THIS SOFTWARE IS PROVIDED 'AS-IS', See + http://www.apache.org/licenses/LICENSE-2.0 for additional disclaimers. +

+ + To use: +
    +
  1. + Place cpptasks.jar into Ant's classpath by placing it in Ant's lib + directory, adding it to the CLASSPATH environment variable or by using the + -lib command line option. +
  2. +
  3. + Add type and task definitions to the build file: +
      +
    • + Ant 1.6 or later: +
        +
      • Add xmlns:cpptasks="antlib:net.sf.antcontrib.cpptasks" to + <project> element. +
      • +
      • + Add <cpptasks:cc/>, <cpptasks:compiler/> and + <cpptasks:linker/> elements to the project. +
      • +
      +
    • +
    • + Ant 1.5 or later: +
        +
      • Add <taskdef resource="cpptasks.tasks"/> and + <typedef resource="cpptasks.types"/> to body of <project> + element. +
      • +
      • + Add <cc/>, <compiler/> and <linker/> elements to the + project. +
      • +
      +
    • +
    +
  4. +
  5. + Set the path and environment variables to be able to run compiler from + command line. +
  6. +
  7. + Build the project. +
  8. +
+

+ +

+

+
Author:
+
Adam Murdoch, Curt Arnold
+
+
+ +

+ + + + + + + + + + + +
+Field Summary
+protected  booleanfailOnError + +
+          If true, stop build on compile failure.
+ + + + + + + +
Fields inherited from class org.apache.tools.ant.Task
description, location, target, taskName, taskType, wrapper
+ + + + + + + +
Fields inherited from class org.apache.tools.ant.ProjectComponent
project
+  + + + + + + + + + + +
+Constructor Summary
CCTask() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddConfiguredCompiler(CompilerDef compiler) + +
+          Adds a compiler definition or reference.
+ voidaddConfiguredCompilerArg(CompilerArgument arg) + +
+          Adds a compiler command-line arg.
+ voidaddConfiguredDefineset(DefineSet defs) + +
+          Adds a defineset.
+ voidaddConfiguredDistributer(DistributerDef distributer) + +
+          Adds a distributer definition or reference (Non-functional prototype).
+ voidaddConfiguredLinker(LinkerDef linker) + +
+          Adds a linker definition.
+ voidaddConfiguredLinkerArg(LinkerArgument arg) + +
+          Adds a linker command-line arg.
+ voidaddConfiguredTarget(TargetDef target) + +
+          Adds a target definition or reference (Non-functional prototype).
+ voidaddConfiguredVersioninfo(VersionInfo newVersionInfo) + +
+          Adds desriptive version information to be included in the + generated file.
+ voidaddEnv(org.apache.tools.ant.types.Environment.Variable var) + +
+          Add an environment variable to the launched process.
+ voidaddFileset(ConditionalFileSet srcSet) + +
+          Adds a source file set.
+ voidaddLibset(LibrarySet libset) + +
+          Adds a library set.
+ voidaddProject(ProjectDef projectDef) + +
+          Specifies the generation of IDE project file.
+ voidaddSyslibset(SystemLibrarySet libset) + +
+          Adds a system library set.
+protected  intcheckForChangedIncludeFiles(java.util.Hashtable targets) + +
+          Checks all targets that are not forced to be rebuilt or are missing + object files to be checked for modified include files
+protected  LinkerConfigurationcollectExplicitObjectFiles(java.util.Vector objectFiles, + java.util.Vector sysObjectFiles, + VersionInfo versionInfo) + +
+           
+ IncludePathcreateIncludePath() + +
+          Adds an include path.
+ PrecompileDefcreatePrecompile() + +
+          Specifies precompilation prototype file and exclusions.
+ SystemIncludePathcreateSysIncludePath() + +
+          Adds a system include path.
+ voidexecute() + +
+          Executes the task.
+ java.lang.StringgetDataset() + +
+          Gets the dataset.
+ booleangetDebug() + +
+          Gets debug state.
+ booleangetFailonerror() + +
+          Gets the failonerror flag.
+protected  TargetHistoryTablegetLinkHistory(TargetHistoryTable objHistory) + +
+           
+protected  TargetInfogetLinkTarget(LinkerConfiguration linkerConfig, + java.util.Vector objectFiles, + java.util.Vector sysObjectFiles, + java.util.Hashtable compileTargets, + VersionInfo versionInfo) + +
+           
+ java.io.FilegetObjdir() + +
+           
+ java.io.FilegetOutfile() + +
+           
+ java.lang.StringgetOuttype() + +
+          Gets output type.
+ java.lang.StringgetSubsystem() + +
+          Gets subsystem name.
+ TargetDefgetTargetPlatform() + +
+           
+static java.util.HashtablegetTargetsToBuildByConfiguration(java.util.Hashtable targets) + +
+          Builds a Hashtable to targets needing to be rebuilt keyed by compiler + configuration
+ voidsetClassname(java.lang.String classname) + +
+          Sets the default compiler adapter.
+ voidsetDataset(java.lang.String dataset) + +
+          Sets the dataset for OS/390 builds.
+ voidsetDebug(boolean debug) + +
+          Enables or disables generation of debug info.
+ voidsetDependencyDepth(int depth) + +
+          Deprecated.
+ voidsetExceptions(boolean exceptions) + +
+          Enables generation of exception handling code
+ voidsetFailonerror(boolean fail) + +
+          Indicates whether the build will continue + even if there are compilation errors; defaults to true.
+ voidsetIncremental(boolean incremental) + +
+          Enables or disables incremental linking.
+ voidsetLibtool(boolean libtool) + +
+          Set use of libtool.
+ voidsetLink(OutputTypeEnum outputType) + +
+          Deprecated.  
+ voidsetMultithreaded(boolean multi) + +
+          Enables or disables generation of multithreaded code
+ voidsetName(CompilerEnum name) + +
+          Sets type of the default compiler and linker.
+ voidsetNewenvironment(boolean newenv) + +
+          Do not propagate old environment when new environment variables are + specified.
+ voidsetObjdir(java.io.File dir) + +
+          Sets the destination directory for object files.
+ voidsetOptimize(OptimizationEnum optimization) + +
+          Sets optimization.
+ voidsetOutfile(java.io.File outfile) + +
+          Sets the output file name.
+ voidsetOutputFileProperty(java.lang.String outputFileProperty) + +
+          Specifies the name of a property to set with the physical filename that + is produced by the linker
+ voidsetOuttype(OutputTypeEnum outputType) + +
+          Sets the output file type.
+ voidsetProject(org.apache.tools.ant.Project project) + +
+          Sets the project.
+ voidsetProjectsOnly(boolean value) + +
+           
+ voidsetRebuild(boolean rebuildAll) + +
+          If set to true, all files will be rebuilt.
+ voidsetRelentless(boolean relentless) + +
+          If set to true, compilation errors will not stop the task until all + files have been attempted.
+ voidsetRtti(boolean rtti) + +
+          Enables run-time type information.
+ voidsetRuntime(RuntimeType rtlType) + +
+          Sets the type of runtime library, possible values "dynamic", "static".
+ voidsetSubsystem(SubsystemEnum subsystem) + +
+          Sets the nature of the subsystem under which that the program will + execute.
+ voidsetWarnings(WarningLevelEnum level) + +
+          Enumerated attribute with the values "none", "severe", "default", + "production", "diagnostic", and "aserror".
+ + + + + + + +
Methods inherited from class org.apache.tools.ant.Task
getDescription, getLocation, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, maybeConfigure, perform, reconfigure, setDescription, setLocation, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
+ + + + + + + +
Methods inherited from class org.apache.tools.ant.ProjectComponent
getProject
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+failOnError

+
+protected boolean failOnError
+
+
If true, stop build on compile failure. +

+

+
+
+ + + + + + + + +
+Constructor Detail
+ +

+CCTask

+
+public CCTask()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getTargetsToBuildByConfiguration

+
+public static java.util.Hashtable getTargetsToBuildByConfiguration(java.util.Hashtable targets)
+
+
Builds a Hashtable to targets needing to be rebuilt keyed by compiler + configuration +

+

+
+
+
+
+ +

+addConfiguredCompiler

+
+public void addConfiguredCompiler(CompilerDef compiler)
+
+
Adds a compiler definition or reference. +

+

+
Parameters:
compiler - compiler +
Throws: +
java.lang.NullPointerException - if compiler is null
+
+
+
+ +

+addConfiguredCompilerArg

+
+public void addConfiguredCompilerArg(CompilerArgument arg)
+
+
Adds a compiler command-line arg. Argument will be inherited by all + nested compiler elements that do not have inherit="false". +

+

+
+
+
+
+ +

+addConfiguredDefineset

+
+public void addConfiguredDefineset(DefineSet defs)
+
+
Adds a defineset. Will be inherited by all compiler elements that do not + have inherit="false". +

+

+
Parameters:
defs - Define set
+
+
+
+ +

+addConfiguredLinker

+
+public void addConfiguredLinker(LinkerDef linker)
+
+
Adds a linker definition. The first linker that is not disqualified by + its "if" and "unless" attributes will perform the link. If no child + linker element is active, the linker implied by the cc elements name or + classname attribute will be used. +

+

+
Parameters:
linker - linker +
Throws: +
java.lang.NullPointerException - if linker is null
+
+
+
+ +

+addConfiguredLinkerArg

+
+public void addConfiguredLinkerArg(LinkerArgument arg)
+
+
Adds a linker command-line arg. Argument will be inherited by all nested + linker elements that do not have inherit="false". +

+

+
+
+
+
+ +

+addEnv

+
+public void addEnv(org.apache.tools.ant.types.Environment.Variable var)
+
+
Add an environment variable to the launched process. +

+

+
+
+
+
+ +

+addFileset

+
+public void addFileset(ConditionalFileSet srcSet)
+
+
Adds a source file set. + + Files in these filesets will be auctioned to the available compiler + configurations, with the default compiler implied by the cc element + bidding last. If no compiler is interested in the file, it will be + passed to the linker. + + To have a file be processed by a particular compiler configuration, add + a fileset to the corresponding compiler element. +

+

+
+
+
+
+ +

+addLibset

+
+public void addLibset(LibrarySet libset)
+
+
Adds a library set. + + Library sets will be inherited by all linker elements that do not have + inherit="false". +

+

+
Parameters:
libset - library set +
Throws: +
java.lang.NullPointerException - if libset is null.
+
+
+
+ +

+addSyslibset

+
+public void addSyslibset(SystemLibrarySet libset)
+
+
Adds a system library set. Timestamps and locations of system library + sets are not used in dependency analysis. + + Essential libraries (such as C Runtime libraries) should not be + specified since the task will attempt to identify the correct libraries + based on the multithread, debug and runtime attributes. + + System library sets will be inherited by all linker elements that do not + have inherit="false". +

+

+
Parameters:
libset - library set +
Throws: +
java.lang.NullPointerException - if libset is null.
+
+
+
+ +

+addProject

+
+public void addProject(ProjectDef projectDef)
+
+
Specifies the generation of IDE project file. Experimental. +

+

+
Parameters:
projectDef - project file generation specification
+
+
+
+ +

+setProjectsOnly

+
+public void setProjectsOnly(boolean value)
+
+
+
+
+
+
+ +

+checkForChangedIncludeFiles

+
+protected int checkForChangedIncludeFiles(java.util.Hashtable targets)
+
+
Checks all targets that are not forced to be rebuilt or are missing + object files to be checked for modified include files +

+

+ +
Returns:
total number of targets to be rebuilt
+
+
+
+ +

+collectExplicitObjectFiles

+
+protected LinkerConfiguration collectExplicitObjectFiles(java.util.Vector objectFiles,
+                                                         java.util.Vector sysObjectFiles,
+                                                         VersionInfo versionInfo)
+
+
+
+
+
+
+ +

+createIncludePath

+
+public IncludePath createIncludePath()
+
+
Adds an include path. + + Include paths will be inherited by nested compiler elements that do not + have inherit="false". +

+

+
+
+
+
+ +

+createPrecompile

+
+public PrecompileDef createPrecompile()
+                               throws org.apache.tools.ant.BuildException
+
+
Specifies precompilation prototype file and exclusions. Inherited by all + compilers that do not have inherit="false". +

+

+ +
Throws: +
org.apache.tools.ant.BuildException
+
+
+
+ +

+createSysIncludePath

+
+public SystemIncludePath createSysIncludePath()
+
+
Adds a system include path. Locations and timestamps of files located + using the system include paths are not used in dependency analysis. + + + Standard include locations should not be specified. The compiler + adapters should recognized the settings from the appropriate environment + variables or configuration files. + + System include paths will be inherited by nested compiler elements that + do not have inherit="false". +

+

+
+
+
+
+ +

+execute

+
+public void execute()
+             throws org.apache.tools.ant.BuildException
+
+
Executes the task. Compiles the given files. +

+

+
Overrides:
execute in class org.apache.tools.ant.Task
+
+
+ +
Throws: +
org.apache.tools.ant.BuildException - if someting goes wrong with the build
+
+
+
+ +

+getDataset

+
+public java.lang.String getDataset()
+
+
Gets the dataset. +

+

+ +
Returns:
Returns a String
+
+
+
+ +

+getLinkHistory

+
+protected TargetHistoryTable getLinkHistory(TargetHistoryTable objHistory)
+
+
+
+
+
+
+ +

+getLinkTarget

+
+protected TargetInfo getLinkTarget(LinkerConfiguration linkerConfig,
+                                   java.util.Vector objectFiles,
+                                   java.util.Vector sysObjectFiles,
+                                   java.util.Hashtable compileTargets,
+                                   VersionInfo versionInfo)
+
+
+
+
+
+
+ +

+getObjdir

+
+public java.io.File getObjdir()
+
+
+
+
+
+
+ +

+getOutfile

+
+public java.io.File getOutfile()
+
+
+
+
+
+
+ +

+getTargetPlatform

+
+public TargetDef getTargetPlatform()
+
+
+
+
+
+
+ +

+setClassname

+
+public void setClassname(java.lang.String classname)
+
+
Sets the default compiler adapter. Use the "name" attribute when the + compiler is a supported compiler. +

+

+
Parameters:
classname - fully qualified classname which implements CompilerAdapter
+
+
+
+ +

+setDataset

+
+public void setDataset(java.lang.String dataset)
+
+
Sets the dataset for OS/390 builds. +

+

+
Parameters:
dataset - The dataset to set
+
+
+
+ +

+setDebug

+
+public void setDebug(boolean debug)
+
+
Enables or disables generation of debug info. +

+

+
+
+
+
+ +

+getDebug

+
+public boolean getDebug()
+
+
Gets debug state. +

+

+ +
Returns:
true if building for debugging
+
+
+
+ +

+setDependencyDepth

+
+public void setDependencyDepth(int depth)
+
+
Deprecated. + + Controls the depth of the dependency evaluation. Used to do a quick + check of changes before a full build. + + Any negative value which will perform full dependency checking. Positive + values will truncate dependency checking. A value of 0 will cause only + those files that changed to be recompiled, a value of 1 which cause + files that changed or that explicitly include a file that changed to be + recompiled. + + Any non-negative value will cause a BuildException to be thrown before + attempting a link or completing the task. +

+

+
+
+
+
+ +

+setExceptions

+
+public void setExceptions(boolean exceptions)
+
+
Enables generation of exception handling code +

+

+
+
+
+
+ +

+setRtti

+
+public void setRtti(boolean rtti)
+
+
Enables run-time type information. +

+

+
+
+
+
+ +

+setIncremental

+
+public void setIncremental(boolean incremental)
+
+
Enables or disables incremental linking. +

+

+
Parameters:
incremental - new state
+
+
+
+ +

+setLibtool

+
+public void setLibtool(boolean libtool)
+
+
Set use of libtool. + + If set to true, the "libtool " will be prepended to the command line for + compatible processors +

+

+
Parameters:
libtool - If true, use libtool.
+
+
+
+ +

+setLink

+
+public void setLink(OutputTypeEnum outputType)
+
+
Deprecated.  +

+

Sets the output file type. Supported values "executable", "shared", and + "static". Deprecated, specify outtype instead. +

+

+
+
+
+
+ +

+setMultithreaded

+
+public void setMultithreaded(boolean multi)
+
+
Enables or disables generation of multithreaded code +

+

+
Parameters:
multi - If true, generated code may be multithreaded.
+
+
+
+ +

+setName

+
+public void setName(CompilerEnum name)
+
+
Sets type of the default compiler and linker. + + Supported compilers + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
gcc (default)GCC C++ compiler
g++GCC C++ compiler
c++GCC C++ compiler
g77GNU FORTRAN compiler
msvcMicrosoft Visual C++
bccBorland C++ Compiler
msrcMicrosoft Resource Compiler
brcBorland Resource Compiler
dfCompaq Visual Fortran Compiler
midlMicrosoft MIDL Compiler
iclIntel C++ compiler for Windows (IA-32)
eclIntel C++ compiler for Windows (IA-64)
iccIntel C++ compiler for Linux (IA-32)
eccIntel C++ compiler for Linux (IA-64)
CCSun ONE C++ compiler
aCCHP aC++ C++ Compiler
os390OS390 C Compiler
os400Icc Compiler
sunc89Sun C89 C Compiler
xlCVisualAge C Compiler
uicQt user interface compiler (creates .h, .cpp and moc_*.cpp files).
mocQt meta-object compiler
xpidlMozilla xpidl compiler (creates .h and .xpt files).
wclOpenWatcom C/C++ compiler
wflOpenWatcom FORTRAN compiler
+

+

+
+
+
+
+ +

+setNewenvironment

+
+public void setNewenvironment(boolean newenv)
+
+
Do not propagate old environment when new environment variables are + specified. +

+

+
+
+
+
+ +

+setObjdir

+
+public void setObjdir(java.io.File dir)
+
+
Sets the destination directory for object files. + + Generally this should be a property expression that evaluates to + distinct debug and release object file directories. +

+

+
Parameters:
dir - object directory
+
+
+
+ +

+setOutfile

+
+public void setOutfile(java.io.File outfile)
+
+
Sets the output file name. If not specified, the task will only compile + files and not attempt to link. If an extension is not specified, the + task may use a system appropriate extension and prefix, for example, + outfile="example" may result in "libexample.so" being created. +

+

+
Parameters:
outfile - output file name
+
+
+
+ +

+setOutputFileProperty

+
+public void setOutputFileProperty(java.lang.String outputFileProperty)
+
+
Specifies the name of a property to set with the physical filename that + is produced by the linker +

+

+
+
+
+
+ +

+setOuttype

+
+public void setOuttype(OutputTypeEnum outputType)
+
+
Sets the output file type. Supported values "executable", "shared", and + "static". +

+

+
+
+
+
+ +

+getOuttype

+
+public java.lang.String getOuttype()
+
+
Gets output type. +

+

+ +
Returns:
output type
+
+
+
+ +

+setProject

+
+public void setProject(org.apache.tools.ant.Project project)
+
+
Sets the project. +

+

+
Overrides:
setProject in class org.apache.tools.ant.ProjectComponent
+
+
+
+
+
+
+ +

+setRebuild

+
+public void setRebuild(boolean rebuildAll)
+
+
If set to true, all files will be rebuilt. +

+

+
Parameters:
rebuildAll - If true, all files will be rebuilt. If false, up to + date files will not be rebuilt.
+
+
+
+ +

+setRelentless

+
+public void setRelentless(boolean relentless)
+
+
If set to true, compilation errors will not stop the task until all + files have been attempted. +

+

+
Parameters:
relentless - If true, don't stop on the first compilation error
+
+
+
+ +

+setRuntime

+
+public void setRuntime(RuntimeType rtlType)
+
+
Sets the type of runtime library, possible values "dynamic", "static". +

+

+
+
+
+
+ +

+setSubsystem

+
+public void setSubsystem(SubsystemEnum subsystem)
+
+
Sets the nature of the subsystem under which that the program will + execute. + + Supported subsystems + + + + + + + + + + + + +
guiGraphical User Interface
consoleCommand Line Console
otherOther
+

+

+
Parameters:
subsystem - subsystem +
Throws: +
java.lang.NullPointerException - if subsystem is null
+
+
+
+ +

+getSubsystem

+
+public java.lang.String getSubsystem()
+
+
Gets subsystem name. +

+

+ +
Returns:
Subsystem name
+
+
+
+ +

+setWarnings

+
+public void setWarnings(WarningLevelEnum level)
+
+
Enumerated attribute with the values "none", "severe", "default", + "production", "diagnostic", and "aserror". +

+

+
+
+
+
+ +

+setFailonerror

+
+public void setFailonerror(boolean fail)
+
+
Indicates whether the build will continue + even if there are compilation errors; defaults to true. +

+

+
Parameters:
fail - if true halt the build on failure
+
+
+
+ +

+getFailonerror

+
+public boolean getFailonerror()
+
+
Gets the failonerror flag. +

+

+ +
Returns:
the failonerror flag
+
+
+
+ +

+addConfiguredTarget

+
+public void addConfiguredTarget(TargetDef target)
+
+
Adds a target definition or reference (Non-functional prototype). +

+

+
Parameters:
target - target +
Throws: +
java.lang.NullPointerException - if compiler is null
+
+
+
+ +

+addConfiguredDistributer

+
+public void addConfiguredDistributer(DistributerDef distributer)
+
+
Adds a distributer definition or reference (Non-functional prototype). +

+

+
Parameters:
distributer - distributer +
Throws: +
java.lang.NullPointerException - if compiler is null
+
+
+
+ +

+setOptimize

+
+public void setOptimize(OptimizationEnum optimization)
+
+
Sets optimization. +

+

+
Parameters:
optimization -
+
+
+
+ +

+addConfiguredVersioninfo

+
+public void addConfiguredVersioninfo(VersionInfo newVersionInfo)
+
+
Adds desriptive version information to be included in the + generated file. The first active version info block will + be used. +

+

+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2001-2008 Ant-Contrib Project. All Rights Reserved. + + -- cgit v1.2.3