Class VariableDeclaration
- java.lang.Object
-
- org.camunda.bpm.engine.impl.variable.VariableDeclaration
-
- All Implemented Interfaces:
Serializable
@Deprecated public class VariableDeclaration extends Object implements Serializable
Deprecated.- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ExpressiondestinationExpressionDeprecated.protected StringdestinationVariableNameDeprecated.protected StringlinkDeprecated.protected ExpressionlinkExpressionDeprecated.protected StringnameDeprecated.protected ExpressionsourceExpressionDeprecated.protected StringsourceVariableNameDeprecated.protected StringtypeDeprecated.
-
Constructor Summary
Constructors Constructor Description VariableDeclaration(String name, String type)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddestroy(VariableScope innerScopeInstance, VariableScope outerScopeInstance)Deprecated.ExpressiongetDestinationExpression()Deprecated.StringgetDestinationVariableName()Deprecated.StringgetLink()Deprecated.ExpressiongetLinkExpression()Deprecated.StringgetName()Deprecated.ExpressiongetSourceExpression()Deprecated.StringgetSourceVariableName()Deprecated.StringgetType()Deprecated.voidinitialize(VariableScope innerScopeInstance, VariableScope outerScopeInstance)Deprecated.voidsetDestinationExpression(Expression destinationExpression)Deprecated.voidsetDestinationVariableName(String destinationVariableName)Deprecated.voidsetLink(String link)Deprecated.voidsetLinkExpression(Expression linkExpression)Deprecated.voidsetName(String name)Deprecated.voidsetSourceExpression(Expression sourceExpression)Deprecated.voidsetSourceVariableName(String sourceVariableName)Deprecated.voidsetType(String type)Deprecated.StringtoString()Deprecated.
-
-
-
Field Detail
-
name
protected String name
Deprecated.
-
type
protected String type
Deprecated.
-
sourceVariableName
protected String sourceVariableName
Deprecated.
-
sourceExpression
protected Expression sourceExpression
Deprecated.
-
destinationVariableName
protected String destinationVariableName
Deprecated.
-
destinationExpression
protected Expression destinationExpression
Deprecated.
-
link
protected String link
Deprecated.
-
linkExpression
protected Expression linkExpression
Deprecated.
-
-
Method Detail
-
initialize
public void initialize(VariableScope innerScopeInstance, VariableScope outerScopeInstance)
Deprecated.
-
destroy
public void destroy(VariableScope innerScopeInstance, VariableScope outerScopeInstance)
Deprecated.
-
getName
public String getName()
Deprecated.
-
setName
public void setName(String name)
Deprecated.
-
getType
public String getType()
Deprecated.
-
setType
public void setType(String type)
Deprecated.
-
getSourceVariableName
public String getSourceVariableName()
Deprecated.
-
setSourceVariableName
public void setSourceVariableName(String sourceVariableName)
Deprecated.
-
getSourceExpression
public Expression getSourceExpression()
Deprecated.
-
setSourceExpression
public void setSourceExpression(Expression sourceExpression)
Deprecated.
-
getDestinationVariableName
public String getDestinationVariableName()
Deprecated.
-
setDestinationVariableName
public void setDestinationVariableName(String destinationVariableName)
Deprecated.
-
getDestinationExpression
public Expression getDestinationExpression()
Deprecated.
-
setDestinationExpression
public void setDestinationExpression(Expression destinationExpression)
Deprecated.
-
getLink
public String getLink()
Deprecated.
-
setLink
public void setLink(String link)
Deprecated.
-
getLinkExpression
public Expression getLinkExpression()
Deprecated.
-
setLinkExpression
public void setLinkExpression(Expression linkExpression)
Deprecated.
-
-