projectmodel.java~
来自「J2EE & Tomcat books published by hope」· JAVA~ 代码 · 共 63 行
JAVA~
63 行
/* */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; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?