Uses of Class
bibliothek.gui.dock.action.ActionType

Packages that use ActionType
bibliothek.gui.dock.action The components dealing with the logic of DockActions. 
bibliothek.gui.dock.action.actions Contains a set of different DockActions and supporting classes. 
bibliothek.gui.dock.action.view Classes to create a views for DockActions. 
 

Uses of ActionType in bibliothek.gui.dock.action
 

Fields in bibliothek.gui.dock.action declared as ActionType
static ActionType<ButtonDockAction> ActionType.BUTTON
          The action behaves like a button: it can be triggered, some action happens, and the original state is reestablished.
static ActionType<SelectableDockAction> ActionType.CHECK
          The action behaves like a checkbox: when it is triggered, it changes it's state from selected to unselected, or vice versa.
static ActionType<DropDownAction> ActionType.DROP_DOWN
          Represents a drop down action.
static ActionType<MenuDockAction> ActionType.MENU
          The action is a group of other actions which are shown as soon as someone triggers the action.
static ActionType<SelectableDockAction> ActionType.RADIO
          The action behaves like a radiobutton: when it is triggered, it changes to the selected-state, but some other actions may change to the unselected-state
static ActionType<SeparatorAction> ActionType.SEPARATOR
          Represents a separator.
 

Uses of ActionType in bibliothek.gui.dock.action.actions
 

Constructors in bibliothek.gui.dock.action.actions with parameters of type ActionType
GroupedSelectableDockAction(GroupKeyGenerator<? extends K> generator, ActionType<SelectableDockAction> type)
          Creates a new action.
SimpleSelectableAction(ActionType<SelectableDockAction> type)
          Creates a new action.
 

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

Methods in bibliothek.gui.dock.action.view with parameters of type ActionType
<A,D extends DockAction>
A
ActionViewConverter.createView(ActionType<D> type, D action, ViewTarget<A> target, Dockable dockable)
          Creates and sets up a new view.
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.
<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.