Interface Model<T>

  • Type Parameters:
    T - the generic type of the model object
    All Superinterfaces:
    Attachable, Detachable, java.io.Serializable
    All Known Subinterfaces:
    ChainableModel<T>, PropertyReflectionAwareModel<T>, WrapModel<T>

    public interface Model<T>
    extends Attachable, Detachable
    A Model decorates the actual model object that can be used by any other UI-Component. Model implementations are used as a facade for the real model so that users have control over the actual persistence strategy.
    • Method Detail

      • getObject

        T getObject()
        Gets the model object.
        Returns:
        The model object
      • setObject

        void setObject​(T object)
        Sets the model object.
        Parameters:
        object - The model object