Package org.hl7.fhir.utilities
Class ScriptedPageProcessor
- java.lang.Object
-
- org.hl7.fhir.utilities.ScriptedPageProcessor
-
public abstract class ScriptedPageProcessor extends Object
This object processes a string that contains <%%> or [%%] where each of these represents a 'command' that either does something, or inserts content into the string - which is then reprocessed The outcome is a string. This is a base class that is expected to be subclassed for various context specific processors- Author:
- Grahame Grieve
-
-
Constructor Summary
Constructors Constructor Description ScriptedPageProcessor(String title, int level)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
genlevel()
String
process(String content)
protected String
processCommand(String command, String[] com)
-
-
-
Constructor Detail
-
ScriptedPageProcessor
public ScriptedPageProcessor(String title, int level)
-
-