| |
|
| org.jfree.base.modules.ModuleInfo
All known Subclasses: org.jfree.base.modules.DefaultModuleInfo,
ModuleInfo | public interface ModuleInfo (Code) | | The Module info class encapsulates metadata about a given module. It holds the
list of dependencies and the module version and description.
author: Thomas Morgner |
getMajorVersion | public String getMajorVersion()(Code) | | Returns the major version of the base module. The string should
contain a compareable character sequence so that higher versions
of the module are considered greater than lower versions.
The major version of the module. |
getMinorVersion | public String getMinorVersion()(Code) | | Returns the minor version of the base module. The string should
contain a compareable character sequence so that higher versions
of the module are considered greater than lower versions.
The minor version of the module. |
getModuleClass | public String getModuleClass()(Code) | | Returns the module class of the desired base module.
The module class. |
getPatchLevel | public String getPatchLevel()(Code) | | Returns the patchlevel version of the base module. The patch level
should be used to mark bugfixes. The string should
contain a compareable character sequence so that higher versions
of the module are considered greater than lower versions.
The patch level version of the module. |
|
|
|