Uses of Class
org.apache.wicket.markup.Markup
-
Packages that use Markup Package Description org.apache.wicket The core Wicket package.org.apache.wicket.markup Base package for markup.org.apache.wicket.markup.loader org.apache.wicket.markup.parser The default parsing engine of Wicket.org.apache.wicket.markup.parser.filter Default parsing extensions. -
-
Uses of Markup in org.apache.wicket
Methods in org.apache.wicket that return Markup Modifier and Type Method Description Markup
MarkupContainer. getAssociatedMarkup()
Gets a fresh markup stream that contains the (immutable) markup resource for this class. -
Uses of Markup in org.apache.wicket.markup
Subclasses of Markup in org.apache.wicket.markup Modifier and Type Class Description class
MergedMarkup
A Markup class which represents merged markup, as it is required for markup inheritance.Fields in org.apache.wicket.markup declared as Markup Modifier and Type Field Description static Markup
Markup. NO_MARKUP
Placeholder that indicates no markupMethods in org.apache.wicket.markup that return Markup Modifier and Type Method Description Markup
MarkupResourceStream. getBaseMarkup()
In case of markup inheritance, the base markup resource.Markup
IMarkupCache. getMarkup(MarkupContainer container, Class<?> clazz, boolean enforceReload)
Gets any (immutable) markup resource for the container or any of its parent classes (markup inheritance)Markup
MarkupCache. getMarkup(MarkupContainer container, Class<?> clazz, boolean enforceReload)
Markup
MarkupFactory. getMarkup(MarkupContainer container, boolean enforceReload)
Get the markup associated with the container.Markup
MarkupFactory. getMarkup(MarkupContainer container, Class<?> clazz, boolean enforceReload)
Get the markup associated with the container.protected Markup
MarkupCache. getMarkupFromCache(String cacheKey, MarkupContainer container)
Wicket's default implementation just uses the cacheKey to retrieve the markup from the cache.Markup
MarkupFragment. getRootMarkup()
Markup
MarkupFactory. loadMarkup(MarkupContainer container, MarkupResourceStream markupResourceStream, boolean enforceReload)
Loads markup from a resource stream.static Markup
Markup. of(String markup)
Take the markup string, parse it and return the Markup (list of MarkupElements).static Markup
Markup. of(String markup, String wicketNamespace)
Take the markup string, parse it and return the Markup (list of MarkupElements).protected Markup
MarkupCache. onMarkupNotFound(String cacheKey, MarkupContainer container, Markup markup)
Will be called if the markup was not in the cache yet and could not be found either.Markup
AbstractMarkupParser. parse()
Reads and parses markup from a file.protected Markup
MarkupCache. putIntoCache(String locationString, MarkupContainer container, Markup markup)
Put the markup into the cache if cacheKey is not null and the cache does not yet contain the cacheKey.Methods in org.apache.wicket.markup that return types with arguments of type Markup Modifier and Type Method Description MarkupCache.ICache<String,Markup>
MarkupCache. getMarkupCache()
Get a unmodifiable map which contains the cached data.Methods in org.apache.wicket.markup with parameters of type Markup Modifier and Type Method Description protected abstract List<IMarkupFilter>
AbstractMarkupParser. initializeMarkupFilters(Markup markup)
Create a new markup filter chain and initialize with all default filters required.protected MarkupParser.MarkupFilterList
MarkupParser. initializeMarkupFilters(Markup markup)
Initialize Wicket's MarkupParser with all necessary markup filters.protected Markup
MarkupCache. onMarkupNotFound(String cacheKey, MarkupContainer container, Markup markup)
Will be called if the markup was not in the cache yet and could not be found either.protected void
AbstractMarkupParser. postProcess(Markup markup)
protected Markup
MarkupCache. putIntoCache(String locationString, MarkupContainer container, Markup markup)
Put the markup into the cache if cacheKey is not null and the cache does not yet contain the cacheKey.void
MarkupResourceStream. setBaseMarkup(Markup baseMarkup)
In case of markup inheritance, the base markup.Constructors in org.apache.wicket.markup with parameters of type Markup Constructor Description MarkupException(Markup markup, String message, Throwable cause)
Construct.MergedMarkup(Markup markup, Markup baseMarkup, int extendIndex)
Merge inherited and base markup. -
Uses of Markup in org.apache.wicket.markup.loader
Methods in org.apache.wicket.markup.loader that return Markup 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. -
Uses of Markup in org.apache.wicket.markup.parser
Methods in org.apache.wicket.markup.parser with parameters of type Markup Modifier and Type Method Description void
AbstractMarkupFilter. postProcess(Markup markup)
void
IMarkupFilter. postProcess(Markup markup)
Called after all filters have been processed. -
Uses of Markup in org.apache.wicket.markup.parser.filter
Methods in org.apache.wicket.markup.parser.filter with parameters of type Markup Modifier and Type Method Description void
HtmlHandler. postProcess(Markup markup)
void
RelativePathPrefixHandler. postProcess(Markup markup)
void
RootMarkupFilter. postProcess(Markup markup)
Noopvoid
StyleAndScriptIdentifier. postProcess(Markup markup)
Constructors in org.apache.wicket.markup.parser.filter with parameters of type Markup Constructor Description HtmlHeaderSectionHandler(Markup markup)
Construct.
-