Example usage for java.awt Robot isAutoWaitForIdle

List of usage examples for java.awt Robot isAutoWaitForIdle

Introduction

In this page you can find the example usage for java.awt Robot isAutoWaitForIdle.

Prototype

boolean isAutoWaitForIdle

To view the source code for java.awt Robot isAutoWaitForIdle.

Click Source Link

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {
    Robot robot = new Robot();

    System.out.println(robot.isAutoWaitForIdle());

}

From source file:Main.java

public static void main(String[] args) throws Exception {
    Robot robot = new Robot();

    robot.setAutoWaitForIdle(true);//from  w  ww.j a  v a2s  .  co  m
    System.out.println(robot.isAutoWaitForIdle());

}