org.jvnet.lafwidget.text
Class PasswordStrengthCheckerWidget

java.lang.Object
  extended by org.jvnet.lafwidget.LafWidgetAdapter
      extended by org.jvnet.lafwidget.text.PasswordStrengthCheckerWidget
All Implemented Interfaces:
LafWidget

public class PasswordStrengthCheckerWidget
extends LafWidgetAdapter

Adds password strength indication on password fields.

Author:
Kirill Grouchnikov

Field Summary
protected  javax.swing.JPasswordField passwordField
          The associated password field.
protected  java.beans.PropertyChangeListener strengthCheckerListener
          Listens on changes to LafWidget.PASSWORD_STRENGTH_CHECKER property.
 
Fields inherited from class org.jvnet.lafwidget.LafWidgetAdapter
jcomp
 
Fields inherited from interface org.jvnet.lafwidget.LafWidget
ANIMATION_KIND, AUTO_SCROLL, 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
PasswordStrengthCheckerWidget()
           
 
Method Summary
 void installDefaults()
          Installs default settings for the associated component.
 void installListeners()
          Installs listeners for the associated component.
 boolean requiresCustomLafSupport()
          Returns indication whether this widget requires custom LAF support.
 void setComponent(javax.swing.JComponent jcomp)
          Associates a component with this widget.
 void uninstallListeners()
          Uninstalls listeners for the associated component.
 
Methods inherited from class org.jvnet.lafwidget.LafWidgetAdapter
installComponents, installUI, uninstallComponents, uninstallDefaults, uninstallUI
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

passwordField

protected javax.swing.JPasswordField passwordField
The associated password field.


strengthCheckerListener

protected java.beans.PropertyChangeListener strengthCheckerListener
Listens on changes to LafWidget.PASSWORD_STRENGTH_CHECKER property.

Constructor Detail

PasswordStrengthCheckerWidget

public PasswordStrengthCheckerWidget()
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
Overrides:
setComponent in class LafWidgetAdapter
Parameters:
jcomp - Component.

installListeners

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

Specified by:
installListeners in interface LafWidget
Overrides:
installListeners in class LafWidgetAdapter

uninstallListeners

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

Specified by:
uninstallListeners in interface LafWidget
Overrides:
uninstallListeners in class LafWidgetAdapter

installDefaults

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

Specified by:
installDefaults in interface LafWidget
Overrides:
installDefaults in class LafWidgetAdapter

requiresCustomLafSupport

public boolean requiresCustomLafSupport()
Description copied from interface: LafWidget
Returns indication whether this widget requires custom LAF support. Some widgets such as TabOverviewDialogWidget or TabHoverPreviewWidget require custom implementation based on the internals of the specific LAF. Relevant functions in the base LafWidgetSupport support throw UnsupportedOperationException.

Returns:
true if this widget requires custom LAF support, false otherwise.