Uses of Class
wicket.Component

Packages that use Component
wicket The core Wicket package. 
wicket.ajax   
wicket.ajax.markup.html   
wicket.ajax.markup.html.form   
wicket.ajax.markup.html.navigation.paging   
wicket.application   
wicket.authorization Contains classes that allow the user to specify authorization constraints via IAuthorizationStrategy. 
wicket.authorization.strategies   
wicket.authorization.strategies.action   
wicket.authorization.strategies.page   
wicket.behavior   
wicket.feedback Classes related to showing user feedback, generally as the result of form submission and/or validation. 
wicket.markup.html Base package of HTML markup. 
wicket.markup.html.basic Basic HTML components. 
wicket.markup.html.body   
wicket.markup.html.border Border components. 
wicket.markup.html.debug   
wicket.markup.html.form HTML Forms and form components. 
wicket.markup.html.form.upload Support for upload forms (using multipart requests). 
wicket.markup.html.form.validation Support for form validation. 
wicket.markup.html.image Image components. 
wicket.markup.html.image.resource Resource support for image components. 
wicket.markup.html.include Components for including content from non-Wicket sources. 
wicket.markup.html.internal   
wicket.markup.html.link Link components. 
wicket.markup.html.list List components for tabular data and such. 
wicket.markup.html.navigation.paging   
wicket.markup.html.pages Default special purpose pages for error and feedback support. 
wicket.markup.html.panel Panel components. 
wicket.markup.html.resources Support classes for HTML specific resources. 
wicket.markup.html.tree Package for Tree components. 
wicket.markup.resolver Resolvers implement the IComponentResolver interface and must be registered with the application. 
wicket.markup.transformer Transformers are able to post-process (transform) the output generated by a Component. 
wicket.model Core model support for Wicket components. 
wicket.protocol.http HTTP implementation. 
wicket.protocol.http.portlet Wicket interface to the JSR-168 portlet API. 
wicket.protocol.http.portlet.pages   
wicket.protocol.http.request.urlcompressing   
wicket.request.target.component   
wicket.request.target.component.listener   
wicket.request.target.resource   
wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
wicket.version   
wicket.version.undo This packages provides the default implementation of Wicket's back button support in the form of the ability to record and 'undo' changes to component composition structure, model changes and user specific (such as the current page of pageable lists) changes. 
 

Uses of Component in wicket
 

Subclasses of Component in wicket
 class MarkupContainer
          A MarkupContainer holds a map of child components.
 class Page
          Abstract base class for pages.
 

Methods in wicket that return Component
 Component Component.add(IBehavior behavior)
          Adds an behavior modifier to the component.
 Component MarkupContainer.get(java.lang.String path)
          Get a child component by looking it up with the given path.
 Component Component.setEnabled(boolean enabled)
          Sets whether this component is enabled.
 Component Component.setEscapeModelStrings(boolean escapeMarkup)
          Sets whether model strings should be escaped.
protected  Component Component.setIgnoreAttributeModifier(boolean ignore)
          If true, all attribute modifiers will be ignored
 Component MarkupContainer.setModel(IModel model)
           
 Component Component.setModel(IModel model)
          Sets the given model.
 Component Component.setModelObject(java.lang.Object object)
          Sets the backing model object; shorthand for getModel().setObject(object).
 Component Component.setOutputMarkupId(boolean output)
          Sets whether or not component will output id attribute into the markup.
 Component Component.setRenderBodyOnly(boolean renderTag)
          If false the component's tag will be printed as well as its body (which is default).
 Component Component.setVersioned(boolean versioned)
           
 Component Component.setVisible(boolean visible)
          Sets whether this component and any children are visible.
 

