?? projectmodel.java~
字號(hào):
/* */package com.sun.j2ee.workflow.project.model;/** * This class provides methods to view and modify project * information for a particular project. */public class ProjectModel implements java.io.Serializable { protected String proj_ID; private String proj_name; private String group; private String lead; private String desc; public ProjectModel(String proj_ID, String proj_name, String group, String lead, String desc) { this.proj_ID = proj_ID; this.proj_name = proj_name; this.group = group; this.lead = lead; this.desc = desc; } public ProjectModel() {} public String getProj_ID() { return proj_ID; } public String getProj_name() { return proj_name; } public String getGroup() { return group; } public String getLead() { return lead; } public String getDesc() { return desc; } public void copy(ProjectModel other) { this.proj_ID = other.proj_ID; this.proj_name = other.proj_name; this.group = other.group; this.lead = other.lead; this.desc = other.desc; }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -