Uses of Class
bibliothek.gui.dock.dockable.IconHandling

Packages that use IconHandling
bibliothek.gui.dock The five basic classes implementing Dockable and DockStation plus some supporting elements. 
bibliothek.gui.dock.common A set of classes that can be used to create basic applications. 
bibliothek.gui.dock.common.intern Classes and interfaces used internally. 
bibliothek.gui.dock.dockable Some classes related to Dockable
 

Uses of IconHandling in bibliothek.gui.dock
 

Constructors in bibliothek.gui.dock with parameters of type IconHandling
DefaultDockable(Component component, String title, Icon icon, IconHandling handling)
          Constructs a new DefaultDockable, sets the icon and the title, and places a component.
 

Uses of IconHandling in bibliothek.gui.dock.common
 

Constructors in bibliothek.gui.dock.common with parameters of type IconHandling
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Icon icon, IconHandling iconHandling, String title, Component content, DefaultCDockable.Permissions permissions, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, Icon icon, IconHandling iconHandling, String title, Component content, DefaultCDockable.Permissions permissions, CAction... actions)
          Creates a new dockable.
 

Uses of IconHandling in bibliothek.gui.dock.common.intern
 

Methods in bibliothek.gui.dock.common.intern that return IconHandling
 IconHandling DefaultCDockable.getTitleIconHandling()
          Gets the behavior of DefaultCDockable.setTitleIcon(Icon).
 

Methods in bibliothek.gui.dock.common.intern with parameters of type IconHandling
 void DefaultCDockable.setTitleIconHandling(IconHandling handling)
          Sets the behavior of DefaultCDockable.setTitleIcon(Icon) in case of a null argument.
 

Uses of IconHandling in bibliothek.gui.dock.dockable
 

Methods in bibliothek.gui.dock.dockable that return IconHandling
 IconHandling AbstractDockable.getTitleIconHandling()
          Tells how a null title icon is handled.
static IconHandling IconHandling.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IconHandling[] IconHandling.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in bibliothek.gui.dock.dockable with parameters of type IconHandling
 void AbstractDockable.setTitleIconHandling(IconHandling titleIconHandling)
          Sets the behavior of how the title icon is handled, whether it is replaced by the default icon if null or simply not shown.
Calling this method does not have any effect, rather the behavior of AbstractDockable.setTitleIcon(Icon) is changed.