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

X

public class X extends Object

Fields Summary
private long
id
private Y
y
private List
xxs
Constructors Summary
Methods Summary
public longgetId()
Returns the id.

return
long


	     	 
	   
		return id;
	
public java.util.ListgetXxs()

		return xxs;
	
public YgetY()
Returns the y.

return
Y

		return y;
	
public voidsetId(long id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetXxs(java.util.List xxs)

		this.xxs = xxs;
	
public voidsetY(Y y)
Sets the y.

param
y The y to set

		this.y = y;