Creates new ValidProperty
Create a new ValidProperty object with the given arguments:paramname name of the propertyparamvalue value of the property this.name = name; this.value = value;
this.name = name; this.value = value;
Returns the name of the propertyreturnthe name of the property return name;
return name;
Returns the value of the propertyreturnthe value of the property return value;
return value;
Sets the name of the propertyparamname the name of the property to set this.name = name;
this.name = name;
Sets the value of the propertyparamname the value of thhe property to set this.value = value;
this.value = value;