Java org.apache.wicket.markup.html WebMarkupContainer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.wicket.markup.html WebMarkupContainer fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Subclass

org.apache.wicket.markup.html.WebMarkupContainer 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.
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.
ListgetBehaviors()
Gets the currently coupled Behavior s as a unmodifiable list.
ObjectgetDefaultModelObject()
Gets the backing model object.
StringgetId()
Gets the id of this component.
IModelgetInnermostModel()
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.
MarkupContainergetParent()
Gets any parent container, or null if there is none.
RequestCyclegetRequestCycle()
Gets the active request cycle for this component
SessiongetSession()
Gets the current Session object.
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.
MarkupContainerremove(final Component component)
Removes a component from the children identified by the component.getId()
MarkupContainerremoveAll()
Removes all children from this container.
MarkupContainerreplace(final Component child)
Replaces a child component of this container with another
ComponentreplaceWith(Component replacement)
Replaces this component with another.
MarkupContainersetDefaultModel(final IModel model)
ComponentsetDefaultModelObject(final Object object)
Sets the backing model object.
ComponentsetEnabled(final boolean enabled)
Sets whether this component is enabled.
voidsetMarkupId(Component comp)
Copy markupId
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).
ComponentsetVersioned(boolean versioned)
ComponentsetVisibilityAllowed(boolean allowed)
Sets whether or not this component is allowed to be visible.
ComponentsetVisible(final boolean visible)
Sets whether this component and any children are visible.
intsize()
Get the number of children in this container.
CharSequenceurlFor(final IRequestHandler requestHandler)
Returns a URL that references the given request target.
RvisitChildren(final IVisitor visitor)
Traverses all child components in this container, calling the visitor's visit method at each one.