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

Po

public class Po extends Object

Fields Summary
private long
id
private String
value
private Set
set
private List
list
private Top
top
private Lower
lower
Constructors Summary
Methods Summary
public longgetId()
Returns the id.

return
long

		return id;
	
public java.util.ListgetList()
Returns the list.

return
List

		return list;
	
public LowergetLower()

		return lower;
	
public java.util.SetgetSet()
Returns the set.

return
Set

		return set;
	
public TopgetTop()

		return top;
	
public java.lang.StringgetValue()
Returns the value.

return
String

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

param
id The id to set

		this.id = id;
	
public voidsetList(java.util.List list)
Sets the list.

param
list The list to set

		this.list = list;
	
public voidsetLower(Lower lower)

		this.lower = lower;
	
public voidsetSet(java.util.Set set)
Sets the set.

param
set The set to set

		this.set = set;
	
public voidsetTop(Top top)

		this.top = top;
	
public voidsetValue(java.lang.String value)
Sets the value.

param
value The value to set

		this.value = value;