Java org.apache.wicket.markup.repeater RepeatingView fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.wicket.markup.repeater.RepeatingView 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.
Componentget(String path)
Get a child component by looking it up with the given path.
ObjectgetDefaultModelObject()
Gets the backing model object.
Iteratoriterator()
Gives an iterator that allow you to iterate through the children of this markup container in the order the children were added.
StringnewChildId()
Generates a unique id string.
MarkupContainerremove(final Component component)
Removes a component from the children identified by the component.getId()
MarkupContainerremoveAll()
Removes all children from this container.
ComponentsetEnabled(final boolean enabled)
Sets whether this component is enabled.
ComponentsetEscapeModelStrings(final boolean escapeMarkup)
Sets whether model strings should be escaped.
ComponentsetOutputMarkupId(final boolean output)
Sets whether or not component will output id attribute into the markup.
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.