Uses of Interface
conversion.Named

Packages that use Named
conversion The conversion package provides some utility classes for converting objects from one class to another. 
file The file package does not at this time have a clearcut purpose. 
gui The gui package consists of several classes that capture useful graphical user interface functionality whose implementation is complicated or requires detailed knowledge of swing that most people would rather not know. 
mvc The mvc package is an attempt to define generic model, view, and controller classes. 
 

Uses of Named in conversion
 

Classes in conversion with type parameters of type Named
 class NamedNamer<T extends Named>
          A NamedNamer names objects that implement the Named interface using their getName() method.
 

Uses of Named in file
 

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

Uses of Named in gui
 

Subinterfaces of Named in gui
 interface NamedViewable
          A NamedViewable implements both the Named interface and the Viewable interface.
 

Uses of Named in mvc
 

Subinterfaces of Named in mvc
 interface CascadedChooser<T>
           
 interface NamedModel<T>
          DOCME.
 

Classes in mvc that implement Named
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 NamerView<T>
          A NamerView displays the value of a model using a Namer to convert the value to a string.
 class NonLeafCascadedChooser<T>
           
static class RealRange.Model
          DOCME.