Example usage for java.awt Robot toString

List of usage examples for java.awt Robot toString

Introduction

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

Prototype

@Override
public synchronized String toString() 

Source Link

Document

Returns a string representation of this Robot.

Usage

From source file:Main.java

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

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

}