|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Markup | |
---|---|
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 | |
---|---|
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 | |
---|---|
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 | |
---|---|
static Markup |
Markup.NO_MARKUP
Placeholder that indicates no markup |
Methods in org.apache.wicket.markup that return Markup | |
---|---|
Markup |
MarkupResourceStream.getBaseMarkup()
In case of markup inheritance, the base markup resource. |
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. |
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)
|
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). |
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 | |
---|---|
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 | |
---|---|
protected MarkupParser.MarkupFilterList |
MarkupParser.initializeMarkupFilters(Markup markup)
Initialize Wicket's MarkupParser with all necessary markup filters. |
protected abstract List<IMarkupFilter> |
AbstractMarkupParser.initializeMarkupFilters(Markup markup)
Create a new markup filter chain and initialize with all default filters required. |
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 | |
---|---|
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 | |
---|---|
Markup |
IMarkupLoader.loadMarkup(MarkupContainer container,
MarkupResourceStream markupResourceStream,
IMarkupLoader baseLoader,
boolean enforceReload)
Loads markup from a resource stream. |
Markup |
SimpleMarkupLoader.loadMarkup(MarkupContainer container,
MarkupResourceStream markupResourceStream,
IMarkupLoader baseLoader,
boolean enforceReload)
Uses MarkupFactory.newMarkupParser(MarkupResourceStream) and
AbstractMarkupParser.parse() to load the Markup. |
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 |
DefaultMarkupLoader.loadMarkup(MarkupContainer container,
MarkupResourceStream markupResourceStream,
IMarkupLoader baseLoader,
boolean enforceReload)
Uses SimpleMarkupLoader to load the resource(s), read it and check if markup
inheritance applies. |
Uses of Markup in org.apache.wicket.markup.parser |
---|
Methods in org.apache.wicket.markup.parser with parameters of type Markup | |
---|---|
void |
IMarkupFilter.postProcess(Markup markup)
Called after all filters have been processed. |
void |
AbstractMarkupFilter.postProcess(Markup markup)
|
Uses of Markup in org.apache.wicket.markup.parser.filter |
---|
Methods in org.apache.wicket.markup.parser.filter with parameters of type Markup | |
---|---|
void |
RootMarkupFilter.postProcess(Markup markup)
Noop |
void |
StyleAndScriptIdentifier.postProcess(Markup markup)
|
void |
ConditionalCommentFilter.postProcess(Markup markup)
Post-process the markup if necessary |
void |
HtmlHandler.postProcess(Markup markup)
|
Constructors in org.apache.wicket.markup.parser.filter with parameters of type Markup | |
---|---|
HtmlHeaderSectionHandler(Markup markup)
Construct. |
|
StyleAndScriptIdentifier(Markup markup)
Constructor. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |