Class FunctionExpression
java.lang.Object
com.inductiveautomation.ignition.common.expressions.AbstractExpression
com.inductiveautomation.ignition.common.expressions.FunctionExpression
- All Implemented Interfaces:
Expression
-
Field Summary
Fields inherited from class com.inductiveautomation.ignition.common.expressions.AbstractExpression
children, context, updateListener
-
Constructor Summary
ConstructorsConstructorDescriptionFunctionExpression
(ExpressionParseContext context, String funcName, List<Expression> argList) -
Method Summary
Modifier and TypeMethodDescriptionvoid
connect
(CommonContext context, InteractionListener updateListener) Gives the expression a chance to connect itself to things, if necessary.void
Tells the expression to disconnect from anything it was connected to.execute()
Compute and return the value of this expressiongetFunc()
Return a human-readable name for the operation that this expression performsClass<?>
getType()
Return the type that this expression will returnvoid
void
setFuncName
(String string) void
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
getChildren, setChildren
-
Constructor Details
-
FunctionExpression
public FunctionExpression(ExpressionParseContext context, String funcName, List<Expression> argList) -
FunctionExpression
public FunctionExpression()
-
-
Method Details
-
connect
Description copied from interface:Expression
Gives 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:
connect
in interfaceExpression
- Overrides:
connect
in classAbstractExpression
-
disconnect
public void disconnect()Description copied from interface:Expression
Tells the expression to disconnect from anything it was connected to.- Specified by:
disconnect
in interfaceExpression
- Overrides:
disconnect
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
-
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
-
execute
Description copied from interface:Expression
Compute and return the value of this expression- Throws:
ExpressionException
-
getType
Description copied from interface:Expression
Return the type that this expression will return -
getOpName
Description copied from interface:Expression
Return a human-readable name for the operation that this expression performs -
getFunc
-
getFuncName
-
setFunc
-
setFuncName
-