Methods in wicket with parameters of type Component
 MarkupContainer MarkupContainer.add(Component child)
          Adds a child component to this container.
 void Page.afterCallComponent(Component component, RequestListenerInterface listener)
          Called right after a component's listener method (the provided method argument) was called.
 boolean MarkupContainer.autoAdd(Component component)
          This method allows a component to be added by an auto-resolver such as AutoComponentResolver or AutoLinkResolver.
 void Page.beforeCallComponent(Component component, RequestListenerInterface listener)
          Called just before a component's listener method (the provided method argument) is called.
 java.lang.Object Component.IVisitor.component(Component component)
          Called at each component in a traversal.
 boolean MarkupContainer.contains(Component component, boolean recurse)
           
 void AttributeModifier.detachModel(Component component)
          Detach the model if it was a IDetachableModel Internal method.
 void Page.endComponentRender(Component component)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 java.lang.String Localizer.getString(java.lang.String key, Component component)
           
 java.lang.String Localizer.getString(java.lang.String key, Component component, IModel model)
           
 java.lang.String Localizer.getString(java.lang.String key, Component component, IModel model, java.util.Locale locale, java.lang.String style, java.lang.String defaultValue)
          Get the localized string using all of the supplied parameters.
 java.lang.String Localizer.getString(java.lang.String key, Component component, IModel model, java.lang.String defaultValue)
           
 java.lang.String Localizer.getString(java.lang.String key, Component component, java.lang.String defaultValue)
           
 void MarkupContainer.internalAdd(Component child)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void RequestListenerInterface.invoke(Page page, Component component)
          Invokes a given interface on a component.
 boolean Component.isAncestorOf(Component component)
          Deprecated. use getParent().contains(component, false)
 IRequestTarget RequestListenerInterface.newRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Creates a new request target for this request listener interface
 void AttributeModifier.onComponentTag(Component component, ComponentTag tag)
           
 void MarkupContainer.remove(Component component)
           
 MarkupContainer MarkupContainer.replace(Component child)
          Replaces a child component of this container with another
 void AttributeModifier.replaceAttibuteValue(Component component, ComponentTag tag)
          Checks the given component tag for an instance of the attribute to modify and if all criteria are met then replace the value of this attribute with the value of the contained model object.
 void Component.replaceWith(Component replacement)
          Replaces this component with another.
 void RequestCycle.request(Component component)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 boolean Component.sameRootModel(Component component)
           
 void Page.startComponentRender(Component component)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 java.lang.CharSequence RequestCycle.urlFor(Component component, RequestListenerInterface listener)
          Returns a URL that references a given interface on a component.
 

Uses of Component in wicket.ajax
 

Methods in wicket.ajax with parameters of type Component
 void AjaxRequestTarget.addComponent(Component component)
          Adds a component to the list of components to be rendered
 void AjaxRequestTarget.addComponent(Component component, java.lang.String markupId)
          Adds a component to the list of components to be rendered
 

Uses of Component in wicket.ajax.markup.html
 

Subclasses of Component in wicket.ajax.markup.html
 class AjaxFallbackLink
          An ajax link that will degrade to a normal request if ajax is not available or javascript is disabled
 class AjaxLink
          A component that allows a trigger request to be triggered via html anchor tag
 

Uses of Component in wicket.ajax.markup.html.form
 

Subclasses of Component in wicket.ajax.markup.html.form
 class AjaxCheckBox
          A CheckBox which is updated via ajax when the user changes its value
 class AjaxSubmitButton
          A button that submits the form via ajax.
 class AjaxSubmitLink
          A link that submits a form via ajax.
 

Uses of Component in wicket.ajax.markup.html.navigation.paging
 

Subclasses of Component in wicket.ajax.markup.html.navigation.paging
 class AjaxPagingNavigation
          An ajaxified navigation for a PageableListView that holds links to other pages of the PageableListView.
 class AjaxPagingNavigationIncrementLink
          An incremental Ajaxian link to a page of a PageableListView.
 class AjaxPagingNavigationLink
          An Ajax version of a link to a page of a PageableListView.
 class AjaxPagingNavigator
          A Wicket panel component to draw and maintain a complete page navigator, meant to be easily added to any PageableListView.
 

Uses of Component in wicket.application
 

Methods in wicket.application with parameters of type Component
 void IComponentInstantiationListener.onInstantiation(Component component)
          Called for every component that is instantiated.
 

Uses of Component in wicket.authorization
 

Methods in wicket.authorization that return Component
 Component UnauthorizedActionException.getComponent()
           
 

Methods in wicket.authorization with parameters of type Component
 boolean IAuthorizationStrategy.isActionAuthorized(Component component, Action action)
          Gets whether the given action is permitted.
 void IUnauthorizedComponentInstantiationListener.onUnauthorizedInstantiation(Component component)
          Called when an unauthorized component instantiation is about to take place (but before it happens).
 

Constructors in wicket.authorization with parameters of type Component
UnauthorizedActionException(Component component, Action action)
          Construct.
 

Uses of Component in wicket.authorization.strategies
 

Methods in wicket.authorization.strategies with parameters of type Component
 boolean CompoundAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Component in wicket.authorization.strategies.action
 

