Class BoundVariableExpression
- java.lang.Object
 - 
- com.inductiveautomation.ignition.common.expressions.AbstractExpression
 - 
- com.inductiveautomation.factorypmi.application.binding.expression.BoundVariableExpression
 
 
 
- 
- All Implemented Interfaces:
 Expression
public class BoundVariableExpression extends AbstractExpression
A BoundVariableExpression (abbrv BVE) is the main workhorse of the expression language. This is the expression node that lets you bind to a property on another component on the window. 
- 
- 
Field Summary
- 
Fields inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
children, context, updateListener 
 - 
 
- 
Constructor Summary
Constructors Constructor Description BoundVariableExpression() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QualifiedValueexecute()Compute and return the value of this expressionjava.lang.StringgetOpName()Return a human-readable name for the operation that this expression performsjava.lang.StringgetPath()PropertyListenerDescriptorgetPropertyListener()java.lang.Class<?>getType()Return the type that this expression will returnvoidsetPath(java.lang.String string)voidsetPropertyListener(PropertyListenerDescriptor descriptor)voidsetType(java.lang.Class class1)- 
Methods inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
connect, disconnect, getChildren, setChildren, shutdown, startup 
 - 
 
 - 
 
- 
- 
Method Detail
- 
execute
@Nonnull public QualifiedValue execute() throws ExpressionException
Description copied from interface:ExpressionCompute and return the value of this expression- Throws:
 ExpressionException
 
- 
getType
public java.lang.Class<?> getType()
Description copied from interface:ExpressionReturn the type that this expression will return 
- 
getOpName
public java.lang.String getOpName()
Description copied from interface:ExpressionReturn a human-readable name for the operation that this expression performs 
- 
getPropertyListener
public PropertyListenerDescriptor getPropertyListener()
 
- 
setPropertyListener
public void setPropertyListener(PropertyListenerDescriptor descriptor)
 
- 
setType
public void setType(java.lang.Class class1)
 
- 
getPath
public java.lang.String getPath()
 
- 
setPath
public void setPath(java.lang.String string)
 
 - 
 
 -