Uses of Interface
conversion.Namer

Packages that use Namer
conversion The conversion package provides some utility classes for converting objects from one class to another. 
mvc The mvc package is an attempt to define generic model, view, and controller classes. 
 

Uses of Namer in conversion
 

Classes in conversion that implement Namer
 class ClassNameNamer
          DOCME.
 class NamedNamer<T extends Named>
          A NamedNamer names objects that implement the Named interface using their Named.getName() method.
 

Constructors in conversion with parameters of type Namer
NamerConverter(Namer<? super T> nmr)
          new NamerConverter(nmr) returns a new NamerConverter.
 

Uses of Namer in mvc
 

Classes in mvc that implement Namer
 class ObjectNamer
          A ObjectNamer names values of any type using the toString() method.
 class ViewableNamer
          A ViewableNamer names Viewable objects using the getName() method of the object's view component.
 

Constructors in mvc with parameters of type Namer
ComboBoxChooser(Choice.Model<? extends T> m, Namer<? super T> nmr)
          new ComboBoxChooser(m, cvtr) returns a new ComboBoxChooser.
ListChooser(Choice.Model<? extends T> m, Namer<? super T> nmr)
          new ListChooser(m, cvtr) returns a new ListChooser.
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.
TabbedChooser(Choice.Model<? extends T> m, Namer<? super T> nmr, int w)
          new TabbedChooser(m, cvtr, w) returns a new TabbedChooser with width w.