Uses of Interface
org.apache.wicket.markup.loader.IMarkupLoader
-
Packages that use IMarkupLoader Package Description org.apache.wicket.markup Base package for markup.org.apache.wicket.markup.loader -
-
Uses of IMarkupLoader in org.apache.wicket.markup
Methods in org.apache.wicket.markup that return IMarkupLoader Modifier and Type Method Description IMarkupLoader
MarkupFactory. getMarkupLoader()
MarkupLoaders are responsible to find and load the markup for a component. -
Uses of IMarkupLoader in org.apache.wicket.markup.loader
Classes in org.apache.wicket.markup.loader that implement IMarkupLoader Modifier and Type Class Description class
DefaultMarkupLoader
This is Wickets default markup loader.class
InheritedMarkupMarkupLoader
Merge the 2+ markups involved in markup inheritance.class
SimpleMarkupLoader
Load the markup from the resource stream providedMethods in org.apache.wicket.markup.loader with parameters of type IMarkupLoader Modifier and Type Method Description Markup
DefaultMarkupLoader. loadMarkup(MarkupContainer container, MarkupResourceStream markupResourceStream, IMarkupLoader baseLoader, boolean enforceReload)
UsesSimpleMarkupLoader
to load the resource(s), read it and check if markup inheritance applies.Markup
IMarkupLoader. loadMarkup(MarkupContainer container, MarkupResourceStream markupResourceStream, IMarkupLoader baseLoader, boolean enforceReload)
Loads markup from a resource stream.Markup
InheritedMarkupMarkupLoader. loadMarkup(MarkupContainer container, MarkupResourceStream markupResourceStream, IMarkupLoader baseLoader, boolean enforceReload)
Load the markup from the resource stream with the base MarkupLoader provided, than check if markup inheritance must be applied.Markup
SimpleMarkupLoader. loadMarkup(MarkupContainer container, MarkupResourceStream markupResourceStream, IMarkupLoader baseLoader, boolean enforceReload)
UsesMarkupFactory.newMarkupParser(MarkupResourceStream)
andAbstractMarkupParser.parse()
to load the Markup.
-