Interface ModelView<M>

  • All Superinterfaces:
    Verifiable

    @Deprecated
    public interface ModelView<M>
    extends Verifiable
    Deprecated.
    Represents a view of a model.
    Author:
    Garret Wilson
    • Method Detail

      • getModel

        M getModel()
        Deprecated.
        Returns the view data model.

        A calling program should first call Verifiable.verify() to ensure the data is valid and that the model reflects the currently entered data.

        Returns:
        The data model for which this component provides a view.
        See Also:
        Verifiable.verify()
      • setModel

        void setModel​(M newModel)
        Deprecated.
        Sets the data model.
        Parameters:
        newModel - The data model for which this object provides a view.