FileDocCategorySizeDatePackage
Circular.javaAPI DocHibernate 3.2.51237Sun Sep 26 00:18:28 BST 2004org.hibernate.test.legacy

Circular

public class Circular extends Object

Fields Summary
private String
id
private Class
clazz
private Circular
other
private Object
anyEntity
Constructors Summary
public Circular()
Constructor for Circular.

		super();
	
Methods Summary
public java.lang.ObjectgetAnyEntity()
Returns the anyEntity.

return
Object

		return anyEntity;
	
public java.lang.ClassgetClazz()
Returns the clazz.

return
Class

		return clazz;
	
public java.lang.StringgetId()
Returns the id.

return
String

		return id;
	
public org.hibernate.test.legacy.CirculargetOther()
Returns the other.

return
Circular

		return other;
	
public voidsetAnyEntity(java.lang.Object anyEntity)
Sets the anyEntity.

param
anyEntity The anyEntity to set

		this.anyEntity = anyEntity;
	
public voidsetClazz(java.lang.Class clazz)
Sets the clazz.

param
clazz The clazz to set

		this.clazz = clazz;
	
public voidsetId(java.lang.String id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetOther(org.hibernate.test.legacy.Circular other)
Sets the other.

param
other The other to set

		this.other = other;