Java Swing Tutorial - Java GraphicsConfiguration .getDevice ()








Syntax

GraphicsConfiguration.getDevice() has the following syntax.

public abstract GraphicsDevice getDevice()

Example

In the following code shows how to use GraphicsConfiguration.getDevice() method.

/*from  w  ww. j a  v  a  2  s. c  om*/
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;

public class Main {
    public static void main(String[] argv) {
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        GraphicsDevice gs = ge.getDefaultScreenDevice();
        GraphicsConfiguration gc = gs.getDefaultConfiguration();
        System.out.println(gc.getDevice());
    }
}

The code above generates the following result.