| java.lang.Object org.jfree.base.Library org.jfree.base.BasicProjectInfo
All known Subclasses: org.jfree.base.BootableProjectInfo,
BasicProjectInfo | public class BasicProjectInfo extends Library (Code) | | Basic project info.
author: Thomas Morgner |
BasicProjectInfo | public BasicProjectInfo()(Code) | | Default constructor.
|
BasicProjectInfo | public BasicProjectInfo(String name, String version, String licence, String info)(Code) | | Creates a new library reference.
Parameters: name - the name. Parameters: version - the version. Parameters: licence - the licence. Parameters: info - the web address or other info. |
BasicProjectInfo | public BasicProjectInfo(String name, String version, String info, String copyright, String licenceName)(Code) | | Creates a new project info instance.
Parameters: name - the project name. Parameters: version - the project version. Parameters: info - the project info (web site for example). Parameters: copyright - the copyright statement. Parameters: licenceName - the license name. |
addLibrary | public void addLibrary(Library library)(Code) | | Adds a library.
Parameters: library - the library. |
addOptionalLibrary | public void addOptionalLibrary(String libraryClass)(Code) | | Adds an optional library. These libraries will be booted, if they define
a boot class. A missing class is considered non-fatal and it is assumed
that the programm knows how to handle that.
Parameters: library - the library. |
addOptionalLibrary | public void addOptionalLibrary(Library library)(Code) | | Adds an optional library. These libraries will be booted, if they define
a boot class. A missing class is considered non-fatal and it is assumed
that the programm knows how to handle that.
Parameters: library - the library. |
getCopyright | public String getCopyright()(Code) | | Returns the copyright statement.
The copyright statement. |
getLibraries | public Library[] getLibraries()(Code) | | Returns a list of libraries used by the project.
the list of libraries. |
getOptionalLibraries | public Library[] getOptionalLibraries()(Code) | | Returns a list of optional libraries used by the project.
the list of libraries. |
setCopyright | public void setCopyright(String copyright)(Code) | | Sets the project copyright statement.
Parameters: copyright - the project copyright statement. |
setInfo | public void setInfo(String info)(Code) | | Sets the project info string (for example, this could be the project URL).
Parameters: info - the info string. |
setLicenceName | public void setLicenceName(String licence)(Code) | | Sets the license name.
Parameters: licence - the license name. |
setName | public void setName(String name)(Code) | | Sets the project name.
Parameters: name - the project name. |
setVersion | public void setVersion(String version)(Code) | | Sets the project version number.
Parameters: version - the version number. |
|
|