org.jvnet.lafwidget
Class LafWidgetAdapter

java.lang.Object
  extended by org.jvnet.lafwidget.LafWidgetAdapter
All Implemented Interfaces:
LafWidget
Direct Known Subclasses:
ComboboxAutoCompletionWidget, DesktopIconHoverPreviewWidget, EditContextMenuWidget, GhostFadeWidget, IconGlowWidget, LockBorderWidget, MenuSearchWidget, PasswordStrengthCheckerWidget, ScrollPaneSelectorWidget, SelectAllOnFocusGainWidget, SelectOnEscapeWidget, TabHoverPreviewWidget, TabOverviewDialogWidget, TabPagerWidget, TreeDragAndDropWidget

public abstract class LafWidgetAdapter
extends java.lang.Object
implements LafWidget

Base implementation of LafWidget interface.

Author:
Kirill Grouchnikov

Field Summary
protected  javax.swing.JComponent jcomp
          Associated component.
 
Fields inherited from interface org.jvnet.lafwidget.LafWidget
ANIMATION_KIND, COMBO_BOX_AUTOCOMPLETION_MATCHER, COMBO_BOX_NO_AUTOCOMPLETION, COMBO_BOX_USE_MODEL_ONLY, COMPONENT_PREVIEW_PAINTER, IGNORE_GLOBAL_LOCALE, NO_LOCK_ICON, PASSWORD_STRENGTH_CHECKER, TABBED_PANE_PREVIEW_PAINTER, TEXT_EDIT_CONTEXT_MENU, TEXT_FLIP_SELECT_ON_ESCAPE, TEXT_SELECT_ON_FOCUS, TREE_AUTO_DND_SUPPORT
 
Constructor Summary
LafWidgetAdapter()
           
 
Method Summary
 void installComponents()
          Installs components for the associated component.
 void installDefaults()
          Installs default settings for the associated component.
 void installListeners()
          Installs listeners for the associated component.
 void installUI()
          Installs UI on the associated component.
 void setComponent(javax.swing.JComponent jcomp)
          Associates a component with this widget.
 void uninstallComponents()
          Uninstalls components for the associated component.
 void uninstallDefaults()
          Uninstalls default settings for the associated component.
 void uninstallListeners()
          Uninstalls listeners for the associated component.
 void uninstallUI()
          Uninstalls UI on the associated component.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.jvnet.lafwidget.LafWidget
requiresCustomLafSupport
 

Field Detail

jcomp

protected javax.swing.JComponent jcomp
Associated component.

Constructor Detail

LafWidgetAdapter

public LafWidgetAdapter()
Method Detail

setComponent

public void setComponent(javax.swing.JComponent jcomp)
Description copied from interface: LafWidget
Associates a component with this widget.

Specified by:
setComponent in interface LafWidget
Parameters:
jcomp - Component.

installUI

public void installUI()
Description copied from interface: LafWidget
Installs UI on the associated component.

Specified by:
installUI in interface LafWidget

installComponents

public void installComponents()
Description copied from interface: LafWidget
Installs components for the associated component.

Specified by:
installComponents in interface LafWidget

installDefaults

public void installDefaults()
Description copied from interface: LafWidget
Installs default settings for the associated component.

Specified by:
installDefaults in interface LafWidget

installListeners

public void installListeners()
Description copied from interface: LafWidget
Installs listeners for the associated component.

Specified by:
installListeners in interface LafWidget

uninstallUI

public void uninstallUI()
Description copied from interface: LafWidget
Uninstalls UI on the associated component.

Specified by:
uninstallUI in interface LafWidget

uninstallComponents

public void uninstallComponents()
Description copied from interface: LafWidget
Uninstalls components for the associated component.

Specified by:
uninstallComponents in interface LafWidget

uninstallDefaults

public void uninstallDefaults()
Description copied from interface: LafWidget
Uninstalls default settings for the associated component.

Specified by:
uninstallDefaults in interface LafWidget

uninstallListeners

public void uninstallListeners()
Description copied from interface: LafWidget
Uninstalls listeners for the associated component.

Specified by:
uninstallListeners in interface LafWidget