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

E

public class E extends Object

Fields Summary
private Long
id
private float
amount
private A
reverse
private Set
as
Constructors Summary
Methods Summary
public floatgetAmount()
Returns the amount.

return
float

		return amount;
	
public java.util.SetgetAs()

return
Returns the as.

		return as;
	
public java.lang.LonggetId()
Returns the id.

return
long

		return id;
	
public AgetReverse()

		return reverse;
	
public voidsetAmount(float amount)
Sets the amount.

param
amount The amount to set

		this.amount = amount;
	
public voidsetAs(java.util.Set as)

param
as The as to set.

		this.as = as;
	
public voidsetId(java.lang.Long id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetReverse(A a)

		reverse = a;