From c37d1670d573bf65855213a68b965ee2a3998cae Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 18 Nov 2003 17:36:46 +0000 Subject: [PATCH] Implement protected setName() method to set the property's name --- src/helma/objectmodel/db/Property.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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; + } + /** * *