📄 result.java
字号:
package org.hibernate.test;
public class Result {
private String name;
private long amount;
private int count;
/**
* Returns the amount.
* @return long
*/
public long getAmount() {
return amount;
}
/**
* Returns the count.
* @return int
*/
public int getCount() {
return count;
}
/**
* Returns the name.
* @return String
*/
public String getName() {
return name;
}
/**
* Sets the amount.
* @param amount The amount to set
*/
public void setAmount(long amount) {
this.amount = amount;
}
/**
* Sets the count.
* @param count The count to set
*/
public void setCount(int count) {
this.count = count;
}
/**
* Sets the name.
* @param name The name to set
*/
public void setName(String name) {
this.name = name;
}
public Result(String n, long a, int c) {
name = n;
amount = a;
count = c;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -