Performs the effective type action, called after the keyPress event and before the keyUp event. @param c the character you with to simulate typing @param htmlElement the element in which typing occurs @param lastType is this the last character to type
(final char c, final HtmlElement htmlElement, final boolean lastType)
| 160 | * @param lastType is this the last character to type |
| 161 | */ |
| 162 | protected void doType(final char c, final HtmlElement htmlElement, final boolean lastType) { |
| 163 | initDoTypeProcessor(); |
| 164 | doTypeProcessor_.doType(getData(), selectionDelegate_, c, htmlElement, lastType); |
| 165 | } |
| 166 | |
| 167 | /** |
| 168 | * Performs the effective type action, called after the keyPress event and before the keyUp event. |
no test coverage detected