Class FormattedExpressionParseContext
java.lang.Object
com.inductiveautomation.ignition.gateway.expressions.FormattedExpressionParseContext
- All Implemented Interfaces:
ExpressionParseContext
A simple delegating expression parse context that detects the presence of a format string defined by a pipe "|", such
as {Property|#.00}, and creates a wrapped expression that executes the formatting. If the format string is
not present, the path is passed unaltered to the delegate context.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateBoundExpression
(String path) Called to create expressions to represent bound elements, like:
-
Constructor Details
-
FormattedExpressionParseContext
-
-
Method Details
-
createBoundExpression
Description copied from interface:ExpressionParseContext
Called to create expressions to represent bound elements, like:{ path.to.something }
- Specified by:
createBoundExpression
in interfaceExpressionParseContext
- Parameters:
path
- the text content inside the braces.- Throws:
RuntimeException
- because the CUP parser doesn't have a throws on the function that calls this inside the parser
-
getFunctionFactory
- Specified by:
getFunctionFactory
in interfaceExpressionParseContext
-