Resultpublic 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 long | getAmount()Returns the amount.
return amount;
| public long | getCount()Returns the count.
return count;
| public java.lang.String | getName()Returns the name.
return name;
| public void | setAmount(long amount)Sets the amount.
this.amount = amount;
| public void | setCount(long count)Sets the count.
this.count = count;
| public void | setName(java.lang.String name)Sets the name.
this.name = name;
|
|