Uses of Interface
org.apache.wicket.IGenericComponent

Packages that use IGenericComponent
org.apache.wicket.ajax.markup.html   
org.apache.wicket.ajax.markup.html.form   
org.apache.wicket.ajax.markup.html.navigation.paging   
org.apache.wicket.markup.html Base package of HTML markup. 
org.apache.wicket.markup.html.basic Basic HTML components. 
org.apache.wicket.markup.html.form HTML Forms and form components. 
org.apache.wicket.markup.html.form.upload Support for upload forms (using multipart requests). 
org.apache.wicket.markup.html.link Link components. 
org.apache.wicket.markup.html.list List components for tabular data and such. 
org.apache.wicket.markup.html.navigation.paging   
org.apache.wicket.markup.html.panel Panel components. 
org.apache.wicket.markup.repeater   
org.apache.wicket.markup.resolver Resolvers implement the IComponentResolver interface and must be registered with the application. 
org.apache.wicket.util.tester A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. 
 

Uses of IGenericComponent in org.apache.wicket.ajax.markup.html
 

Classes in org.apache.wicket.ajax.markup.html that implement IGenericComponent
 class AjaxFallbackLink<T>
          An ajax link that will degrade to a normal request if ajax is not available or javascript is disabled.
 class AjaxLink<T>
          A component that allows a trigger request to be triggered via html anchor tag
 

Uses of IGenericComponent in org.apache.wicket.ajax.markup.html.form
 

Classes in org.apache.wicket.ajax.markup.html.form that implement IGenericComponent
 class AjaxButton
          A button that submits the form via ajax.
 class AjaxCheckBox
          A CheckBox which is updated via ajax when the user changes its value
 class AjaxFallbackButton
          An ajax submit button that will degrade to a normal request if ajax is not available or javascript is disabled.
 

Uses of IGenericComponent in org.apache.wicket.ajax.markup.html.navigation.paging
 

Classes in org.apache.wicket.ajax.markup.html.navigation.paging that implement IGenericComponent
 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.
 

Uses of IGenericComponent in org.apache.wicket.markup.html
 

Classes in org.apache.wicket.markup.html that implement IGenericComponent
 class GenericWebPage<T>
          A WebPage with typesafe getters and setters for the model and its underlying object
 

Uses of IGenericComponent in org.apache.wicket.markup.html.basic
 

Classes in org.apache.wicket.markup.html.basic that implement IGenericComponent
 class EnumLabel<T extends Enum<T>>
          A Label component that is used to render an enum value.
 

Uses of IGenericComponent in org.apache.wicket.markup.html.form
 

Classes in org.apache.wicket.markup.html.form that implement IGenericComponent
 class AbstractChoice<T,E>
          Abstract base class for all choice (html select) options.
 class AbstractSingleSelectChoice<T>
          Abstract base class for single-select choices.
 class AbstractTextComponent<T>
          Abstract base class for TextArea and TextField.
 class Button
          A form button.
 class Check<T>
          Component representing a single checkbox choice in a org.apache.wicket.markup.html.form.CheckGroup.
 class CheckBox
          HTML checkbox input component.
 class CheckBoxMultipleChoice<T>
          A choice subclass that shows choices via checkboxes.
 class CheckGroup<T>
          Component used to connect instances of Check components into a group.
 class DropDownChoice<T>
          A choice implemented as a dropdown menu/list.
 class EmailTextField
          A TextField for HTML5 <input> with type email.
 class Form<T>
          Container for FormComponents (such as CheckBoxes, ListChoices or TextFields).
 class FormComponent<T>
          An HTML form component knows how to validate itself.
 class FormComponentPanel<T>
          Panel (has it's own markup, defined between tags), that can act as a form component.
 class HiddenField<T>
          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
          <input type="image"> component - like Button only with an image.
 class ListChoice<T>
          Essentially a drop down choice that doesn't drop down.
 class ListMultipleChoice<T>
          A multiple choice list component.
 class NumberTextField<N extends Number & Comparable<N>>
          A TextField for HTML5 <input> with type number.
 class PasswordTextField
          A password text field component.
 class Radio<T>
          Component representing a single radio choice in a org.apache.wicket.markup.html.form.RadioGroup.
 class RadioChoice<T>
          A choice subclass that shows choices in radio style.
 class RadioGroup<T>
          Component used to connect instances of Radio components into a group.
 class RangeTextField<N extends Number & Comparable<N>>
          A TextField for HTML5 <input> with type range.
 class RequiredTextField<T>
          A text field which automatically adds a Required.
 class StatelessForm<T>
          This StatelessForm is the same as a normal form but with the statelesshint default to true.
 class TextArea<T>
          Multi-row text editing component.
 class TextField<T>
          A simple text field.
 class UrlTextField
          A TextField for HTML5 <input> with type url.
 

Uses of IGenericComponent in org.apache.wicket.markup.html.form.upload
 

Classes in org.apache.wicket.markup.html.form.upload that implement IGenericComponent
 class FileUploadField
          Form component that corresponds to a <input type="file">.
 class MultiFileUploadField
          Form component that allows the user to select multiple files to upload via a single <input type="file"/> field.
 

Uses of IGenericComponent in org.apache.wicket.markup.html.link
 

Classes in org.apache.wicket.markup.html.link that implement IGenericComponent
 class BookmarkablePageLink<T>
          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 Link<T>
          Implementation of a hyperlink component.
 class PopupCloseLink<T>
          Closes a popup window and cleans up any related session page map for the popup.
 class ResourceLink<T>
          A link to any ResourceReference.
 class StatelessLink<T>
          This link is stateless that means that the url to this link could generate a new page before the link onClick is called.
 

Uses of IGenericComponent in org.apache.wicket.markup.html.list
 

Classes in org.apache.wicket.markup.html.list that implement IGenericComponent
 class ListItem<T>
          Container that holds components in a ListView.
 class OddEvenListItem<T>
          ListItem that adds class="odd" or class="even" html attribute depending on its index.
 

Uses of IGenericComponent in org.apache.wicket.markup.html.navigation.paging
 

Classes in org.apache.wicket.markup.html.navigation.paging that implement IGenericComponent
 class PagingNavigationIncrementLink<T>
          An incremental link to a page of a PageableListView.
 class PagingNavigationLink<T>
          A link to a page of a PageableListView.
 

Uses of IGenericComponent in org.apache.wicket.markup.html.panel
 

Classes in org.apache.wicket.markup.html.panel that implement IGenericComponent
 class GenericPanel<T>
          A Panel with typesafe getters and setters for the model and its underlying object
 

Uses of IGenericComponent in org.apache.wicket.markup.repeater
 

Classes in org.apache.wicket.markup.repeater that implement IGenericComponent
 class Item<T>
          Container that holds components in a RefreshingView.
 class OddEvenItem<T>
          Item that sets class="even" or class="odd" attributes based on its index
 

Uses of IGenericComponent in org.apache.wicket.markup.resolver
 

Classes in org.apache.wicket.markup.resolver that implement IGenericComponent
static class AutoLinkResolver.AutolinkBookmarkablePageLink<T>
          Autolink components delegate component resolution to their parent components.
 

Uses of IGenericComponent in org.apache.wicket.util.tester
 

Classes in org.apache.wicket.util.tester that implement IGenericComponent
 class DummyHomePage.TestLink
          TestLink class.
 



Copyright © 2006-2013 Apache Software Foundation. All Rights Reserved.