Package com.uc4.api.objects
Class ClearVariableAction
- java.lang.Object
- 
- com.uc4.api.objects.ConditionOrAction
- 
- com.uc4.api.objects.ClearVariableAction
 
 
- 
- All Implemented Interfaces:
- Action
 
 public class ClearVariableAction extends ConditionOrAction implements Action Deletes the content of a static variable.
- 
- 
Constructor SummaryConstructors Constructor Description ClearVariableAction()Creates a newClearVariableAction.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDisplayMessageID()java.lang.StringgetId()java.lang.StringgetKey()intgetParameterMessageID()intgetSkeletonMessageID()UC4ObjectNamegetVariableName()Returns the name of the Variable object.booleanisAction()booleanisAfterCondition()Returnstrueif this action can be used in a Pre-Condition.booleanisBeforeCondition()Returnstrueif this action can be used in a Post-Condition.booleanisFinal()Returnstrueif this is a final action in this condition.booleanisIF()voidsetKey(java.lang.String key)Sets the key of the variable.voidsetVariableName(UC4ObjectName variableName)Sets the name of the Variable object.- 
Methods inherited from class com.uc4.api.objects.ConditionOrActioncopy, createActionFromId, createConditionFromId, equals, getParameter, getPromptName, getScriptName, hashCode, isActive, isOnce, isParameterAltView, setActive, setOnce, setParameter
 
- 
 
- 
- 
- 
Method Detail- 
setVariableNamepublic void setVariableName(UC4ObjectName variableName) Sets the name of the Variable object.- Parameters:
- variableName- object name
 
 - 
setKeypublic void setKey(java.lang.String key) Sets the key of the variable.- Parameters:
- key- Key
 
 - 
getVariableNamepublic UC4ObjectName getVariableName() Returns the name of the Variable object.- Returns:
- object name
 
 - 
getKeypublic java.lang.String getKey() - Returns:
- Key
 
 - 
isFinalpublic boolean isFinal() Description copied from interface:ActionReturnstrueif this is a final action in this condition.
 - 
getIdpublic java.lang.String getId() - Specified by:
- getIdin interface- Action
- Specified by:
- getIdin class- ConditionOrAction
- Returns:
- ID of the condition or action
 
 - 
isActionpublic boolean isAction() - Specified by:
- isActionin class- ConditionOrAction
- Returns:
- true if the sub class is an instance of com.uc4.api.objects.Actionor false if the sub class is an instance ofcom.uc4.api.objects.Condition
 
 - 
isBeforeConditionpublic boolean isBeforeCondition() Description copied from interface:ActionReturnstrueif this action can be used in a Post-Condition.- Specified by:
- isBeforeConditionin interface- Action
- Specified by:
- isBeforeConditionin class- ConditionOrAction
- Returns:
- true if the action/condition is allowed on the "Pre-Condition" tab
 
 - 
isAfterConditionpublic boolean isAfterCondition() Description copied from interface:ActionReturnstrueif this action can be used in a Pre-Condition.- Specified by:
- isAfterConditionin interface- Action
- Specified by:
- isAfterConditionin class- ConditionOrAction
- Returns:
- true if the action/condition is allowed on the "Post-Condition" tab
 
 - 
isIFpublic boolean isIF() - Specified by:
- isIFin class- ConditionOrAction
- Returns:
- true if the action/condition is allowed in the condition of an IF workflow
 
 - 
getParameterMessageIDpublic int getParameterMessageID() - Specified by:
- getParameterMessageIDin class- ConditionOrAction
- Returns:
- Message number of the parameter message
 
 - 
getSkeletonMessageIDpublic int getSkeletonMessageID() - Specified by:
- getSkeletonMessageIDin class- ConditionOrAction
- Returns:
- Message number of this condition or action
 
 - 
getDisplayMessageIDpublic int getDisplayMessageID() - Specified by:
- getDisplayMessageIDin class- ConditionOrAction
- Returns:
- Message number for displaying this condition
 
 
- 
 
-