Uses of Interface
org.apache.wicket.model.IDetachable
-
Packages that use IDetachable Package Description 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.form HTML Forms and form components.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.model.util -
-
Uses of IDetachable in org.apache.wicket.feedback
Classes in org.apache.wicket.feedback that implement IDetachable Modifier and Type Class Description classFeedbackMessageRepresents a generic message meant for the end-user/ pages.classFeedbackMessagesModelModel for extracting feedback messages. -
Uses of IDetachable in org.apache.wicket.markup.html.form
Subinterfaces of IDetachable in org.apache.wicket.markup.html.form Modifier and Type Interface Description interfaceIChoiceRenderer<T>Renders one choice.Classes in org.apache.wicket.markup.html.form that implement IDetachable Modifier and Type Class Description classChoiceRenderer<T>Renders one choice.classEnumChoiceRenderer<T extends java.lang.Enum<T>>IChoiceRendererimplementation that makes it easy to work with java 5 enums. -
Uses of IDetachable in org.apache.wicket.markup.html.list
Classes in org.apache.wicket.markup.html.list that implement IDetachable Modifier and Type Class Description classListItemModel<T>Model for list items. -
Uses of IDetachable in org.apache.wicket.markup.repeater.data
Subinterfaces of IDetachable in org.apache.wicket.markup.repeater.data Modifier and Type Interface Description interfaceIDataProvider<T>Interface used to provide data to data views.Classes in org.apache.wicket.markup.repeater.data that implement IDetachable Modifier and Type Class Description classEmptyDataProvider<T>A convenience class to represent an empty data provider.classListDataProvider<T extends java.io.Serializable>Allows the use of lists withDataView. -
Uses of IDetachable in org.apache.wicket.model
Subinterfaces of IDetachable in org.apache.wicket.model Modifier and Type Interface Description interfaceIComponentAssignedModel<T>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 toComponent.setDefaultModel(IModel)) should implement this interface.interfaceIComponentInheritedModel<T>This is a marker interface for models that can be inherited from components higher in the hierarchy.interfaceIModel<T>A IModel wraps the actual model Object used by a Component.interfaceIObjectClassAwareModel<T>Interface implemented by model that can provide class of the model object.interfaceIPropertyReflectionAwareModel<T>Optional interface implemented by models that are able to provide reflection information about object property they interact with.interfaceIWrapModel<T>A marker interface that represents a model that serves as a wrapper for another.Classes in org.apache.wicket.model that implement IDetachable Modifier and Type Class Description classAbstractPropertyModel<T>Serves as a base class for different kinds of property models.classAbstractWrapModel<T>Simple base class for IWrapModel objects seeIComponentAssignedModelorIComponentInheritedModelso that you don't have to have empty methods like detach or setObject() when not used in the wrapper.classChainingModel<T>Default implementation of IChainingModelclassComponentDetachableModel<T>Quick detachable model that is implements the IComponentAssignedModel and the IModel interfaces.classComponentModel<T>Quick model that is implements the IComponentAssignedModel and the IModel interfaces.classComponentPropertyModel<T>A model that references a property by name on the current model of the component it is bound to.classCompoundPropertyModel<T>A simple compound model which uses the component's name as the property expression to retrieve properties on the nested model object.classLambdaModel<T>LambdaModelis a basic implementation of anIModelthat uses a serializableSupplierto get the object andConsumerto set it.classLoadableDetachableModel<T>Model that makes working with detachable models a breeze.classModel<T extends java.io.Serializable>Modelis the basic implementation of anIModel.classPropertyModel<T>A PropertyModel is used to dynamically access a model using a "property expression".classResourceModelA model that represents a localized resource string.classStringResourceModelThis model class encapsulates the full power of localization support within the Wicket framework. -
Uses of IDetachable in org.apache.wicket.model.util
Classes in org.apache.wicket.model.util that implement IDetachable Modifier and Type Class Description classCollectionModel<T>Based onModelbut for any collections of serializable objects.classGenericBaseModel<T>Base class for models that contain instances that do not appear to be serializable and cannot thus useModeldirectly.classListModel<T>Based onModelbut for lists of serializable objects.classMapModel<K,V>Based onModelbut for maps of serializable objects.classSetModel<T>Based onModelbut for sets of serializable objects.
-