wicket.markup.transformer
Interface ITransformer

All Known Implementing Classes:
AbstractOutputTransformerContainer, AbstractTransformerBehavior, NoopOutputTransformerContainer, XsltOutputTransformerContainer, XsltTransfomerBehavior, XsltTransformer

public interface ITransformer

A common interface to be implemented be OutputTransformerContainers and TranformerBehaviors which post-process the output markup of a component.

Author:
Juergen Donnerstag

Method Summary
 java.lang.CharSequence transform(Component component, java.lang.String output)
          Will be invoked after all child components have been processed to allow for transforming the markup generated.
 

Method Detail

transform

java.lang.CharSequence transform(Component component,
                                 java.lang.String output)
                                 throws java.lang.Exception
Will be invoked after all child components have been processed to allow for transforming the markup generated.

Parameters:
component - The associated Wicket component
output - The markup generated by the child components
Returns:
The output which will be appended to the orginal response
Throws:
java.lang.Exception


Copyright © 2004-2007 Wicket developers. All Rights Reserved.