Uses of Interface
com.fruitioninc.jwc.Model

Packages that use Model
com.fruitioninc.jwc Provides a set of graphical components for developing web applications. 
 

Uses of Model in com.fruitioninc.jwc
 

Subinterfaces of Model in com.fruitioninc.jwc
 interface ButtonModel
          Responsible for the state of a Button component.
 interface HyperLinkModel
          Responsible for the state of a HyperLink component.
 interface LabelModel
          Responsible for the state of a Label component.
 interface ListBoxModel
          Responsible for the state of a ListBox component.
 interface PageModel
          Responsible for the state of a Page component.
 interface TableModel
          Responsible for the state of a Table component.
 interface TextAreaModel
          Responsible for the state of a TextArea component.
 interface TextFieldModel
          Responsible for the state of a TextField component.
 

Classes in com.fruitioninc.jwc that implement Model
 class AbstractListBoxModel
          Partial implementation of the ListBoxModel interface.
 class AbstractModel
          Partial implementation of the Model interface.
 class AbstractTableModel
          Partial implementation of the TableModel interface.
 class AbstractThreadLocalModel
          Abstract base class for models that store their state in thread local storage.
 class DefaultButtonModel
          A ButtonModel that stores its state in member variables.
 class DefaultHyperLinkModel
          A HyperLinkModel that stores its state in member variables.
 class DefaultLabelModel
          A LabelModel that stores is state in member variables.
 class DefaultListBoxModel
          A ListBoxModel that stores it's state in member variables.
 class DefaultPageModel
          A PageModel that stores its state in member variables.
 class DefaultTableModel
          A TableModel which stores its state in member variables.
 class DefaultTextAreaModel
          A TextAreaModel that stores its state in member variables.
 class DefaultTextFieldModel
          A TextFieldModel that stores its state in member variables.
 class ThreadLocalListBoxModel
          A list box model that stores it's state in thread local storage.
 class ThreadLocalTableModel
          A table model that stores it's state in thread local storage.
 class ThreadLocalTextFieldModel
          A TextFieldModel that stores its state in thread local storage.
 

Methods in com.fruitioninc.jwc that return Model
 Model Component.getModel()
           
 

Methods in com.fruitioninc.jwc with parameters of type Model
 void Component.setModel(Model model)
           
 

Constructors in com.fruitioninc.jwc with parameters of type Model
Container(Model model, View view)
           
Container(java.lang.String name, Model model, View view)
           
Component(Model model, View view)
           
Component(java.lang.String name, Model model, View view)