1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-15 19:22:45 +03:00

Added test for "Decrease Indent with 1 char on the last line"

See #1271
This commit is contained in:
Cristian Maglie
2013-02-27 13:34:52 +01:00
parent 5e17ae84a2
commit d246ca06ab
4 changed files with 19 additions and 2 deletions

View File

@@ -40,4 +40,15 @@ public class JEditTextAreaComponentDriver extends JComponentDriver {
});
}
public JEditTextArea selectAll(final JEditTextArea target) {
return GuiActionRunner.execute(new GuiQuery<JEditTextArea>() {
protected JEditTextArea executeInEDT() {
target.selectAll();
return target;
}
});
}
}