Uses of Interface
bibliothek.gui.dock.action.view.ViewGenerator

Packages that use ViewGenerator
bibliothek.extension.gui.dock.theme   
bibliothek.gui.dock.action.view   
 

Uses of ViewGenerator in bibliothek.extension.gui.dock.theme
 

Classes in bibliothek.extension.gui.dock.theme that implement ViewGenerator
private  class BubbleTheme.ButtonGenerator
          Generator to create views for button-actions.
private  class BubbleTheme.CheckGenerator
          Generator to create views for check-actions.
private  class BubbleTheme.DropDownGenerator
          Generator to create views for dropdown-actions.
private  class BubbleTheme.MenuGenerator
          Generator to create views for menus.
private  class BubbleTheme.RadioGenerator
          Generator to create views for radio-actions.
private  class BubbleTheme.SeparatorGenerator
          Generator to create views for separators.
 

Uses of ViewGenerator in bibliothek.gui.dock.action.view
 

Fields in bibliothek.gui.dock.action.view declared as ViewGenerator
 ViewGenerator<D,A> ActionViewConverter.Entry.clientGenerator
          generator provided by the client
 ViewGenerator<D,A> ActionViewConverter.Entry.defaultGenerator
          default generator, used if no other generator is known
 ViewGenerator<D,A> ActionViewConverter.Entry.themeGenerator
          generator provided by a DockTheme
 

Methods in bibliothek.gui.dock.action.view that return ViewGenerator
protected
<A,D extends DockAction>
ViewGenerator<D,A>
ActionViewConverter.getConverter(ActionType<D> action, ViewTarget<? super A> target)
          Searches a converter for the given action and target.
 

Methods in bibliothek.gui.dock.action.view with parameters of type ViewGenerator
<A,D extends DockAction>
void
ActionViewConverter.putClient(ActionType<D> action, ViewTarget<A> target, ViewGenerator<D,A> generator)
          Registers a new ViewGenerator to this ActionViewConverter.
<A,D extends DockAction>
void
ActionViewConverter.putDefault(ActionType<D> action, ViewTarget<A> target, ViewGenerator<D,A> generator)
          Registers a new ViewGenerator to this ActionViewConverter.
<A,D extends DockAction>
void
ActionViewConverter.putTheme(ActionType<D> action, ViewTarget<A> target, ViewGenerator<D,A> generator)
          Registers a new ViewGenerator to this ActionViewConverter.