GraphicsConfiguration.isTranslucencyCapable() has the following syntax.
public boolean isTranslucencyCapable()
In the following code shows how to use GraphicsConfiguration.isTranslucencyCapable() method.
//www.j av a2 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.isTranslucencyCapable()); } }
The code above generates the following result.