wicket.markup.transformer |
wicket.markup.transformer package
Transformers are able to post-process (transform) the output generated by a Component. That might
be XSLT, XQuery or any other processor. Transformers can be implemented as Container or
IBehaviour . Both variants redirect the output to a StringResponse which at
the end is used as input to the transformer. The output of transformer is than written to the
original response.
|
Java Source File Name | Type | Comment |
AbstractOutputTransformerContainer.java | Class | |
AbstractTransformerBehavior.java | Class | A IBehavior which can be added to any component. |
ITransformer.java | Interface | A common interface to be implemented be OutputTransformerContainers and
TranformerBehaviors which post-process the output markup of a component. |
NoopOutputTransformerContainer.java | Class | An implementation of an output transformer which does nothing. |
XsltOutputTransformerContainer.java | Class | A container which output markup will be processes by a XSLT processor prior
to writing the output into the web response. |
XsltTransfomerBehavior.java | Class | An IBehavior which can be added to any component except ListView. |
XsltTransformer.java | Class | A processor to XSLT transform the output generated by a Component. |