FileDocCategorySizeDatePackage
Property.javaAPI DocHibernate 3.2.51022Sun Feb 20 19:08:46 GMT 2005org.hibernate.tuple

Property

public abstract class Property extends Object implements Serializable
Defines the basic contract of a Property within the runtime metamodel.
author
Steve Ebersole

Fields Summary
private String
name
private String
node
private org.hibernate.type.Type
type
Constructors Summary
protected Property(String name, String node, org.hibernate.type.Type type)
Constructor for Property instances.

param
name The name by which the property can be referenced within its owner.
param
node The node name to use for XML-based representation of this property.
param
type The Hibernate Type of this property.

		this.name = name;
		this.node = node;
		this.type = type;
	
Methods Summary
public java.lang.StringgetName()

		return name;
	
public java.lang.StringgetNode()

		return node;
	
public org.hibernate.type.TypegetType()

		return type;
	
public java.lang.StringtoString()

		return "Property(" + name + ':" + type.getName() + ')";