public interface WriteRobot
| Modifier and Type | Method and Description |
|---|---|
void |
write(char character)
Writes a given text character.
|
void |
write(java.lang.String text)
Writes the given text characters one after the other.
|
void |
write(java.lang.String text,
int sleepMillis)
Writes the given text characters one after the other, sleeping for
sleepMillis milliseconds after each typed character. |
void write(char character)
character - the text character to writevoid write(java.lang.String text)
text - the text characters to writevoid write(java.lang.String text,
int sleepMillis)
sleepMillis milliseconds after each typed character.text - the text characters to writesleepMillis - the milliseconds to sleep for after each
character