FileDocCategorySizeDatePackage
ValidProperty.javaAPI DocGlassfish v2 API3263Fri May 04 22:25:22 BST 2007com.sun.enterprise.cli.framework

ValidProperty

public final class ValidProperty extends Object
Definition for the valid property
version
$Revision: 1.6 $

Fields Summary
private String
name
private String
value
Constructors Summary
public ValidProperty()
Creates new ValidProperty

    
public ValidProperty(String name, String value)
Create a new ValidProperty object with the given arguments:

param
name name of the property
param
value value of the property

        this.name = name;
        this.value = value;
    
Methods Summary
public java.lang.StringgetName()
Returns the name of the property

return
the name of the property

        return name;
    
public java.lang.StringgetValue()
Returns the value of the property

return
the value of the property

        return  value;
    
public voidsetName(java.lang.String name)
Sets the name of the property

param
name the name of the property to set

        this.name = name;
    
public voidsetValue(java.lang.String value)
Sets the value of the property

param
name the value of thhe property to set

        this.value = value;