FileDocCategorySizeDatePackage
Result.javaAPI DocHibernate 3.2.5969Thu May 04 14:07:58 BST 2006org.hibernate.test.legacy

Result

public class Result extends Object

Fields Summary
private String
name
private long
amount
private long
count
Constructors Summary
public Result(String n, long a, int c)

		name = n;
		amount = a;
		count = c;
	
public Result(String n, long a, long c)

		name = n;
		amount = a;
		count = c;
	
Methods Summary
public longgetAmount()
Returns the amount.

return
long

		return amount;
	
public longgetCount()
Returns the count.

return
int

		return count;
	
public java.lang.StringgetName()
Returns the name.

return
String

		return name;
	
public voidsetAmount(long amount)
Sets the amount.

param
amount The amount to set

		this.amount = amount;
	
public voidsetCount(long count)
Sets the count.

param
count The count to set

		this.count = count;
	
public voidsetName(java.lang.String name)
Sets the name.

param
name The name to set

		this.name = name;