Implement protected setName() method to set the property's name

This commit is contained in:
hns 2003-11-18 17:36:46 +00:00
parent 6453f53bd9
commit c37d1670d5

View file

@ -171,14 +171,21 @@ public final class Property implements IProperty, Serializable, Cloneable {
}
/**
* Get the name of the property
*
*
* @return ...
* @return this property's name
*/
public String getName() {
return propname;
}
/**
* Set the name of the property
*/
protected void setName(String name) {
this.propname = name;
}
/**
*
*