Uses of Interface
mvc.NamedModel

Packages that use NamedModel
file The file package does not at this time have a clearcut purpose. 
mvc The mvc package is an attempt to define generic model, view, and controller classes. 
 

Uses of NamedModel in file
 

Subinterfaces of NamedModel in file
 interface Storable<T>
          A Storable is a model that can be read from and written to a file.
 

Uses of NamedModel in mvc
 

Classes in mvc with type parameters of type NamedModel
 class CompositeModel<T,S extends NamedModel<? extends T>>
          A CompositeModel gets its value from its currently selected submodel.
 class UpdateManager<T,TM extends NamedModel<? extends T>>
          An UpdateManager manages update communication between a controller and its current model.
 

Subinterfaces of NamedModel in mvc
 interface CascadedChooser<T>
           
 

Classes in mvc that implement NamedModel
static class Choice.Model<TM>
          DOCME.
 class CompositeModel<T,S extends NamedModel<? extends T>>
          A CompositeModel gets its value from its currently selected submodel.
 class ConstantModel<T>
          A ConstantModel is a NamedModel whose value is fixed when it is constructed.
static class IntegralRange.Model
          DOCME.
 class LeafCascadedChooser<T>
           
 class NamedDirectModel<T>
          DOCME.
 class NonLeafCascadedChooser<T>
           
static class RealRange.Model
          DOCME.
 

Methods in mvc with parameters of type NamedModel
 void CompositeNotifier.addSubmodel(NamedModel<?> m)
          DOCME.
 void CompositeNotifier.removeSubmodel(NamedModel<?> m)
          DOCME.
 void PainterView.setModel(NamedModel<? extends Painter> m)
          DOCME.
 void NamerView.setModel(NamedModel<? extends T> m)
          nv.setModel(m) arranges for vw to view the value of m.
 

Constructors in mvc with parameters of type NamedModel
HTMLView(NamedModel<? extends java.net.URL> m)
          DOCME.
NamerView(NamedModel<? extends T> m)
          new NamerView(m) returns a new NamerView of model m using an ObjectNamer as a namer.
NamerView(NamedModel<? extends T> m, Namer<? super T> nmr)
          new NamerView(m, nmr) returns a new NamerView of model m using nmr as a namer.
PainterView(NamedModel<? extends Painter> m)
          DOCME.