Class BoundPropertyExpression
- java.lang.Object
-
- com.inductiveautomation.ignition.common.expressions.AbstractExpression
-
- com.inductiveautomation.perspective.gateway.expression.BoundPropertyExpression
-
- All Implemented Interfaces:
Expression
public class BoundPropertyExpression extends AbstractExpression
-
-
Field Summary
-
Fields inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
children, context, updateListener
-
-
Constructor Summary
Constructors Constructor Description BoundPropertyExpression(PerspectiveElement component, java.lang.String path)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QualifiedValue
execute()
Compute and return the value of this expressionjava.lang.String
getOpName()
Return a human-readable name for the operation that this expression performsjava.lang.Class<?>
getType()
Return the type that this expression will returnvoid
shutdown()
Tells the expression to shutdown any polling operations.void
startup()
Tells the expression to startup any polling operations.-
Methods inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
connect, disconnect, getChildren, setChildren
-
-
-
-
Constructor Detail
-
BoundPropertyExpression
public BoundPropertyExpression(PerspectiveElement component, java.lang.String path)
-
-
Method Detail
-
execute
@Nonnull public QualifiedValue execute()
Description copied from interface:Expression
Compute and return the value of this expression
-
getType
public java.lang.Class<?> getType()
Description copied from interface:Expression
Return the type that this expression will return
-
getOpName
public java.lang.String getOpName()
Description copied from interface:Expression
Return a human-readable name for the operation that this expression performs
-
startup
public void startup()
Description copied from interface:Expression
Tells the expression to startup any polling operations. Expressions that use this can remember the updateListener from connect() to feed update notification to.- Specified by:
startup
in interfaceExpression
- Overrides:
startup
in classAbstractExpression
-
shutdown
public void shutdown()
Description copied from interface:Expression
Tells the expression to shutdown any polling operations.- Specified by:
shutdown
in interfaceExpression
- Overrides:
shutdown
in classAbstractExpression
-
-