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 lastType is this the last character to type
(final char c, final boolean lastType)
| 807 | * @param lastType is this the last character to type |
| 808 | */ |
| 809 | protected void doType(final char c, final boolean lastType) { |
| 810 | final DomText domText = getDoTypeNode(); |
| 811 | if (domText != null) { |
| 812 | domText.doType(c, this, lastType); |
| 813 | } |
| 814 | } |
| 815 | |
| 816 | /** |
| 817 | * Performs the effective type action, called after the keyPress event and before the keyUp event. |
no test coverage detected