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.
// w ww . j a v a 2 s.c o m
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());
}
}
Home »
Java Tutorial »
java.awt »
Java Tutorial »
java.awt »