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

📄 prjinfos.java

📁 It is all about project scheduling. GanttProject is a tool for creating a project schedule by means
💻 JAVA
字号:
/* * Informations of the project */package net.sourceforge.ganttproject;/** * @author athomas Class to store the project informations */public class PrjInfos {    /** The name of the project */    public String _sProjectName = new String();    /** A short description of it */    public String _sDescription = new String();    /** The name of the organisation */    public String _sOrganization = new String();    /** Web link for the project or for the company */    public String _sWebLink = new String();    /** Default constructor with no parameters. */    public PrjInfos() {        this._sProjectName = "Untitled Gantt Project";        this._sDescription = "";        this._sOrganization = "";        this._sWebLink = "http://";    }    /** Constructor. */    public PrjInfos(String sProjectName, String sDescription,            String sOrganization, String sWebLink) {        this._sProjectName = sProjectName;        this._sDescription = sDescription;        this._sOrganization = sOrganization;        this._sWebLink = sWebLink;    }    /** @return the name of the project. */    public String getName() {        return _sProjectName;    }    /** @return the description of the project. */    public String getDescription() {        return _sDescription;    }    /** @return the organization of the project. */    public String getOrganization() {        return _sOrganization;    }    /** @return the web link for the project or for the company. */    public String getWebLink() {        return _sWebLink;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -