Package org.apache.tools.ant.types
Class Commandline.Marker
- java.lang.Object
- 
- org.apache.tools.ant.types.Commandline.Marker
 
- 
- Enclosing class:
- Commandline
 
 public class Commandline.Marker extends java.lang.ObjectClass to keep track of the position of an Argument.This class is there to support the srcfile and targetfile elements of <apply>. 
- 
- 
Method SummaryModifier and Type Method Description intgetPosition()Return the number of arguments that preceded this marker.java.lang.StringgetPrefix()Get the prefix to be placed in front of the inserted argument.java.lang.StringgetSuffix()Get the suffix to be placed at the end of the inserted argument.voidsetPrefix(java.lang.String prefix)Set the prefix to be placed in front of the inserted argument.voidsetSuffix(java.lang.String suffix)Set the suffix to be placed at the end of the inserted argument.
 
- 
- 
- 
Method Detail- 
getPositionpublic int getPosition() Return the number of arguments that preceded this marker.The name of the executable -- if set -- is counted as the first argument. - Returns:
- the position of this marker.
 
 - 
setPrefixpublic void setPrefix(java.lang.String prefix) Set the prefix to be placed in front of the inserted argument.- Parameters:
- prefix- fixed prefix string.
- Since:
- Ant 1.8.0
 
 - 
getPrefixpublic java.lang.String getPrefix() Get the prefix to be placed in front of the inserted argument.- Returns:
- String
- Since:
- Ant 1.8.0
 
 - 
setSuffixpublic void setSuffix(java.lang.String suffix) Set the suffix to be placed at the end of the inserted argument.- Parameters:
- suffix- fixed suffix string.
- Since:
- Ant 1.8.0
 
 - 
getSuffixpublic java.lang.String getSuffix() Get the suffix to be placed at the end of the inserted argument.- Returns:
- String
- Since:
- Ant 1.8.0
 
 
- 
 
-