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.AbstractExpressionchildren, context, updateListener
 
- 
 - 
Constructor SummaryConstructors Constructor Description BoundVariableExpression()
 - 
Method SummaryAll 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.AbstractExpressionconnect, 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
 
 - 
getTypepublic java.lang.Class<?> getType() Description copied from interface:ExpressionReturn the type that this expression will return
 - 
getOpNamepublic java.lang.String getOpName() Description copied from interface:ExpressionReturn a human-readable name for the operation that this expression performs
 - 
getPropertyListenerpublic PropertyListenerDescriptor getPropertyListener() 
 - 
setPropertyListenerpublic void setPropertyListener(PropertyListenerDescriptor descriptor) 
 - 
setTypepublic void setType(java.lang.Class class1) 
 - 
getPathpublic java.lang.String getPath() 
 - 
setPathpublic void setPath(java.lang.String string) 
 
- 
 
-