Class AlarmEventPropertyExpression
- java.lang.Object
 - 
- com.inductiveautomation.factorypmi.application.components.alarm.AlarmEventPropertyExpression
 
 
- 
- All Implemented Interfaces:
 Expression
public class AlarmEventPropertyExpression extends java.lang.Object implements Expression
 
- 
- 
Constructor Summary
Constructors Constructor Description AlarmEventPropertyExpression(Property<?> property, AlarmEventParseContext.SelectedAlarmEventModel model) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconnect(CommonContext context, InteractionListener updateListener)Gives the expression a chance to connect itself to things, if necessary.voiddisconnect()Tells the expression to disconnect from anything it was connected to.QualifiedValueexecute()Compute and return the value of this expressionExpression[]getChildren()The children (if any) that this expression is dependent on for its executionjava.lang.StringgetOpName()Return a human-readable name for the operation that this expression performsjava.lang.Class<?>getType()Return the type that this expression will returnvoidshutdown()Tells the expression to shutdown any polling operations.voidstartup()Tells the expression to startup any polling operations. 
 - 
 
- 
- 
Constructor Detail
- 
AlarmEventPropertyExpression
public AlarmEventPropertyExpression(Property<?> property, AlarmEventParseContext.SelectedAlarmEventModel model)
 
 - 
 
- 
Method Detail
- 
execute
@Nonnull public QualifiedValue execute() throws ExpressionException
Description copied from interface:ExpressionCompute and return the value of this expression- Specified by:
 executein interfaceExpression- Throws:
 ExpressionException
 
- 
getType
public java.lang.Class<?> getType()
Description copied from interface:ExpressionReturn the type that this expression will return- Specified by:
 getTypein interfaceExpression
 
- 
getOpName
public java.lang.String getOpName()
Description copied from interface:ExpressionReturn a human-readable name for the operation that this expression performs- Specified by:
 getOpNamein interfaceExpression
 
- 
getChildren
public Expression[] getChildren()
Description copied from interface:ExpressionThe children (if any) that this expression is dependent on for its execution- Specified by:
 getChildrenin interfaceExpression
 
- 
connect
public void connect(CommonContext context, InteractionListener updateListener)
Description copied from interface:ExpressionGives the expression a chance to connect itself to things, if necessary. Most expressions do not have any connections. An expression should notify the updateListener if they change.- Specified by:
 connectin interfaceExpression
 
- 
disconnect
public void disconnect()
Description copied from interface:ExpressionTells the expression to disconnect from anything it was connected to.- Specified by:
 disconnectin interfaceExpression
 
- 
startup
public void startup()
Description copied from interface:ExpressionTells the expression to startup any polling operations. Expressions that use this can remember the updateListener from connect() to feed update notification to.- Specified by:
 startupin interfaceExpression
 
- 
shutdown
public void shutdown()
Description copied from interface:ExpressionTells the expression to shutdown any polling operations.- Specified by:
 shutdownin interfaceExpression
 
 - 
 
 -