org.apache.tools.ant.types

Class Commandline.Marker

public class Commandline.Marker extends Object

Class to keep track of the position of an Argument.

This class is there to support the srcfile and targetfile elements of <apply>.

Method Summary
intgetPosition()
Return the number of arguments that preceded this marker.
StringgetPrefix()
Get the prefix to be placed in front of the inserted argument.
StringgetSuffix()
Get the suffix to be placed at the end of the inserted argument.
voidsetPrefix(String prefix)
Set the prefix to be placed in front of the inserted argument.
voidsetSuffix(String suffix)
Set the suffix to be placed at the end of the inserted argument.

Method Detail

getPosition

public 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.

getPrefix

public String getPrefix()
Get the prefix to be placed in front of the inserted argument.

Since: Ant 1.8.0

getSuffix

public String getSuffix()
Get the suffix to be placed at the end of the inserted argument.

Since: Ant 1.8.0

setPrefix

public void setPrefix(String prefix)
Set the prefix to be placed in front of the inserted argument.

Parameters: prefix fixed prefix string.

Since: Ant 1.8.0

setSuffix

public void setSuffix(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