Constructor for Property instances.paramname The name by which the property can be referenced within its owner.paramnode The node name to use for XML-based representation of this property.paramtype The Hibernate Type of this property. this.name = name; this.node = node; this.type = type;
this.name = name; this.node = node; this.type = type;
return name;
return node;
return type;
return "Property(" + name + ':" + type.getName() + ')";