Package org.apache.tools.ant.types
Class Parameter
- java.lang.Object
- 
- org.apache.tools.ant.types.Parameter
 
- 
 public final class Parameter extends java.lang.ObjectA parameter is composed of a name, type and value.
- 
- 
Constructor SummaryConstructors Constructor Description Parameter()
 - 
Method SummaryModifier and Type Method Description java.lang.StringgetName()Get the name attribute.java.lang.StringgetType()Get the type attribute.java.lang.StringgetValue()Get the value attribute.voidsetName(java.lang.String name)Set the name attribute.voidsetType(java.lang.String type)Set the type attribute.voidsetValue(java.lang.String value)Set the value attribute.
 
- 
- 
- 
Method Detail- 
setNamepublic void setName(java.lang.String name) Set the name attribute.- Parameters:
- name- a- Stringvalue
 
 - 
setTypepublic void setType(java.lang.String type) Set the type attribute.- Parameters:
- type- a- Stringvalue
 
 - 
setValuepublic void setValue(java.lang.String value) Set the value attribute.- Parameters:
- value- a- Stringvalue
 
 - 
getNamepublic java.lang.String getName() Get the name attribute.- Returns:
- a Stringvalue
 
 - 
getTypepublic java.lang.String getType() Get the type attribute.- Returns:
- a Stringvalue
 
 - 
getValuepublic java.lang.String getValue() Get the value attribute.- Returns:
- a Stringvalue
 
 
- 
 
-