| java.lang.Object org.jfree.base.Library org.jfree.base.BasicProjectInfo org.jfree.base.BootableProjectInfo
All known Subclasses: org.jfree.ui.about.ProjectInfo,
BootableProjectInfo | public class BootableProjectInfo extends BasicProjectInfo (Code) | | Project info for a bootable project. A bootable project provides a controlled
way of initalizing all subsystems by providing a Boot loader implementation.
author: Thomas Morgner |
BootableProjectInfo | public BootableProjectInfo()(Code) | | Creates a new instance.
|
BootableProjectInfo | public BootableProjectInfo(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. |
BootableProjectInfo | public BootableProjectInfo(String name, String version, String info, String copyright, String licenceName)(Code) | | Creates a new library reference.
Parameters: name - the name. Parameters: version - the version. Parameters: info - the info (for example, the project URL). Parameters: copyright - the copyright statement. Parameters: licenceName - the license name. |
addDependency | public void addDependency(BootableProjectInfo projectInfo)(Code) | | Adds a dependency.
Parameters: projectInfo - the project. |
getBootClass | public String getBootClass()(Code) | | Returns the name of the boot class.
The name of the boot class. |
isAutoBoot | public boolean isAutoBoot()(Code) | | Returns, whether the project should be booted automaticly.
The auto-boot flag. |
setAutoBoot | public void setAutoBoot(boolean autoBoot)(Code) | | Sets the auto boot flag.
Parameters: autoBoot - true, if the project should be booted automaticly, false otherwise. |
setBootClass | public void setBootClass(String bootClass)(Code) | | Sets the boot class name.
Parameters: bootClass - the boot class name. |
|
|