Uses of Interface
org.apache.wicket.model.IDetachable

Packages that use IDetachable
org.apache.wicket.examples.repeater   
org.apache.wicket.examples.source   
org.apache.wicket.examples.stateless   
org.apache.wicket.extensions.markup.html.repeater.data.grid   
org.apache.wicket.extensions.markup.html.repeater.data.table   
org.apache.wicket.extensions.markup.html.repeater.data.table.filter   
org.apache.wicket.extensions.markup.html.repeater.util   
org.apache.wicket.extensions.model Convenience models. 
org.apache.wicket.feedback Classes related to showing user feedback, generally as the result of form submission and/or validation. 
org.apache.wicket.markup.html.list List components for tabular data and such. 
org.apache.wicket.markup.repeater.data   
org.apache.wicket.model Core model support for Wicket components. 
org.apache.wicket.spring.annot.web   
org.apache.wicket.spring.common.web   
org.apache.wicket.spring.direct.web   
 

Uses of IDetachable in org.apache.wicket.examples.repeater
 

Classes in org.apache.wicket.examples.repeater that implement IDetachable
 class ContactDataProvider
          Implementation of IDataProvider that retrieves contacts from the contact database.
 class DetachableContactModel
          detachable model for an instance of contact
 class SortableContactDataProvider
          implementation of IDataProvider for contacts that keeps track of sort information
 

Uses of IDetachable in org.apache.wicket.examples.source
 

Classes in org.apache.wicket.examples.source that implement IDetachable
 class SourcesPage.PackagedResourcesModel
          Model for retrieving the contents of a package directory from the class path.
 class SourcesPage.SourceModel
          Model for retrieving the source code from the classpath of a packaged resource.
 

Uses of IDetachable in org.apache.wicket.examples.stateless
 

Classes in org.apache.wicket.examples.stateless that implement IDetachable
 class SessionModel
          Model that displays whether a session was created yet, and if it was, prints the session id.
 

Uses of IDetachable in org.apache.wicket.extensions.markup.html.repeater.data.grid
 

Subinterfaces of IDetachable in org.apache.wicket.extensions.markup.html.repeater.data.grid
 interface ICellPopulator
          Represents an object that is capable of populating an Item container representing a cell in a DataGridView with components.
 

Classes in org.apache.wicket.extensions.markup.html.repeater.data.grid that implement IDetachable
 class PropertyPopulator
          A convenience implementation of ICellPopulator that adds a label that will display the value of the specified property.
 

Uses of IDetachable in org.apache.wicket.extensions.markup.html.repeater.data.table
 

Subinterfaces of IDetachable in org.apache.wicket.extensions.markup.html.repeater.data.table
 interface IColumn
          An interface that represents a column in the DefaultDataTable
 interface ISortableDataProvider
          Data provider that can hold sort state
 interface IStyledColumn
          Interface that allows styling individuals DataTable columns
 

Classes in org.apache.wicket.extensions.markup.html.repeater.data.table that implement IDetachable
 class AbstractColumn
          A helper implementation for the IColumn interface
 class HeaderlessColumn
          A column that does not have a header
 class PropertyColumn
          A convenience implementation of column that adds a label to the cell whose model is determined by the provided wicket property expression (same as used by PropertyModel) that is evaluated against the current row's model object
 

Uses of IDetachable in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 

Subinterfaces of IDetachable in org.apache.wicket.extensions.markup.html.repeater.data.table.filter
 interface IFilteredColumn
          Represents a data table column that can be filtered.
 

Classes in org.apache.wicket.extensions.markup.html.repeater.data.table.filter that implement IDetachable
 class ChoiceFilteredPropertyColumn
          A filtered property column that creates a textfield filter component.
 class FilteredAbstractColumn
          A helper implementation for a filtered column.
 class FilteredPropertyColumn
          Like PropertyColumn but with support for filters.
 class TextFilteredPropertyColumn
          A filtered property column that creates a textfield filter component.
 

Uses of IDetachable in org.apache.wicket.extensions.markup.html.repeater.util
 

Classes in org.apache.wicket.extensions.markup.html.repeater.util that implement IDetachable
 class SortableDataProvider
          Convenience implementation of a data provider that can also act as a locator for a SingleSortState object.
 

Uses of IDetachable in org.apache.wicket.extensions.model
 

Classes in org.apache.wicket.extensions.model that implement IDetachable
 class AbstractCheckBoxModel
          Model adapter that makes working with models for checkboxes easier.
 

Uses of IDetachable in org.apache.wicket.feedback
 

Classes in org.apache.wicket.feedback that implement IDetachable
 class FeedbackMessage
          Represents a generic message meant for the end-user/ pages.
 class FeedbackMessagesModel
          Model for extracting feedback messages.
 

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

Classes in org.apache.wicket.markup.html.list that implement IDetachable
 class ListItemModel
          Model for list items.
 

Uses of IDetachable in org.apache.wicket.markup.repeater.data
 

Subinterfaces of IDetachable in org.apache.wicket.markup.repeater.data
 interface IDataProvider
          Interface used to provide data to data views.
 

Classes in org.apache.wicket.markup.repeater.data that implement IDetachable
 class DefaultDataProvider
           
 class EmptyDataProvider
          A convenience class to represent an empty data provider.
 class ListDataProvider
          Allows the use of lists with dataview.
 

Uses of IDetachable in org.apache.wicket.model
 

Subinterfaces of IDetachable in org.apache.wicket.model
 interface IChainingModel
          Models that implement this interface will support chaining of IModels.
 interface IComponentAssignedModel
          Models that wish to substitute themselves with a wrapper when they are bound to a component (either through IModel parameter in a constructor or via a call to Component.setModel(IModel)) should implement this interface.
 interface IComponentInheritedModel
          This is a marker interface for models that can be inherited from components higher in the hierarchy.
 interface IModel
          A IModel wraps the actual model Object used by a Component.
 interface IObjectClassAwareModel
          Interface implemented by model that can provide class of the model object.
 interface IWrapModel
          A marker interface that represents a model that serves as a wrapper for another.
 

Classes in org.apache.wicket.model that implement IDetachable
 class AbstractPropertyModel
          Serves as a base class for different kinds of property models.
 class AbstractReadOnlyModel
          AbstractReadOnlyModel is an adapter base class for implementing models which have no detach logic and are read-only.
 class AbstractWrapModel
          Simple base class for IWrapModel objects see IComponentAssignedModel or IComponentInheritedModel so that you don't have to have empty methods like detach or setObject() when not used in the wrapper.
 class BoundCompoundPropertyModel
          A compound property model that supports type conversions and property expression bindings.
 class ComponentDetachableModel
          Quick detachable model that is implements the IComponentAssignedModel and the IModel interfaces.
 class ComponentModel
          Quick model that is implements the IComponentAssignedModel and the IModel interfaces.
 class ComponentPropertyModel
          A model that references a property by name on the current model of the component it is bound to.
 class CompoundPropertyModel
          A simple compound model which uses the component's name as the property expression to retrieve properties on the nested model object.
 class LoadableDetachableModel
          Model that makes working with detachable models a breeze.
 class Model
          Model is the basic implementation of an IModel.
 class PropertyModel
          A PropertyModel is used to dynamically access a model using a "property expression".
 class ResourceModel
          A model that represents a localized resource string.
 class StringResourceModel
          This model class encapsulates the full power of localization support within the Wicket framework.
 

Uses of IDetachable in org.apache.wicket.spring.annot.web
 

Classes in org.apache.wicket.spring.annot.web that implement IDetachable
 class ProxyDataProvider
           
 class ProxyModel
           
 

Uses of IDetachable in org.apache.wicket.spring.common.web
 

Classes in org.apache.wicket.spring.common.web that implement IDetachable
 class ContactDetachableModel
          Base class for contact detachable models.
 

Uses of IDetachable in org.apache.wicket.spring.direct.web
 

Classes in org.apache.wicket.spring.direct.web that implement IDetachable
 class DirectDataProvider
           
 class DirectModel
           
 



Copyright © 2004-2010 Apache Software Foundation. All Rights Reserved.