Methods in wicket.authorization.strategies.action with parameters of type Component
 boolean IActionAuthorizer.authorizeAction(Component component)
          Gets whether this action is authorized.
 boolean ActionAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Component in wicket.authorization.strategies.page
 

Methods in wicket.authorization.strategies.page with parameters of type Component
 boolean AbstractPageAuthorizationStrategy.isActionAuthorized(Component component, Action action)
           
 

Uses of Component in wicket.behavior
 

Methods in wicket.behavior that return Component
protected  Component AbstractAjaxBehavior.getComponent()
          Gets the component that this handler is bound to.
 

Methods in wicket.behavior with parameters of type Component
 void IBehavior.bind(Component component)
          Bind this handler to the given component.
 void AbstractBehavior.bind(Component component)
           
 void AbstractAjaxBehavior.bind(Component hostComponent)
          Bind this handler to the given component.
 void StringHeaderContributor.detachModel(Component component)
           
 void IBehavior.detachModel(Component component)
          Provides for the ability to detach any models this behavior has.
 void AbstractBehavior.detachModel(Component component)
           
 void IBehavior.exception(Component component, java.lang.RuntimeException exception)
          In case an unexpected exception happened anywhere between onComponentTag() and rendered(), onException() will be called for any behavior.
 void AbstractBehavior.exception(Component component, java.lang.RuntimeException exception)
           
 void SimpleAttributeModifier.onComponentTag(Component component, ComponentTag tag)
           
 void IBehavior.onComponentTag(Component component, ComponentTag tag)
          Called any time a component that has this behavior registered is rendering the component tag.
 void AbstractBehavior.onComponentTag(Component component, ComponentTag tag)
           
 void AbstractAjaxBehavior.onComponentTag(Component component, ComponentTag tag)
           
 void AbstractBehavior.onException(Component component, java.lang.RuntimeException exception)
          In case an unexpected exception happened anywhere between onComponentTag() and rendered(), onException() will be called for any behavior.
 void AbstractBehavior.onRendered(Component component)
          Called when a component that has this behavior coupled was rendered.
 void AbstractAjaxBehavior.onRendered(Component hostComponent)
           
 void IBehavior.rendered(Component component)
          Called when a component that has this behavior coupled was rendered.
 void AbstractBehavior.rendered(Component component)
           
 

Uses of Component in wicket.feedback
 

Methods in wicket.feedback that return Component
 Component FeedbackMessage.getReporter()
          Gets the reporting component.
 

Methods in wicket.feedback with parameters of type Component
 void FeedbackMessages.add(Component reporter, java.lang.String message, int level)
          Adds a message
 void FeedbackMessages.debug(Component reporter, java.lang.String message)
          Adds a new ui message with level DEBUG to the current messages.
 void FeedbackMessages.error(Component reporter, java.lang.String message)
          Adds a new ui message with level ERROR to the current messages.
 void FeedbackMessages.fatal(Component reporter, java.lang.String message)
          Adds a new ui message with level FATAL to the current messages.
 boolean FeedbackMessages.hasErrorMessageFor(Component component)
          Convenience method that looks up whether the given component registered a message with this list with the level ERROR.
 boolean FeedbackMessages.hasMessageFor(Component component)
          Looks up whether the given component registered a message with this list.
 boolean FeedbackMessages.hasMessageFor(Component component, int level)
          Looks up whether the given component registered a message with this list with the given level.
 void FeedbackMessages.info(Component reporter, java.lang.String message)
          Adds a new ui message with level INFO to the current messages.
 FeedbackMessage FeedbackMessages.messageForComponent(Component component)
          Looks up a message for the given component.
 java.lang.Object FeedbackMessagesModel.onGetObject(Component component)
           
protected  void FeedbackMessagesModel.onSetObject(Component component, java.lang.Object object)
           
 void FeedbackMessages.warn(Component reporter, java.lang.String message)
          Adds a new ui message with level WARNING to the current messages.
 

Constructors in wicket.feedback with parameters of type Component
ComponentFeedbackMessageFilter(Component component)
          Constructor
FeedbackMessage(Component reporter, java.lang.String message, int level)
          Construct using fields.
 

Uses of Component in wicket.markup.html
 

Subclasses of Component in wicket.markup.html
 class WebComponent
          Base class for simple HTML components which do not hold nested components.
 class WebMarkupContainer
          A container of HTML markup and components.
 class WebMarkupContainerWithAssociatedMarkup
           
