org.apache.pivot.wtk
Class TextInputListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.TextInputListener.Adapter
All Implemented Interfaces:
TextInputListener
Enclosing interface:
TextInputListener

public static class TextInputListener.Adapter
extends Object
implements TextInputListener

Text input listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.TextInputListener
TextInputListener.Adapter
 
Constructor Summary
TextInputListener.Adapter()
           
 
Method Summary
 void editableChanged(TextInput textInput)
          Called when the editable state has changed.
 void maximumLengthChanged(TextInput textInput, int previousMaximumLength)
          Called when a text input's maximum length has changed.
 void passwordChanged(TextInput textInput)
          Called when a text input's password flag has changed.
 void promptChanged(TextInput textInput, String previousPrompt)
          Called when a text input's prompt has changed.
 void strictValidationChanged(TextInput textInput)
          Called when a text input's strict validation flag has changed.
 void textSizeChanged(TextInput textInput, int previousTextSize)
          Called when a text input's text size has changed.
 void textValidatorChanged(TextInput textInput, Validator previousValidator)
          Called when the validator changes.
 void textValidChanged(TextInput textInput)
          Called when the text changes validity.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TextInputListener.Adapter

public TextInputListener.Adapter()
Method Detail

textSizeChanged

public void textSizeChanged(TextInput textInput,
                            int previousTextSize)
Description copied from interface: TextInputListener
Called when a text input's text size has changed.

Specified by:
textSizeChanged in interface TextInputListener

maximumLengthChanged

public void maximumLengthChanged(TextInput textInput,
                                 int previousMaximumLength)
Description copied from interface: TextInputListener
Called when a text input's maximum length has changed.

Specified by:
maximumLengthChanged in interface TextInputListener

passwordChanged

public void passwordChanged(TextInput textInput)
Description copied from interface: TextInputListener
Called when a text input's password flag has changed.

Specified by:
passwordChanged in interface TextInputListener

promptChanged

public void promptChanged(TextInput textInput,
                          String previousPrompt)
Description copied from interface: TextInputListener
Called when a text input's prompt has changed.

Specified by:
promptChanged in interface TextInputListener

textValidatorChanged

public void textValidatorChanged(TextInput textInput,
                                 Validator previousValidator)
Description copied from interface: TextInputListener
Called when the validator changes.

Specified by:
textValidatorChanged in interface TextInputListener

strictValidationChanged

public void strictValidationChanged(TextInput textInput)
Description copied from interface: TextInputListener
Called when a text input's strict validation flag has changed.

Specified by:
strictValidationChanged in interface TextInputListener

textValidChanged

public void textValidChanged(TextInput textInput)
Description copied from interface: TextInputListener
Called when the text changes validity.

Specified by:
textValidChanged in interface TextInputListener

editableChanged

public void editableChanged(TextInput textInput)
Description copied from interface: TextInputListener
Called when the editable state has changed.

Specified by:
editableChanged in interface TextInputListener