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

Lower

public class Lower extends Top

Fields Summary
private int
intprop
private String
foo
private Set
set
private List
bag
private Top
another
private Lower
yetanother
private Po
mypo
Constructors Summary
Methods Summary
public TopgetAnother()
Returns the another.

return
Simple

		return another;
	
public java.util.ListgetBag()
Returns the bag.

return
List

		return bag;
	
public java.lang.StringgetFoo()
Returns the foo.

return
String

		return foo;
	
public intgetIntprop()
Returns the intprop.

return
int

		return intprop;
	
public PogetMypo()
Returns the mypo.

return
Po

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

return
Set

		return set;
	
public org.hibernate.test.legacy.LowergetYetanother()
Returns the yetanother.

return
LessSimple

		return yetanother;
	
public voidsetAnother(Top another)
Sets the another.

param
another The another to set

		this.another = another;
	
public voidsetBag(java.util.List bag)
Sets the bag.

param
bag The bag to set

		this.bag = bag;
	
public voidsetFoo(java.lang.String foo)
Sets the foo.

param
foo The foo to set

		this.foo = foo;
	
public voidsetIntprop(int intprop)
Sets the intprop.

param
intprop The intprop to set

		this.intprop = intprop;
	
public voidsetMypo(Po mypo)
Sets the mypo.

param
mypo The mypo to set

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

param
set The set to set

		this.set = set;
	
public voidsetYetanother(org.hibernate.test.legacy.Lower yetanother)
Sets the yetanother.

param
yetanother The yetanother to set

		this.yetanother = yetanother;