static class WebMarkupContainerWithAssociatedMarkup.HeaderPartContainer
          For each wicket:head tag a HeaderPartContainer is created and added to the HtmlHeaderContainer which has been added to the Page.
 class WebPage
          Base class for HTML pages.
 

Methods in wicket.markup.html with parameters of type Component
 BodyContainer BodyContainer.addOnLoadModifier(IModel model, Component behaviorOwner)
          Add a new AttributeModifier to the body container which appends the 'value' to the onLoad attribute of the body tag.
 BodyContainer BodyContainer.addOnLoadModifier(java.lang.String value, Component behaviorOwner)
          Add a new AttributeModifier to the body container which appends the 'value' to the onLoad attribute of the body tag.
 BodyContainer BodyContainer.addOnUnLoadModifier(IModel model, Component behaviorOwner)
          Add a new AttributeModifier to the body container which appends the 'value' to the onUnLoad attribute of the body tag.
 BodyContainer BodyContainer.addOnUnLoadModifier(java.lang.String value, Component behaviorOwner)
          Add a new AttributeModifier to the body container which appends the 'value' to the onUnLoad attribute of the body tag.
 

Uses of Component in wicket.markup.html.basic
 

Subclasses of Component in wicket.markup.html.basic
 class Label
          A Label component replaces its body with the String version of its model object returned by getModelObjectAsString().
 class MultiLineLabel
          A MultiLineLabel component replaces its body with the model object.
 

Uses of Component in wicket.markup.html.body
 

Constructors in wicket.markup.html.body with parameters of type Component
BodyTagAttributeModifier(java.lang.String attribute, boolean addAttributeIfNotPresent, IModel replaceModel, Component behaviorOwner)
          Create a new attribute modifier with the given attribute name and model to replace with.
BodyTagAttributeModifier(java.lang.String attribute, IModel replaceModel, Component behaviorOwner)
          Create a new attribute modifier with the given attribute name and model to replace with.
BodyTagAttributeModifier(java.lang.String attribute, java.lang.String pattern, boolean addAttributeIfNotPresent, IModel replaceModel, Component behaviorOwner)
          Create a new attribute modifier with the given attribute name and expected pattern to match plus the model to replace with.
BodyTagAttributeModifier(java.lang.String attribute, java.lang.String pattern, IModel replaceModel, Component behaviorOwner)
          Create a new attribute modifier with the given attribute name and expected pattern to match plus the model to replace with.
 

Uses of Component in wicket.markup.html.border
 

Subclasses of Component in wicket.markup.html.border
 class Border
          A border component has associated markup which is drawn and determines placement of any markup and/or components nested within the border component.
 class BoxBorder
          A very simple border component that draws a thin black line around its children.
 

Uses of Component in wicket.markup.html.debug
 

Subclasses of Component in wicket.markup.html.debug
 class PageView
          This is a simple Wicket component that displays all components of a Page in a table representation.
 

Uses of Component in wicket.markup.html.form
 

Subclasses of Component in wicket.markup.html.form
 class AbstractTextComponent
          Abstract base class for TextArea and TextField.
 class Button
          A form button.
 class Check
          Component representing a single checkbox choice in a wicket.markup.html.form.CheckGroup.
 class CheckBox
          HTML checkbox input component.
 class CheckBoxMultipleChoice
          A choice subclass that shows choices via checkboxes.
 class CheckGroup
          Component used to connect instances of Check components into a group.
 class CheckGroupSelector
          Selects and unselects all Check components under the same CheckGroup as itself.
 class DropDownChoice
          A choice implemented as a dropdown menu/list.
 class Form
          Base class for forms.
 class FormComponent
          An HTML form component knows how to validate itself.
 class FormComponentLabel
          A component that represents html label tag.
 class HiddenField
          TextField doesn't permit the html so this is a simple subclass to allow this A HiddenField is useful when you have a javascript based component that updates the form state.
 class ImageButton
          A button which renders itself as an image button resource.
 class ListChoice
          Essentially a drop down choice that doesn't drop down.
 class ListMultipleChoice
          A multiple choice list component.
 class PasswordTextField
          A password text field component.
 class Radio
          Component representing a single radio choice in a wicket.markup.html.form.RadioGroup.
 class RadioChoice
          A choice subclass that shows choices in radio style.
 class RadioGroup
          Component used to connect instances of Radio components into a group.
 class RequiredTextField
          A text field which automatically adds a RequiredValidator.
 class SimpleFormComponentLabel
          A form component label that replaces its body with the contents of FormComponent.getLabel()
 class SubmitLink
          A link which can be used exactly like a Button to submit a Form.
 class TextArea
          Multi-row text editing component.
 class TextField
          A simple text field.
 

