< prev index next >

src/java.desktop/macosx/classes/sun/awt/PlatformGraphicsInfo.java

Print this page

        

*** 24,33 **** --- 24,34 ---- */ package sun.awt; import java.awt.GraphicsEnvironment; + import java.awt.Toolkit; import java.security.AccessController; import java.security.PrivilegedAction; public class PlatformGraphicsInfo {
*** 40,49 **** --- 41,54 ---- public static GraphicsEnvironment createGE() { return new CGraphicsEnvironment(); } + public static Toolkit createToolkit() { + return new sun.lwawt.macosx.LWCToolkit(); + } + /** * Returns true if the WindowServer is available, false otherwise. * * @return true if the WindowServer is available, false otherwise */
< prev index next >