FileDocCategorySizeDatePackage
Parameter.javaAPI DocApache Ant 1.702060Wed Dec 13 06:16:18 GMT 2006org.apache.tools.ant.types

Parameter

public final class Parameter extends Object
A parameter is composed of a name, type and value.

Fields Summary
private String
name
private String
type
private String
value
Constructors Summary
Methods Summary
public java.lang.StringgetName()
Get the name attribute.

return
a String value

        return name;
    
public java.lang.StringgetType()
Get the type attribute.

return
a String value

        return type;
    
public java.lang.StringgetValue()
Get the value attribute.

return
a String value

        return value;
    
public voidsetName(java.lang.String name)
Set the name attribute.

param
name a String value


                  
         
        this.name = name;
    
public voidsetType(java.lang.String type)
Set the type attribute.

param
type a String value

        this.type = type;
    
public voidsetValue(java.lang.String value)
Set the value attribute.

param
value a String value

        this.value = value;