Uses of Interface
wicket.IEventRequestListener

Packages that use IEventRequestListener
wicket The core Wicket package. 
wicket.markup.html Base package of HTML markup. 
wicket.markup.html.basic Basic HTML components. 
wicket.markup.html.border Border components. 
wicket.markup.html.debug Classes that make debugging Wicket HTML applications easier. 
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.include Components for including content from non-Wicket sources. 
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.tree   
 

Uses of IEventRequestListener in wicket
 

Classes in wicket that implement IEventRequestListener
static class AutoLinkResolver.AutolinkBookmarkablePageLink
          Autolink components delegate component resolution to their parent components.
static class AutoLinkResolver.AutolinkExternalLink
          Autolink component delegate component resolution to their parent components.
 class Component
          Component serves as the highest level abstract base class for all components.
 class MarkupContainer
          A MarkupContainer holds a map of child components.
 class Page
          Abstract base class for pages.
 

Uses of IEventRequestListener in wicket.markup.html
 

Classes in wicket.markup.html that implement IEventRequestListener
 class BodyOnLoadContainer
          Handle <body> tags.
 class HtmlHeaderContainer
          The HtmlHeaderContainer is automatically created and added to the component hierarchie by a HtmlHeaderResolver instance.
 class WebComponent
          Base class for simple HTML components which do not hold nested components.
 class WebMarkupContainer
          A container of HTML markup and components.
 class WebPage
          Base class for HTML pages.
 

Uses of IEventRequestListener in wicket.markup.html.basic
 

Classes in wicket.markup.html.basic that implement IEventRequestListener
 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 IEventRequestListener in wicket.markup.html.border
 

Classes in wicket.markup.html.border that implement IEventRequestListener
 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 IEventRequestListener in wicket.markup.html.debug
 

Classes in wicket.markup.html.debug that implement IEventRequestListener
 class WicketComponentTree
          This is a simple Wicket component that displays all components of a Page in a table representation.
 

Uses of IEventRequestListener in wicket.markup.html.form
 

Classes in wicket.markup.html.form that implement IEventRequestListener
(package private)  class wicket.markup.html.form.AbstractChoice
          Abstract base class for all choice (html select) options.
(package private)  class wicket.markup.html.form.AbstractSingleSelectChoice
          Abstract base class for single-select choices.
(package private)  class wicket.markup.html.form.AbstractTextComponent
          Abstract base class for TextArea and TextField.
 class Button
          A form button.
 class CheckBox
          HTML checkbox input component.
 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 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 RadioChoice
          A choice subclass that shows choices in radio style.
 class RequiredTextField
          A text field which automatically adds a RequiredValidator.
 class TextArea
          Multi-row text editing component.
 class TextField
          A simple text field.
 

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

Classes in wicket.markup.html.form.upload that implement IEventRequestListener
 class FileUploadField
          Form component that corresponds to a <input type="file">.
 

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

Classes in wicket.markup.html.form.validation that implement IEventRequestListener
 class FormComponentFeedbackBorder
          A border that can be placed around a form component to indicate when the bordered child 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.
 

Uses of IEventRequestListener in wicket.markup.html.image
 

Classes in wicket.markup.html.image that implement IEventRequestListener
 class Image
          An Image component displays a localizable image resource.
 

Uses of IEventRequestListener in wicket.markup.html.include
 

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

Uses of IEventRequestListener in wicket.markup.html.link
 

Classes in wicket.markup.html.link that implement IEventRequestListener
 class BookmarkablePageLink
          Renders a stable link which can be cached in a web browser and used at a later time.
 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 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.
 class ResourceLink
          A link to any ResourceReference.
 

Uses of IEventRequestListener in wicket.markup.html.list
 

Classes in wicket.markup.html.list that implement IEventRequestListener
 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.
 

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

Classes in wicket.markup.html.navigation.paging that implement IEventRequestListener
 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 IEventRequestListener in wicket.markup.html.pages
 

Classes in wicket.markup.html.pages that implement IEventRequestListener
 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 IEventRequestListener in wicket.markup.html.panel
 

Classes in wicket.markup.html.panel that implement IEventRequestListener
 class FeedbackPanel
          A panel that displays FeedbackMessages in a list view.
 class Panel
          A panel is a reusable component that holds markup and other components.
 

Uses of IEventRequestListener in wicket.markup.html.tree
 

Classes in wicket.markup.html.tree that implement IEventRequestListener
 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.
protected  class Tree.DefaultNodePanel
          The default node panel.
protected  class Tree.NodePanel
          A panel for a tree node.
 



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