Methods in wicket.markup.html.form that return Component
 Component Form.setVersioned(boolean isVersioned)
           
 

Uses of Component in wicket.markup.html.form.upload
 

Subclasses of Component in wicket.markup.html.form.upload
 class FileUploadField
          Form component that corresponds to a <input type="file">.
 

Methods in wicket.markup.html.form.upload that return Component
 Component FileUploadField.setModel(IModel model)
           
 

Uses of Component in wicket.markup.html.form.validation
 

Subclasses of Component in wicket.markup.html.form.validation
 class FormComponentFeedbackBorder
          A border that can be placed around a form component to indicate when the bordered child/children has a validation error.
 class FormComponentFeedbackIndicator
          A panel that hides or shows itself depending on whether there are feedback messages for a given message filter.
 

Methods in wicket.markup.html.form.validation with parameters of type Component
 void FormComponentFeedbackIndicator.setIndicatorFor(Component component)
           
 

Uses of Component in wicket.markup.html.image
 

Subclasses of Component in wicket.markup.html.image
 class Image
          An Image component displays a localizable image resource.
 class NonCachingImage
          A subclass of Image that adds random noise to the url every request to prevent the browser from caching the image.
 

Uses of Component in wicket.markup.html.image.resource
 

Constructors in wicket.markup.html.image.resource with parameters of type Component
LocalizedImageResource(Component component)
          Constructor
 

Uses of Component in wicket.markup.html.include
 

Subclasses of Component in wicket.markup.html.include
 class Include
           Component that includes/ renders the import result of an URL, much like JSP include.
 

Uses of Component in wicket.markup.html.internal
 

Subclasses of Component in wicket.markup.html.internal
 class HtmlBodyContainer
          This is basically a transparent WebMarkupContainer with the ability to get the markup stream positioned correctly where the component begins from the parent (page) container.
 class HtmlHeaderContainer
          The HtmlHeaderContainer is automatically created and added to the component hierarchy by a HtmlHeaderResolver instance.
 

Uses of Component in wicket.markup.html.link
 

Subclasses of Component in wicket.markup.html.link
 class BookmarkablePageLink
          Renders a stable link which can be cached in a web browser and used at a later time.
 class DownloadLink
          A link that streams a file to the client.
 class ExternalLink
          A simple anchor link (<a href="http://url">) pointing to any URL.
 class ImageMap
          An image map holds links with different hot-area shapes.
 class InlineFrame
          Implementation of an inline frame component.
 class InternalFrame
          Deprecated. will be replaced by InlineFrame in Wicket 2.0 as that's a better name for it.
 class Link
          Implementation of a hyperlink component.
 class PageLink
          Links to a given page via an object implementing the IPageLink delayed linking interface.
 class PopupCloseLink
          Closes a popup window and cleans up any related session page map for the popup.
static class PopupCloseLink.ClosePopupPage
          ClosePopupPage closes the popup window.
 class ResourceLink
          A link to any ResourceReference.
 

Methods in wicket.markup.html.link that return Component
 Component Link.getAnchor()
          Gets any anchor component.
 

Methods in wicket.markup.html.link with parameters of type Component
 PageMap PopupSettings.getPageMap(Component callee)
          Gets the pagemap where the popup page must be created in.
 void Link.setAnchor(Component anchor)
          Sets an anchor component.
 

Uses of Component in wicket.markup.html.list
 

Subclasses of Component in wicket.markup.html.list
 class ListItem
          Container that holds components in a ListView.
 class ListView
          A ListView holds ListItem children.
 class Loop
          A very simple loop component whose model is an Integer defining the number of iterations the loop should render.
static class Loop.LoopItem
          Item container for a Loop iteration.
 class PageableListView
          PageableListView is similar to ListView but provides in addition pageable views.
 class PropertyListView
          Simple ListVew subclass that wraps its item models in a BoundCompoundPropertyModel.
 

Methods in wicket.markup.html.list that return Component
 Component ListView.setList(java.util.List list)
          Sets the model as the provided list and removes all children, so that the next render will be using the contents of the model.
 Component ListView.setModel(IModel model)
          Sets the model and removes all current children, so that the next render will be using the contents of the model.
 

Methods in wicket.markup.html.list with parameters of type Component
protected  java.lang.Object ListItemModel.onGetObject(Component component)
           
