Java org.apache.wicket MarkupContainer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket MarkupContainer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.wicket MarkupContainer.

The text is from its open source code.

Subclass

org.apache.wicket.MarkupContainer has subclasses.
Click this link to see all its subclasses.

Constructor

Method

MarkupContaineradd(final Component... children)
Adds the child component(s) to this container.
MarkupContaineraddOrReplace(final Component... children)
Replaces a child component of this container with another or just adds it in case no child with the same id existed yet.
booleanautoAdd(final Component component, MarkupStream markupStream)
This method allows a component to be added by an auto-resolver such as AutoLinkResolver.
booleancontains(final Component component, final boolean recurse)
ZfindParent(final Class c)
Finds the first container parent of this component of the given class.
Componentget(String path)
Get a child component by looking it up with the given path.
ApplicationgetApplication()
Gets interface to application that this component is a part of.
ListgetBehaviors()
Gets the currently coupled Behavior s as a unmodifiable list.
IModelgetDefaultModel()
Gets the model.
ObjectgetDefaultModelObject()
Gets the backing model object.
StringgetId()
Gets the id of this component.
LocalegetLocale()
Gets the locale for this component.
LocalizergetLocalizer()
Convenience method to provide easy access to the localizer object within any component.
IMarkupFragmentgetMarkup()
Get the Markup associated with the Component.
StringgetMarkupId()
Retrieves id by which this component is represented within the markup.
StringgetMarkupId(boolean createIfDoesNotExist)
Retrieves id by which this component is represented within the markup.
MgetMetaData(final MetaDataKey key)
Gets metadata for this component using the given key.
booleangetOutputMarkupId()
Gets whether or not component will output id attribute into the markup.
booleangetOutputMarkupPlaceholderTag()
Gets whether or not an invisible component will render a placeholder tag.
PagegetPage()
Gets the page holding this component.
StringgetPageRelativePath()
Gets the path to this component relative to its containing page, i.e.
MarkupContainergetParent()
Gets any parent container, or null if there is none.
StringgetPath()
Gets this component's path.
booleangetRenderBodyOnly()
If false the component's tag will be printed as well as its body (which is default).
StringgetString(final String key)
booleanisVisible()
Gets whether this component and any children are visible.
Iteratoriterator()
Gives an iterator that allow you to iterate through the children of this markup container in the order the children were added.
MarkupContainerreplace(final Component child)
Replaces a child component of this container with another
ComponentsetEnabled(final boolean enabled)
Sets whether this component is enabled.
ComponentsetEscapeModelStrings(final boolean escapeMarkup)
Sets whether model strings should be escaped.
ComponentsetMetaData(final MetaDataKey key, final M object)
Sets the metadata for this component using the given key.
ComponentsetOutputMarkupId(final boolean output)
Sets whether or not component will output id attribute into the markup.
ComponentsetOutputMarkupPlaceholderTag(final boolean outputTag)
Render a placeholder tag when the component is not visible.
ComponentsetRenderBodyOnly(final boolean renderTag)
If false the component's tag will be printed as well as its body (which is default).
ComponentsetVisible(final boolean visible)
Sets whether this component and any children are visible.
intsize()
Get the number of children in this container.
CharSequenceurlFor(final Class pageClass, final PageParameters parameters)
Returns a bookmarkable URL that references a given page class using a given set of page parameters.
RvisitChildren(final Class clazz, final IVisitor visitor)
Traverses all child components of the given class in this container, calling the visitor's visit method at each one.
RvisitChildren(final IVisitor visitor)
Traverses all child components in this container, calling the visitor's visit method at each one.