Package com.zerog.ia.auto.project.rules
Class CheckPlatformRule
- 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.CheckPlatformRule
-
- All Implemented Interfaces:
Referenceable
public final class CheckPlatformRule extends Rule
This class defines the Rule which checks the Current Platform on which the application is being installed Note - while adding "Windows (All)" in a check-platform rule using project automation API, use string "^Windows.*";
-
-
Constructor Summary
Constructors Constructor Description CheckPlatformRule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Vector<java.lang.String>
getDoNotInstallOnPlatformList()
To get the platforms which this rule will be evaluated as false.java.util.Vector<java.lang.String>
getInstallOnPlatformList()
To get the platforms which this rule will be evaluated as true.void
setDoNotInstallOnPlatformList(java.util.Vector<java.lang.String> _doNotInstallOnPlatformList)
To set the platforms which this rule will be evaluated as false.void
setInstallOnPlatformList(java.util.Vector<java.lang.String> _installOnPlatformList)
To set the platforms which this rule will be evaluated as true.-
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
-
setInstallOnPlatformList
public void setInstallOnPlatformList(java.util.Vector<java.lang.String> _installOnPlatformList)
To set the platforms which this rule will be evaluated as true.
-
setDoNotInstallOnPlatformList
public void setDoNotInstallOnPlatformList(java.util.Vector<java.lang.String> _doNotInstallOnPlatformList)
To set the platforms which this rule will be evaluated as false.
-
getInstallOnPlatformList
public java.util.Vector<java.lang.String> getInstallOnPlatformList()
To get the platforms which this rule will be evaluated as true.
-
getDoNotInstallOnPlatformList
public java.util.Vector<java.lang.String> getDoNotInstallOnPlatformList()
To get the platforms which this rule will be evaluated as false.
-
-