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

Fee

public class Fee extends Object implements Serializable

Fields Summary
public Fee
fee
public Fee
anotherFee
public String
fi
public String
key
public Set
fees
private Qux
qux
private FooComponent
compon
private int
count
Constructors Summary
public Fee()

	
Methods Summary
public org.hibernate.test.legacy.FeegetAnotherFee()

		return anotherFee;
	
public FooComponentgetCompon()

		return compon;
	
public intgetCount()
Returns the count.

return
int

		return count;
	
public org.hibernate.test.legacy.FeegetFee()

		return fee;
	
public java.util.SetgetFees()

		return fees;
	
public java.lang.StringgetFi()

		return fi;
	
public java.lang.StringgetKey()

		return key;
	
public QuxgetQux()

		return qux;
	
public voidsetAnotherFee(org.hibernate.test.legacy.Fee anotherFee)

		this.anotherFee = anotherFee;
	
public voidsetCompon(FooComponent compon)

		this.compon = compon;
	
public voidsetCount(int count)
Sets the count.

param
count The count to set

		this.count = count;
	
public voidsetFee(org.hibernate.test.legacy.Fee fee)

		this.fee = fee;
	
public voidsetFees(java.util.Set fees)

		this.fees = fees;
	
public voidsetFi(java.lang.String fi)

		this.fi = fi;
	
public voidsetKey(java.lang.String key)

		this.key = key;
	
public voidsetQux(Qux qux)

		this.qux = qux;