-
- All Known Implementing Classes:
WriteRobotImpl
public interface WriteRobot
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(char character)Writes a given text character.voidwrite(String text)Writes the given text characters one after the other.voidwrite(String text, int sleepMillis)Writes the given text characters one after the other, sleeping forsleepMillismilliseconds after each typed character.
-
-
-
Method Detail
-
write
void write(char character)
Writes a given text character.- Parameters:
character- the text character to write
-
write
void write(String text)
Writes the given text characters one after the other.- Parameters:
text- the text characters to write
-
write
void write(String text, int sleepMillis)
Writes the given text characters one after the other, sleeping forsleepMillismilliseconds after each typed character.- Parameters:
text- the text characters to writesleepMillis- the milliseconds to sleep for after each character
-
-