Package com.zerog.ia.auto.project
Class ComponentVersion
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.InstallableObject
-
- com.zerog.ia.auto.project.ComponentVersion
-
- All Implemented Interfaces:
Referenceable
public final class ComponentVersion extends InstallableObject
Defines a component version. It is used by theComponentDependency
to find a specific component on the target machine.- See Also:
ComponentDependency
-
-
Constructor Summary
Constructors Constructor Description ComponentVersion()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getVersionMajor()
The major portion of the version number.int
getVersionMinor()
The minor portion of the version number.int
getVersionRevision()
The revision portion of the version number.int
getVersionSubrevision()
The sub-revision portion of the version number.void
setVersionMajor(int versionMajor)
The major portion of the version number.void
setVersionMinor(int versionMinor)
The minor portion of the version number.void
setVersionRevision(int versionRevision)
The revision portion of the version number.void
setVersionSubrevision(int versionSubrevision)
The sub-revision portion of the version number.-
Methods inherited from class com.zerog.ia.auto.project.InstallableObject
getBelongsToUninstallPhase, getRollbackEnabledCancel, getRollbackEnabledError, getRuleExpression, getRules, getRulesLogicalOperation, getTagsInInstallPiece, setBelongsToUninstallPhase, setRollbackEnabledCancel, setRollbackEnabledError, setRuleExpression, setRulesLogicalOperation, setTagsInInstallPiece
-
Methods inherited from class com.zerog.ia.auto.project.ProjectObject
equals, getReferenceID, hashCode, setReferenceID
-
-
-
-
Method Detail
-
getVersionMajor
public int getVersionMajor()
The major portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
setVersionMajor
public void setVersionMajor(int versionMajor)
The major portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
setVersionMinor
public void setVersionMinor(int versionMinor)
The minor portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
getVersionMinor
public int getVersionMinor()
The minor portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
setVersionRevision
public void setVersionRevision(int versionRevision)
The revision portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
getVersionRevision
public int getVersionRevision()
The revision portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
setVersionSubrevision
public void setVersionSubrevision(int versionSubrevision)
The sub-revision portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
getVersionSubrevision
public int getVersionSubrevision()
The sub-revision portion of the version number. A version is formated as major.minor.revision.sub-revision.
-
-