com.isti.util.gui
Class IstiPasswordPanel.UpdateListener

java.lang.Object
  extended by com.isti.util.gui.IstiPasswordPanel.UpdateListener
All Implemented Interfaces:
java.util.EventListener, javax.swing.event.DocumentListener
Enclosing class:
IstiPasswordPanel

protected class IstiPasswordPanel.UpdateListener
extends java.lang.Object
implements javax.swing.event.DocumentListener

Update listener class.


Constructor Summary
protected IstiPasswordPanel.UpdateListener()
           
 
Method Summary
 void changedUpdate(javax.swing.event.DocumentEvent e)
          Gives notification that an attribute or set of attributes changed.
 void insertUpdate(javax.swing.event.DocumentEvent e)
          Gives notification that there was an insert into the document.
 void removeUpdate(javax.swing.event.DocumentEvent e)
          Gives notification that a portion of the document has been removed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IstiPasswordPanel.UpdateListener

protected IstiPasswordPanel.UpdateListener()
Method Detail

insertUpdate

public void insertUpdate(javax.swing.event.DocumentEvent e)
Gives notification that there was an insert into the document. The range given by the DocumentEvent bounds the freshly inserted region.

Specified by:
insertUpdate in interface javax.swing.event.DocumentListener
Parameters:
e - the document event

removeUpdate

public void removeUpdate(javax.swing.event.DocumentEvent e)
Gives notification that a portion of the document has been removed. The range is given in terms of what the view last saw (that is, before updating sticky positions).

Specified by:
removeUpdate in interface javax.swing.event.DocumentListener
Parameters:
e - the document event

changedUpdate

public void changedUpdate(javax.swing.event.DocumentEvent e)
Gives notification that an attribute or set of attributes changed.

Specified by:
changedUpdate in interface javax.swing.event.DocumentListener
Parameters:
e - the document event