| org.apache.beehive.controls.api.versioning.Version
Version | public @interface Version(Code) | | Used by the control author to specify the version (major.minor) of the control interface.
Allowed on interfaces annotated with @ControlInterface. This version number
is the basis for control versioning, and versioning constraints against it are enforced both at
compile time and runtime.
|
Field Summary | |
int | major Major version number, typically used to track significant functionality changes. | int | minor Minor version number, typically used to track small internal changes/fixes. |
major | int major(Code) | | Major version number, typically used to track significant functionality changes.
|
minor | int minor(Code) | | Minor version number, typically used to track small internal changes/fixes. Version
constraints default to ignoring the minor version number in their comparisons, but may
be configured to specify a particular minor version.
|
|
|