nativescreeninfo.java

来自「JAVA3D矩陈的相关类」· Java 代码 · 共 70 行

JAVA
70
字号
/* * $RCSfile: NativeScreenInfo.java,v $ * * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved. * * Use is subject to license terms. * * $Revision: 1.1 $ * $Date: 2007/05/16 22:34:10 $ * $State: Exp $ */package javax.media.j3d;import java.awt.GraphicsDevice;/** * Native screen info class. A singleton instance of the appropriate * concrete subclass is created by a factory method using reflection. */abstract class NativeScreenInfo {    private static final String x11ClassName = "javax.media.j3d.X11NativeScreenInfo";    private static final String win32ClassName = "javax.media.j3d.Win32NativeScreenInfo";    // The singleton instance of this class    private static NativeScreenInfo nativeScreenInfo = null;    protected NativeScreenInfo() {    }    // This method is called exactly once by the initialization method of    // the NativePipeline class    synchronized static void createNativeScreenInfo() {        String className;        if (MasterControl.isWindows()) {            className = win32ClassName;        } else {            className = x11ClassName;        }        final String scrInfoClassName = className;        nativeScreenInfo = (NativeScreenInfo)            java.security.AccessController.doPrivileged(new                java.security.PrivilegedAction() {                    public Object run() {                        try {                            Class scrInfoClass = Class.forName(scrInfoClassName);                            return scrInfoClass.newInstance();                        } catch (Exception e) {                            throw new RuntimeException(e);                        }                    }                });    }    static NativeScreenInfo getNativeScreenInfo() {        return nativeScreenInfo;    }    /**     * Get the display handle     */    abstract long getDisplay();    /**     * Get the screen number for the given graphics device     */    abstract int getScreen(GraphicsDevice graphicsDevice);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?