protected  void ListItemModel.onSetObject(Component component, java.lang.Object object)
           
 

Uses of Component in wicket.markup.html.navigation.paging
 

Subclasses of Component in wicket.markup.html.navigation.paging
 class PagingNavigation
          A navigation for a PageableListView that holds links to other pages of the PageableListView.
 class PagingNavigationIncrementLink
          An incremental link to a page of a PageableListView.
 class PagingNavigationLink
          A link to a page of a PageableListView.
 class PagingNavigator
          A Wicket panel component to draw and maintain a complete page navigator, meant to be easily added to any PageableListView.
 

Uses of Component in wicket.markup.html.pages
 

Subclasses of Component in wicket.markup.html.pages
 class AccessDeniedPage
          Page expired error page.
 class BrowserInfoPage
           This page uses a form post right after the page has loaded in the browser, using JavaScript or alternative means to detect and pass on settings to the embedded form.
 class ExceptionErrorPage
          Shows a runtime exception on a nice HTML page.
 class InternalErrorPage
          Internal error display page.
 class PageExpiredErrorPage
          Page expired error page.
 class RedirectPage
          Page that let the browser redirect.
 

Uses of Component in wicket.markup.html.panel
 

Subclasses of Component in wicket.markup.html.panel
 class ComponentFeedbackPanel
          Convenience feedback panel that filters the feedback messages based on the component given in the constructor.
 class FeedbackPanel
          A panel that displays FeedbackMessages in a list view.
 class Fragment
          Usually you either have a markup file or a xml tag with wicket:id="myComponent" to associate markup with a component.
 class Panel
          A panel is a reusable component that holds markup and other components.
 

Constructors in wicket.markup.html.panel with parameters of type Component
ComponentFeedbackPanel(java.lang.String id, Component filter)
          Constructor.
 

Uses of Component in wicket.markup.html.resources
 

Subclasses of Component in wicket.markup.html.resources
 class JavaScriptReference
          Link to a packaged JavaScript file.
 class PackagedResourceReference
          Base class for components that render references to packaged resources.
 class StyleSheetReference
          Link to a packaged style sheet.
 

Uses of Component in wicket.markup.html.tree
 

Subclasses of Component in wicket.markup.html.tree
 class AbstractTree
          Base component for trees.
 class Tree
          An tree that renders as a flat (not-nested) list, using spacers for indentation and nodes at the end of one row.
static class Tree.DefaultNodePanel
          The default node panel.
 

Methods in wicket.markup.html.tree that return Component
protected  Component Tree.newNodePanel(java.lang.String panelId, javax.swing.tree.DefaultMutableTreeNode node)
          Create a new panel for a tree node.
 

Methods in wicket.markup.html.tree with parameters of type Component
 java.lang.Object SelectedPathReplacementModel.getObject(Component component)
           
 

Uses of Component in wicket.markup.resolver
 

Subclasses of Component in wicket.markup.resolver
static class AutoLinkResolver.AutolinkBookmarkablePageLink
          Autolink components delegate component resolution to their parent components.
static class WicketMessageResolver.MyLabel
          A Label with expands open-close tags to open-body-close if required
 

Methods in wicket.markup.resolver that return Component
 Component AutoLinkResolver.IAutolinkResolverDelegate.newAutoComponent(MarkupContainer container, java.lang.String autoId, AutoLinkResolver.PathInfo pathInfo)
          Returns a new auto component based on the pathInfo object.
protected  Component AutoLinkResolver.AbstractAutolinkResolverDelegate.newPackageResourceReferenceAutoComponent(MarkupContainer container, java.lang.String autoId, AutoLinkResolver.PathInfo pathInfo, java.lang.String attribute)
          Creates a new auto component that references a package resource.
 

Uses of Component in wicket.markup.transformer
 

Subclasses of Component in wicket.markup.transformer
 class AbstractOutputTransformerContainer
          This abstract container provides the means to post-process the markup generated by its child components (excluding the containers tag)
 class NoopOutputTransformerContainer
          An implementation of an output transformer which does nothing.
 class XsltOutputTransformerContainer
          A container which output markup will be processes by a XSLT processor prior to writing the output into the web response.
 

