diff --git a/src/helma/objectmodel/db/Property.java b/src/helma/objectmodel/db/Property.java index e768b41b..a6fabbdb 100644 --- a/src/helma/objectmodel/db/Property.java +++ b/src/helma/objectmodel/db/Property.java @@ -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; + } + /** * *