Uses of Interface
edu.neu.ccs.gui.GeneralView

Packages that use GeneralView
edu.neu.ccs.gui Provides classes and interfaces for designing and implementing graphical interfaces and for the creation of paintable and mutatable objects.. 
 

Uses of GeneralView in edu.neu.ccs.gui
 

Classes in edu.neu.ccs.gui that implement GeneralView
 class DropdownView
          A GeneralView for the selection of one of various provided String items or, if editable, a choice entered by the user.
 class GeneralViewWrapper
          Wrapper for a GeneralView that uses a CenterLayout and faithfully respects minimum, maximum, and preferred sizes.
 class TextFieldView
          A GeneralView for input of Stringable objects or elements of the data state of a Stringable object.
 

Methods in edu.neu.ccs.gui that return GeneralView
 GeneralView TextFieldView.makeCopy()
          Returns a new text field view with the same font, preferred width, data type, view state, default view state, initial input properties, stringable filter, and auto-select setting as this text field view.
 GeneralView GeneralViewWrapper.makeCopy()
          Returns a new GeneralViewWrapper that wraps a copy of the wrapped GeneralView encapsulated in this view.
 GeneralView GeneralViewWrapper.getWrappedGeneralView()
          Returns the wrapped general view.
 GeneralView GeneralViewSupport.getView()
          Returns the view that uses this GeneralViewSupport object.
 GeneralView GeneralView.makeCopy()
          Returns a copy of this GeneralView.
 GeneralView DropdownView.makeCopy()
          Returns a new dropdown view with the same item list, font, preferred width, minimum width, data type, view state, default view state, initial input properties, stringable filter, and editable state as this dropdown view.
 

Methods in edu.neu.ccs.gui with parameters of type GeneralView
 void GeneralViewWrapper.setWrappedGeneralView(GeneralView view)
          Sets the wrapped general view to the given GeneralView.
 

Constructors in edu.neu.ccs.gui with parameters of type GeneralView
GeneralViewWrapper(GeneralView view)
          Constructs a wrapper for the given GeneralView.
GeneralViewSupport(GeneralView view, EventListenerList listenerList, Class dataType, String errorPrompt, String dialogTitle, String suggestion)
          The constructor.