| org.jfree.base.BootableProjectInfo org.jfree.ui.about.ProjectInfo
All known Subclasses: org.jfree.xml.JCommonXMLInfo, org.jfree.JCommonInfo,
ProjectInfo | public class ProjectInfo extends BootableProjectInfo (Code) | | A class for recording the basic information about a free or open source software project.
author: David Gilbert |
ProjectInfo | public ProjectInfo()(Code) | | Constructs an empty project info object.
|
ProjectInfo | public ProjectInfo(String name, String version, String info, Image logo, String copyright, String licenceName, String licenceText)(Code) | | Constructs a project info object.
Parameters: name - the name of the project. Parameters: version - the version. Parameters: info - other info (usually a URL). Parameters: logo - the project logo. Parameters: copyright - a copyright statement. Parameters: licenceName - the name of the licence that applies to the project. Parameters: licenceText - the text of the licence that applies to the project. |
getContributors | public List getContributors()(Code) | | Returns the list of contributors for the project.
the list of contributors. |
getLicenceText | public String getLicenceText()(Code) | | Returns the licence text.
the licence text. |
getLogo | public Image getLogo()(Code) | | Returns the logo.
the project logo. |
setContributors | public void setContributors(List contributors)(Code) | | Sets the list of contributors.
Parameters: contributors - the list of contributors. |
setLicenceText | public void setLicenceText(String licenceText)(Code) | | Sets the project licence text.
Parameters: licenceText - the licence text. |
setLogo | public void setLogo(Image logo)(Code) | | Sets the project logo.
Parameters: logo - the project logo. |
toString | public String toString()(Code) | | Returns a string describing the project.
a string describing the project. |
|
|