Package jadex.component
Class ComponentXMLReader.ExpressionProcessor
- java.lang.Object
-
- jadex.component.ComponentXMLReader.ExpressionProcessor
-
- All Implemented Interfaces:
IPostProcessor
- Enclosing class:
- ComponentXMLReader
public static class ComponentXMLReader.ExpressionProcessor extends java.lang.Object implements IPostProcessor
Parse expression text.
-
-
Field Summary
-
Fields inherited from interface jadex.xml.IPostProcessor
DISCARD_OBJECT
-
-
Constructor Summary
Constructors Constructor Description ExpressionProcessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPass()
Get the pass number.java.lang.Object
postProcess(IContext context, java.lang.Object object)
Post-process an object after an XML has been loaded.
-
-
-
Method Detail
-
postProcess
public java.lang.Object postProcess(IContext context, java.lang.Object object)
Description copied from interface:IPostProcessor
Post-process an object after an XML has been loaded.- Specified by:
postProcess
in interfaceIPostProcessor
- Parameters:
context
- The context.object
- The object to post process.- Returns:
- A possibly other object for replacing the original. Null for no change. Only possibly when processor is applied in first pass.
-
getPass
public int getPass()
Get the pass number.- Specified by:
getPass
in interfaceIPostProcessor
- Returns:
- The pass number.
-
-