Methods in wicket.markup.transformer with parameters of type Component
 void XsltTransfomerBehavior.onComponentTag(Component component, ComponentTag tag)
           
 void AbstractTransformerBehavior.onComponentTag(Component component, ComponentTag tag)
           
 void AbstractTransformerBehavior.onException(Component component, java.lang.RuntimeException exception)
           
 void AbstractTransformerBehavior.onRendered(Component component)
           
 java.lang.CharSequence XsltTransformer.transform(Component component, java.lang.String output)
          Apply a XSL transformation to the markup generated by a component.
 java.lang.CharSequence XsltTransfomerBehavior.transform(Component component, java.lang.String output)
           
 java.lang.CharSequence XsltOutputTransformerContainer.transform(Component component, java.lang.String output)
           
 java.lang.CharSequence NoopOutputTransformerContainer.transform(Component component, java.lang.String output)
           
 java.lang.CharSequence ITransformer.transform(Component component, java.lang.String output)
          Will be invoked after all child components have been processed to allow for transforming the markup generated.
abstract  java.lang.CharSequence AbstractTransformerBehavior.transform(Component component, java.lang.String output)
           
abstract  java.lang.CharSequence AbstractOutputTransformerContainer.transform(Component component, java.lang.String output)
           
 

Uses of Component in wicket.model
 

Methods in wicket.model that return Component
 Component BoundCompoundPropertyModel.bind(Component component, java.lang.Class type)
          Adds a type conversion binding.
 Component BoundCompoundPropertyModel.bind(Component component, java.lang.String propertyExpression)
          Adds a property binding.
 Component BoundCompoundPropertyModel.bind(Component component, java.lang.String propertyExpression, java.lang.Class type)
          Adds a property and type conversion binding.
 

Methods in wicket.model with parameters of type Component
 Component BoundCompoundPropertyModel.bind(Component component, java.lang.Class type)
          Adds a type conversion binding.
 Component BoundCompoundPropertyModel.bind(Component component, java.lang.String propertyExpression)
          Adds a property binding.
 Component BoundCompoundPropertyModel.bind(Component component, java.lang.String propertyExpression, java.lang.Class type)
          Adds a property and type conversion binding.
 boolean IModelComparator.compare(Component component, java.lang.Object newObject)
           
 java.lang.Object ResourceModel.getObject(Component component)
           
 java.lang.Object Model.getObject(Component component)
           
 java.lang.Object LoadableDetachableModel.getObject(Component component)
           
 java.lang.Object IModel.getObject(Component component)
          Gets the model object.
abstract  java.lang.Object AbstractReadOnlyModel.getObject(Component component)
           
 java.lang.Object AbstractDetachableModel.getObject(Component component)
           
protected  java.lang.Object AbstractPropertyModel.modelObject(Component component)
           
protected  java.lang.Object StringResourceModel.onGetObject(Component component)
          Gets the string that this string resource model currently represents.
protected  java.lang.Object AbstractPropertyModel.onGetObject(Component component)
           
protected abstract  java.lang.Object AbstractDetachableModel.onGetObject(Component component)
          Called when getObject is called in order to retrieve the detachable object.
protected  void AbstractReadOnlyDetachableModel.onSetObject(Component component, java.lang.Object object)
          This default implementation of onSetObject unconditionally throws an UnsupportedOperationException.
protected  void AbstractPropertyModel.onSetObject(Component component, java.lang.Object object)
          Applies the property expression on the model object using the given object argument.
protected abstract  void AbstractDetachableModel.onSetObject(Component component, java.lang.Object object)
          Called when setObject is called in order to change the detachable object.
protected  java.lang.String PropertyModel.propertyExpression(Component component)
           
protected  java.lang.String CompoundPropertyModel.propertyExpression(Component component)
           
protected  java.lang.String BoundCompoundPropertyModel.propertyExpression(Component component)
           
protected abstract  java.lang.String AbstractPropertyModel.propertyExpression(Component component)
           
protected  java.lang.Class PropertyModel.propertyType(Component component)
           
protected  java.lang.Class CompoundPropertyModel.propertyType(Component component)
           
protected  java.lang.Class BoundCompoundPropertyModel.propertyType(Component component)
           
protected abstract  java.lang.Class AbstractPropertyModel.propertyType(Component component)
           
 void Model.setObject(Component component, java.lang.Object object)
          Set the model object; calls setObject(java.io.Serializable).
 void IModel.setObject(Component component, java.lang.Object object)
          Sets the model object.
 void AbstractReadOnlyModel.setObject(Component component, java.lang.Object object)
          This default implementation of setObject unconditionally throws an UnsupportedOperationException.
 void AbstractDetachableModel.setObject(Component component, java.lang.Object object)
           
 

