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 --- .../compiler/CommandLineLinkerConfiguration.html | 613 +++++++++++++++++++++ 1 file changed, 613 insertions(+) create mode 100644 site/apidocs/net/sf/antcontrib/cpptasks/compiler/CommandLineLinkerConfiguration.html (limited to 'site/apidocs/net/sf/antcontrib/cpptasks/compiler/CommandLineLinkerConfiguration.html') diff --git a/site/apidocs/net/sf/antcontrib/cpptasks/compiler/CommandLineLinkerConfiguration.html b/site/apidocs/net/sf/antcontrib/cpptasks/compiler/CommandLineLinkerConfiguration.html new file mode 100644 index 0000000..765f278 --- /dev/null +++ b/site/apidocs/net/sf/antcontrib/cpptasks/compiler/CommandLineLinkerConfiguration.html @@ -0,0 +1,613 @@ + + + + + + + +CommandLineLinkerConfiguration (cpptasks 1.0b5 API) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +net.sf.antcontrib.cpptasks.compiler +
+Class CommandLineLinkerConfiguration

+
+java.lang.Object
+  extended by net.sf.antcontrib.cpptasks.compiler.CommandLineLinkerConfiguration
+
+
+
All Implemented Interfaces:
LinkerConfiguration, ProcessorConfiguration
+
+
+
+
public final class CommandLineLinkerConfiguration
extends java.lang.Object
implements LinkerConfiguration
+ + +

+A configuration for a command line linker +

+ +

+

+
Author:
+
Curt Arnold
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
CommandLineLinkerConfiguration(CommandLineLinker linker, + java.lang.String identifier, + java.lang.String[][] args, + ProcessorParam[] params, + boolean rebuild, + boolean map, + boolean debug, + java.lang.String[] libraryNames, + java.lang.String startupObject) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ intbid(java.lang.String filename) + +
+          An indication of how much this compiler would like to process this file
+ java.lang.String[]getEndArguments() + +
+           
+ java.lang.StringgetIdentifier() + +
+          Returns a string representation of this configuration.
+ java.lang.String[]getLibraryNames() + +
+           
+ LinkergetLinker() + +
+           
+ booleangetMap() + +
+           
+ java.lang.String[]getOutputFileNames(java.lang.String inputFile, + VersionInfo versionInfo) + +
+          Output file name (no path components) corresponding to source file
+ LinkerParamgetParam(java.lang.String name) + +
+           
+ ProcessorParam[]getParams() + +
+           
+ java.lang.String[]getPreArguments() + +
+           
+ booleangetRebuild() + +
+          If true, all files using this configuration should be rebuilt and any + existing output files should be ignored
+ java.lang.StringgetStartupObject() + +
+           
+ booleanisDebug() + +
+           
+ voidlink(CCTask task, + TargetInfo linkTarget) + +
+           
+ java.lang.StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

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

+CommandLineLinkerConfiguration

+
+public CommandLineLinkerConfiguration(CommandLineLinker linker,
+                                      java.lang.String identifier,
+                                      java.lang.String[][] args,
+                                      ProcessorParam[] params,
+                                      boolean rebuild,
+                                      boolean map,
+                                      boolean debug,
+                                      java.lang.String[] libraryNames,
+                                      java.lang.String startupObject)
+
+
+ + + + + + + + +
+Method Detail
+ +

+bid

+
+public int bid(java.lang.String filename)
+
+
Description copied from interface: ProcessorConfiguration
+
An indication of how much this compiler would like to process this file +

+

+
Specified by:
bid in interface ProcessorConfiguration
+
+
+ +
Returns:
0 is no interest to process, 100 is strong interest to process
+
+
+
+ +

+getEndArguments

+
+public java.lang.String[] getEndArguments()
+
+
+
+
+
+
+
+
+
+ +

+getIdentifier

+
+public java.lang.String getIdentifier()
+
+
Returns a string representation of this configuration. Should be + canonical so that equivalent configurations will have equivalent string + representations +

+

+
Specified by:
getIdentifier in interface ProcessorConfiguration
+
+
+
+
+
+
+ +

+getLibraryNames

+
+public java.lang.String[] getLibraryNames()
+
+
+
+
+
+
+
+
+
+ +

+getMap

+
+public boolean getMap()
+
+
+
+
+
+
+
+
+
+ +

+getOutputFileNames

+
+public java.lang.String[] getOutputFileNames(java.lang.String inputFile,
+                                             VersionInfo versionInfo)
+
+
Description copied from interface: ProcessorConfiguration
+
Output file name (no path components) corresponding to source file +

+

+
Specified by:
getOutputFileNames in interface ProcessorConfiguration
+
+
+
Parameters:
inputFile - input file +
Returns:
output file names or zero-length array if no output file or name not + determined by input file
+
+
+
+ +

+getParam

+
+public LinkerParam getParam(java.lang.String name)
+
+
+
Specified by:
getParam in interface LinkerConfiguration
+
+
+
+
+
+
+ +

+getParams

+
+public ProcessorParam[] getParams()
+
+
+
Specified by:
getParams in interface ProcessorConfiguration
+
+
+
+
+
+
+ +

+getPreArguments

+
+public java.lang.String[] getPreArguments()
+
+
+
+
+
+
+
+
+
+ +

+getRebuild

+
+public boolean getRebuild()
+
+
Description copied from interface: ProcessorConfiguration
+
If true, all files using this configuration should be rebuilt and any + existing output files should be ignored +

+

+
Specified by:
getRebuild in interface ProcessorConfiguration
+
+
+
+
+
+
+ +

+getStartupObject

+
+public java.lang.String getStartupObject()
+
+
+
+
+
+
+
+
+
+ +

+link

+
+public void link(CCTask task,
+                 TargetInfo linkTarget)
+          throws org.apache.tools.ant.BuildException
+
+
+
Specified by:
link in interface LinkerConfiguration
+
+
+ +
Throws: +
org.apache.tools.ant.BuildException
+
+
+
+ +

+toString

+
+public java.lang.String toString()
+
+
+
Overrides:
toString in class java.lang.Object
+
+
+
+
+
+
+ +

+getLinker

+
+public Linker getLinker()
+
+
+
Specified by:
getLinker in interface LinkerConfiguration
+
+
+
+
+
+
+ +

+isDebug

+
+public boolean isDebug()
+
+
+
Specified by:
isDebug in interface LinkerConfiguration
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2001-2008 Ant-Contrib Project. All Rights Reserved. + + -- cgit v1.2.3