Module org.apache.wicket.core
Class InlineEnclosureHandler
java.lang.Object
org.apache.wicket.markup.parser.AbstractMarkupFilter
org.apache.wicket.markup.parser.filter.InlineEnclosureHandler
- All Implemented Interfaces:
Serializable
,IMarkupFilter
,IComponentResolver
,IClusterable
public final class InlineEnclosureHandler
extends AbstractMarkupFilter
implements IComponentResolver
This is a markup inline filter. It identifies enclosures as attribute, for example: <tr
wicket:enclosure="">. The <tr> tag used in the example can be replaced with any html tag
that can contain child elements. If the 'child' attribute is empty it determines the wicket:id of
the child component automatically by analyzing the wicket component (in this case one wicket
component is allowed) in between the open and close tags. If the enclosure tag has a 'child'
attribute like
<tr
wicket:enclosure="controllingChildId">
than more than just one wicket component inside
the enclosure tags are allowed and the child component which determines the visibility of the
enclosure is identified by the 'child' attribute value which must be equal to the relative child
id path.- Author:
- Joonas Hamalainen, Juergen Donnerstag
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Attribute to identify inline enclosuresstatic final String
The Component id prefix.Fields inherited from class org.apache.wicket.markup.parser.AbstractMarkupFilter
REQUEST_COUNTER_KEY
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected MarkupElement
Invoked when a ComponentTag was found.resolve
(MarkupContainer container, MarkupStream markupStream, ComponentTag tag) Try to resolve a component.Methods inherited from class org.apache.wicket.markup.parser.AbstractMarkupFilter
getMarkupResourceStream, getNextFilter, getRequestUniqueId, getWicketNamespace, getWicketNamespace, nextElement, onSpecialTag, postProcess, setNextFilter
-
Field Details
-
INLINE_ENCLOSURE_ID_PREFIX
The Component id prefix.- See Also:
-
INLINE_ENCLOSURE_ATTRIBUTE_NAME
Attribute to identify inline enclosures- See Also:
-
-
Constructor Details
-
InlineEnclosureHandler
public InlineEnclosureHandler()Construct. -
InlineEnclosureHandler
-
-
Method Details
-
onComponentTag
Description copied from class:AbstractMarkupFilter
Invoked when a ComponentTag was found.By default this method is also called for WicketTags.
- Specified by:
onComponentTag
in classAbstractMarkupFilter
- Returns:
- Usually the same as the tag attribute
- Throws:
ParseException
-
resolve
Description copied from interface:IComponentResolver
Try to resolve a component.- Specified by:
resolve
in interfaceIComponentResolver
- Parameters:
container
- The container parsing its markupmarkupStream
- The current markupStreamtag
- The current component tag while parsing the markup- Returns:
- component or
null
if not found
-