pivot.wtk
Interface TextInputListener

All Known Implementing Classes:
TerraTextInputSkin

public interface TextInputListener

Text input listener interface.

Author:
gbrown

Method Summary
 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, java.lang.String previousPrompt)
          Called when a text input's prompt has changed.
 void textKeyChanged(TextInput textInput, java.lang.String previousTextKey)
          Called when a text input's text key has changed.
 void textNodeChanged(TextInput textInput, TextNode previousTextNode)
          Called when a text input's text node 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.
 

Method Detail

textNodeChanged

void textNodeChanged(TextInput textInput,
                     TextNode previousTextNode)
Called when a text input's text node has changed.

Parameters:
textInput -
previousTextNode -

textSizeChanged

void textSizeChanged(TextInput textInput,
                     int previousTextSize)
Called when a text input's text size has changed.

Parameters:
textInput -
previousTextSize -

maximumLengthChanged

void maximumLengthChanged(TextInput textInput,
                          int previousMaximumLength)
Called when a text input's maximum length has changed.

Parameters:
textInput -
previousMaximumLength -

passwordChanged

void passwordChanged(TextInput textInput)
Called when a text input's password flag has changed.

Parameters:
textInput -

promptChanged

void promptChanged(TextInput textInput,
                   java.lang.String previousPrompt)
Called when a text input's prompt has changed.

Parameters:
textInput -
previousPrompt -

textKeyChanged

void textKeyChanged(TextInput textInput,
                    java.lang.String previousTextKey)
Called when a text input's text key has changed.

Parameters:
textInput -
previousTextKey -

textValidChanged

void textValidChanged(TextInput textInput)
Called when the text changes validity.

Parameters:
textInput -

textValidatorChanged

void textValidatorChanged(TextInput textInput,
                          Validator previousValidator)
Called when the validator changes.

Parameters:
textInput -
previousValidator -