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 Expression
destinationExpression
Deprecated.protected String
destinationVariableName
Deprecated.protected String
link
Deprecated.protected Expression
linkExpression
Deprecated.protected String
name
Deprecated.protected Expression
sourceExpression
Deprecated.protected String
sourceVariableName
Deprecated.protected String
type
Deprecated.
-
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 void
destroy(VariableScope innerScopeInstance, VariableScope outerScopeInstance)
Deprecated.Expression
getDestinationExpression()
Deprecated.String
getDestinationVariableName()
Deprecated.String
getLink()
Deprecated.Expression
getLinkExpression()
Deprecated.String
getName()
Deprecated.Expression
getSourceExpression()
Deprecated.String
getSourceVariableName()
Deprecated.String
getType()
Deprecated.void
initialize(VariableScope innerScopeInstance, VariableScope outerScopeInstance)
Deprecated.void
setDestinationExpression(Expression destinationExpression)
Deprecated.void
setDestinationVariableName(String destinationVariableName)
Deprecated.void
setLink(String link)
Deprecated.void
setLinkExpression(Expression linkExpression)
Deprecated.void
setName(String name)
Deprecated.void
setSourceExpression(Expression sourceExpression)
Deprecated.void
setSourceVariableName(String sourceVariableName)
Deprecated.void
setType(String type)
Deprecated.String
toString()
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.
-
-