FileDocCategorySizeDatePackage
IndexBackref.javaAPI DocHibernate 3.2.5884Thu May 26 20:30:18 BST 2005org.hibernate.mapping

IndexBackref

public class IndexBackref extends Property
author
Gavin King

Fields Summary
private String
collectionRole
private String
entityName
Constructors Summary
Methods Summary
public java.lang.StringgetCollectionRole()

		return collectionRole;
	
public java.lang.StringgetEntityName()

		return entityName;
	
public org.hibernate.property.PropertyAccessorgetPropertyAccessor(java.lang.Class clazz)

		return new IndexPropertyAccessor(collectionRole, entityName);
	
public booleanisBackRef()

		return true;
	
public booleanisBasicPropertyAccessor()

		return false;
	
public voidsetCollectionRole(java.lang.String collectionRole)

		this.collectionRole = collectionRole;
	
public voidsetEntityName(java.lang.String entityName)

		this.entityName = entityName;