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

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

Introduction

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

The text is from its open source code.

Subclass

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

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)
voidcontinueToOriginalDestination()
Redirects to any intercept page previously specified by a call to #redirectToInterceptPage(Page) .
voiddetach()
Detaches the component.
voidendComponentRender(Component component)
This method is called when a component was rendered as a part.
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.
FeedbackMessagesgetFeedbackMessages()
Gets feedback messages for this component.
StringgetId()
MgetMetaData(final MetaDataKey key)
Gets metadata for this component using the given key.
ClassgetPageClass()
intgetPageId()
PageParametersgetPageParameters()
The PageParameters object that was used to construct this page.
PageReferencegetPageReference()
Gets page instance's unique identifier
StringgetPath()
Gets this component's path.
RequestgetRequest()
ResponsegetResponse()
SessiongetSession()
Gets the current Session object.
StringgetString(final String key)
voidinfo(final Serializable message)
Registers an informational feedback message for this component
booleanisPageStateless()
Gets whether the page is stateless.
voidsend(IEventSink sink, Broadcast type, T payload)
ComponentsetEnabled(final boolean enabled)
Sets whether this component is enabled.
ComponentsetMarkup(final IMarkupFragment markup)
Set the markup for the component.
ComponentsetMetaData(final MetaDataKey key, final M object)
Sets the metadata for this component using the given key.
voidsetResponsePage(final Class cls)
Sets the page that will respond to this request
ComponentsetVersioned(boolean versioned)
voidstartComponentRender(Component component)
This method is called when a component will be rendered as a part.
RvisitChildren(final IVisitor visitor)
Traverses all child components in this container, calling the visitor's visit method at each one.
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.