Constructors in wicket.model with parameters of type Component
StringResourceModel(java.lang.String resourceKey, Component component, IModel model)
          Construct.
StringResourceModel(java.lang.String resourceKey, Component component, IModel model, java.lang.Object[] parameters)
          Creates a new string resource model using the supplied parameters.
StringResourceModel(java.lang.String resourceKey, Component component, IModel model, java.lang.Object[] parameters, java.lang.String defaultValue)
          Creates a new string resource model using the supplied parameters.
StringResourceModel(java.lang.String resourceKey, Component component, IModel model, java.lang.String defaultValue)
          Construct.
 

Uses of Component in wicket.protocol.http
 

Methods in wicket.protocol.http with parameters of type Component
 void MockWebApplication.processRequestCycle(Component component)
          Initialize a new WebRequestCycle and all its dependent objects
 void MockHttpServletRequest.setRequestToComponent(Component component)
          Initialise the request parameters to point to the given component.
 

Uses of Component in wicket.protocol.http.portlet
 

Subclasses of Component in wicket.protocol.http.portlet
 class PortletPage
          Base class for portlet pages.
 

Uses of Component in wicket.protocol.http.portlet.pages
 

Subclasses of Component in wicket.protocol.http.portlet.pages
 class AccessDeniedPortletPage
          Access denied portlet page
 class ExceptionErrorPortletPage
          Exception error portlet page
 class InternalErrorPortletPage
          Internal error portlet page
 class PageExpiredPortletPage
          Page expired error page.
 

Uses of Component in wicket.protocol.http.request.urlcompressing
 

Methods in wicket.protocol.http.request.urlcompressing that return Component
 Component URLCompressor.ComponentAndInterface.getComponent()
           
 

Methods in wicket.protocol.http.request.urlcompressing with parameters of type Component
 int URLCompressor.getUIDForComponentAndInterface(Component component, java.lang.String interfaceName)
          Returns a uid for the combination component and the to call interface.
 

Uses of Component in wicket.request.target.component
 

Methods in wicket.request.target.component that return Component
 Component IComponentRequestTarget.getComponent()
          Gets the component instance.
 Component ComponentRequestTarget.getComponent()
           
 

Constructors in wicket.request.target.component with parameters of type Component
ComponentRequestTarget(Component component)
          Construct.
 

Uses of Component in wicket.request.target.component.listener
 

Methods in wicket.request.target.component.listener that return Component
 Component IListenerInterfaceRequestTarget.getTarget()
          Gets the target component.
 Component AbstractListenerInterfaceRequestTarget.getTarget()
           
 

Constructors in wicket.request.target.component.listener with parameters of type Component
AbstractListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
AbstractListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Construct.
BehaviorRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
BehaviorRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Construct.
ListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
ListenerInterfaceRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Construct.
 

Uses of Component in wicket.request.target.resource
 

Constructors in wicket.request.target.resource with parameters of type Component
ComponentResourceRequestTarget(Page page, Component component, RequestListenerInterface listener)
          Construct.
 

Uses of Component in wicket.util.tester
 

Subclasses of Component in wicket.util.tester
 class DummyHomePage
          A dummy homepage required by WicketTester only
 class DummyHomePage.TestLink
           
 class DummyPanelPage
          A dummy panel component
 

Methods in wicket.util.tester that return Component
 Component WicketTester.getComponentFromLastRenderedPage(java.lang.String path)
          Gets the component with the given path from last rendered page.
 

Methods in wicket.util.tester with parameters of type Component
 void WicketTester.assertComponentOnAjaxResponse(Component component)
          Test that a component has been added to a AjaxRequestTarget, using AjaxRequestTarget.addComponent(Component).
 void WicketTester.executeAjaxEvent(Component component, java.lang.String event)
          Simulate that an AJAX event has been fired.
 

Uses of Component in wicket.version
 

Methods in wicket.version with parameters of type Component
 void IPageVersionManager.componentAdded(Component component)
          Indicates that the given component was added.
 void IPageVersionManager.componentModelChanging(Component component)
          Indicates that the model for the given component is about to change.
 void IPageVersionManager.componentRemoved(Component component)
          Indicates that the given component was removed.
 

Uses of Component in wicket.version.undo
 

Methods in wicket.version.undo with parameters of type Component
 void UndoPageVersionManager.componentAdded(Component component)
           
 void UndoPageVersionManager.componentModelChanging(Component component)
           
 void UndoPageVersionManager.componentRemoved(Component component)
           
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.