Interface IMarkupParserCustomizer
public interface IMarkupParserCustomizer
A customizer of MarkupParsers created by a custom MarkupFactory that loads
implementations of this interface.
WARNING: there is no guarantee of the order in which implementations are invoked.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcustomize(org.apache.wicket.markup.MarkupResourceStream resource, org.apache.wicket.markup.MarkupParser parser) Customize the given parser based on the state of the given resource.
-
Method Details
-
customize
void customize(org.apache.wicket.markup.MarkupResourceStream resource, org.apache.wicket.markup.MarkupParser parser) Customize the given parser based on the state of the given resource.
- Parameters:
resource- the resource for whichparserwas created.parser- the markup parser, created forresource, to be customized.
-