⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 projectmodel.java~

📁 J2EE & Tomcat books published by hope
💻 JAVA~
字号:
/* */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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -