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

Y

public class Y extends Object

Fields Summary
private Long
id
private String
x
private X
theX
Constructors Summary
Methods Summary
public java.lang.LonggetId()
Returns the id.

return
Long

		return id;
	
public XgetTheX()

return

		return theX;
	
public java.lang.StringgetX()
Returns the x.

return
String

		return x;
	
public voidsetId(java.lang.Long id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetTheX(X x)

param
x

		theX = x;
	
public voidsetX(java.lang.String x)
Sets the x.

param
x The x to set

		this.x = x;