Interface Transformer
-
- All Known Implementing Classes:
EditorToStorageTemplateVariablesTransformer
,EditorXhtmlTransformer
,InlineBodyMacroFixingTransformer
,PluggableTransformerChain
,RemoveApostropheEntityTransformer
,StorageToEditorTemplateVariablesTransformer
,StorageToViewTemplateVariablesTransformer
,StorageXhtmlTransformer
,TransformerChain
public interface Transformer
Parses one format and outputs as another.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
transform(Reader input, ConversionContext conversionContext)
-
-
-
Method Detail
-
transform
String transform(Reader input, ConversionContext conversionContext) throws XhtmlException
- Parameters:
input
-conversionContext
-- Returns:
- Throws:
XhtmlParsingException
- if there is a problem parsing the input parameter.XhtmlException
- for all other errors that may occur during transformation.
-
-