Implement protected setName() method to set the property's name
This commit is contained in:
parent
6453f53bd9
commit
c37d1670d5
1 changed files with 9 additions and 2 deletions
|
@ -171,14 +171,21 @@ public final class Property implements IProperty, Serializable, Cloneable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Get the name of the property
|
||||||
*
|
*
|
||||||
*
|
* @return this property's name
|
||||||
* @return ...
|
|
||||||
*/
|
*/
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return propname;
|
return propname;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the name of the property
|
||||||
|
*/
|
||||||
|
protected void setName(String name) {
|
||||||
|
this.propname = name;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue