Package com.zerog.ia.auto.project.rules
Class CheckArchitectureRule
- java.lang.Object
-
- com.zerog.ia.auto.project.ProjectObject
-
- com.zerog.ia.auto.project.InstallableObject
-
- com.zerog.ia.auto.project.rules.Rule
-
- com.zerog.ia.auto.project.rules.CheckArchitectureRule
-
- All Implemented Interfaces:
Referenceable
public final class CheckArchitectureRule extends Rule
The Check System Architecture rule allows developers to specify action or files to be run/installed only on specific system architecture (32-bit or 64-bit). The system architecture is normally determined by the Java virtual machine and reported to the installer, but in some cases may be specified in a registry action.
-
-
Constructor Summary
Constructors Constructor Description CheckArchitectureRule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Vector<java.lang.String>
getDoNotInstallOnList()
To set the architectures that will fail this rule.java.util.Vector<java.lang.String>
getInstallOnList()
To set the architectures that will pass this rule.void
setDoNotInstallOnList(java.util.Vector<java.lang.String> _doNotInstallOnList)
To set the architectures that will fail this rule.void
setInstallOnList(java.util.Vector<java.lang.String> _installOnList)
To set the architectures that will pass this rule.-
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
-
setInstallOnList
public void setInstallOnList(java.util.Vector<java.lang.String> _installOnList)
To set the architectures that will pass this rule.
-
setDoNotInstallOnList
public void setDoNotInstallOnList(java.util.Vector<java.lang.String> _doNotInstallOnList)
To set the architectures that will fail this rule.
-
getInstallOnList
public java.util.Vector<java.lang.String> getInstallOnList()
To set the architectures that will pass this rule.
-
getDoNotInstallOnList
public java.util.Vector<java.lang.String> getDoNotInstallOnList()
To set the architectures that will fail this rule.
-
-