?? task.java
字號:
package pl.test;
/**
* Insert the type's description here.
* Creation date: (21.09.00 22:01:35)
* @author:
*/
public class Task extends pl.PersistentObject {
private java.lang.String name = "";
private long employeeId = -1;
/**
* Task constructor comment.
*/
public Task() {
super();
}
/**
* Insert the method's description here.
* Creation date: (21.09.00 22:02:27)
* @return long
*/
public long getEmployeeId() {
return employeeId;
}
/**
* Insert the method's description here.
* Creation date: (21.09.00 22:01:56)
* @return java.lang.String
*/
public java.lang.String getName() {
return name;
}
/**
* Insert the method's description here.
* Creation date: (21.09.00 22:02:27)
* @param newEmployeeId long
*/
public void setEmployeeId(long newEmployeeId) {
employeeId = newEmployeeId;
}
/**
* Insert the method's description here.
* Creation date: (21.09.00 22:01:56)
* @param newName java.lang.String
*/
public void setName(java.lang.String newName) {
name = newName;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -