Package ise.antelope.tasks
Class StringUtilTask
- java.lang.Object
-
- org.apache.tools.ant.ProjectComponent
-
- org.apache.tools.ant.Task
-
- ise.antelope.tasks.StringUtilTask
-
- All Implemented Interfaces:
java.lang.Cloneable
public class StringUtilTask extends org.apache.tools.ant.Task
Copyright 2003- Version:
- $Revision: 138 $
-
-
Constructor Summary
Constructors Constructor Description StringUtilTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addIndexOf(ise.antelope.tasks.typedefs.string.IndexOf op)
void
addLastIndexOf(ise.antelope.tasks.typedefs.string.LastIndexOf op)
void
addLength(ise.antelope.tasks.typedefs.string.Length op)
void
addLowercase(ise.antelope.tasks.typedefs.string.LowerCase op)
void
addMessagebox(ise.antelope.tasks.typedefs.string.MessageBox op)
void
addReplace(ise.antelope.tasks.typedefs.string.Replace op)
void
addSort(ise.antelope.tasks.typedefs.string.Sort op)
void
addStringOp(ise.antelope.tasks.typedefs.string.StringOp op)
Adds a feature to the StringOp attribute of the StringUtilTask objectvoid
addSubstring(ise.antelope.tasks.typedefs.string.Substring op)
void
addTrim(ise.antelope.tasks.typedefs.string.Trim op)
void
addUppercase(ise.antelope.tasks.typedefs.string.UpperCase op)
void
execute()
Description of the Methodvoid
setProperty(java.lang.String name)
Sets the property attribute of the StringUtilTask objectvoid
setString(java.lang.String string)
Sets the string attribute of the StringUtilTask object-
Methods inherited from class org.apache.tools.ant.Task
bindToOwner, getOwningTarget, getRuntimeConfigurableWrapper, getTaskName, getTaskType, getWrapper, handleErrorFlush, handleErrorOutput, handleFlush, handleInput, handleOutput, init, isInvalid, log, log, log, log, maybeConfigure, perform, reconfigure, setOwningTarget, setRuntimeConfigurableWrapper, setTaskName, setTaskType
-
-
-
-
Method Detail
-
setString
public void setString(java.lang.String string)
Sets the string attribute of the StringUtilTask object- Parameters:
string
- The new string value
-
setProperty
public void setProperty(java.lang.String name)
Sets the property attribute of the StringUtilTask object- Parameters:
name
- The new property value
-
addStringOp
public void addStringOp(ise.antelope.tasks.typedefs.string.StringOp op)
Adds a feature to the StringOp attribute of the StringUtilTask object- Parameters:
op
- The feature to be added to the StringOp attribute
-
addLowercase
public void addLowercase(ise.antelope.tasks.typedefs.string.LowerCase op)
-
addUppercase
public void addUppercase(ise.antelope.tasks.typedefs.string.UpperCase op)
-
addTrim
public void addTrim(ise.antelope.tasks.typedefs.string.Trim op)
-
addSubstring
public void addSubstring(ise.antelope.tasks.typedefs.string.Substring op)
-
addReplace
public void addReplace(ise.antelope.tasks.typedefs.string.Replace op)
-
addIndexOf
public void addIndexOf(ise.antelope.tasks.typedefs.string.IndexOf op)
-
addLastIndexOf
public void addLastIndexOf(ise.antelope.tasks.typedefs.string.LastIndexOf op)
-
addLength
public void addLength(ise.antelope.tasks.typedefs.string.Length op)
-
addSort
public void addSort(ise.antelope.tasks.typedefs.string.Sort op)
-
addMessagebox
public void addMessagebox(ise.antelope.tasks.typedefs.string.MessageBox op)
-
execute
public void execute()
Description of the Method- Overrides:
execute
in classorg.apache.tools.ant.Task
-
-