Methods Summary |
---|
public void | clear(int num)Clear the particular number of symbols
|
public void | commit(java.lang.String input)Called by an InputMode in order to automatically commit the given
input to the Text component. For example, when the timer expires
in an AlphaNumeric InputMode it will commit the current pending
character.
|
public int | getAvailableSize()Returns the available size (number of characters) that can be
stored in this TextInputComponent .
|
public void | inputModeCompleted()Called by an InputMode in order to signal that the input process
has been completed with respect to the InputMode. Subsequent key
input should be handled in a new input session, possibly by the
same InputMode or by a different InputMode alltogether. For example,
when the timer expires in an AlphaNumeric InputMode, the character
is committed and the AlphaNumeric InputMode signals its completion.
Further key input may start a new session with the AlphaNumeric
InputMode or possibly some other InputMode.
|
public boolean | isClearKey(int keyCode)Returns true if the keyCode is used as 'clear'
|
public void | subInputModeChanged()Called by an InputMode to inform a TextComponent of a sub-inputMode
change.
|