当前位置: 首页>>代码示例>>Java>>正文


Java JavaAWTAccess.getAppletContext方法代码示例

本文整理汇总了Java中sun.misc.JavaAWTAccess.getAppletContext方法的典型用法代码示例。如果您正苦于以下问题:Java JavaAWTAccess.getAppletContext方法的具体用法?Java JavaAWTAccess.getAppletContext怎么用?Java JavaAWTAccess.getAppletContext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sun.misc.JavaAWTAccess的用法示例。


在下文中一共展示了JavaAWTAccess.getAppletContext方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getUserContext

import sun.misc.JavaAWTAccess; //导入方法依赖的package包/类
private LoggerContext getUserContext() {
    LoggerContext context = null;

    SecurityManager sm = System.getSecurityManager();
    JavaAWTAccess javaAwtAccess = SharedSecrets.getJavaAWTAccess();
    if (sm != null && javaAwtAccess != null) {
        // for each applet, it has its own LoggerContext isolated from others
        final Object ecx = javaAwtAccess.getAppletContext();
        if (ecx != null) {
            synchronized (javaAwtAccess) {
                // find the AppContext of the applet code
                // will be null if we are in the main app context.
                if (contextsMap == null) {
                    contextsMap = new WeakHashMap<>();
                }
                context = contextsMap.get(ecx);
                if (context == null) {
                    // Create a new LoggerContext for the applet.
                    context = new LoggerContext();
                    contextsMap.put(ecx, context);
                }
            }
        }
    }
    // for standalone app, return userContext
    return context != null ? context : userContext;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:28,代码来源:LogManager.java

示例2: getUserContext

import sun.misc.JavaAWTAccess; //导入方法依赖的package包/类
private LoggerContext getUserContext() {
    LoggerContext context = null;

    SecurityManager sm = System.getSecurityManager();
    JavaAWTAccess javaAwtAccess = SharedSecrets.getJavaAWTAccess();
    if (sm != null && javaAwtAccess != null) {
        // for each applet, it has its own LoggerContext isolated from others
        synchronized (javaAwtAccess) {
            // find the AppContext of the applet code
            // will be null if we are in the main app context.
            final Object ecx = javaAwtAccess.getAppletContext();
            if (ecx != null) {
                if (contextsMap == null) {
                    contextsMap = new WeakHashMap<>();
                }
                context = contextsMap.get(ecx);
                if (context == null) {
                    // Create a new LoggerContext for the applet.
                    // The new logger context has its requiresDefaultLoggers
                    // flag set to true - so that these loggers will be
                    // lazily added when the context is firt accessed.
                    context = new LoggerContext(true);
                    contextsMap.put(ecx, context);
                }
            }
        }
    }
    // for standalone app, return userContext
    return context != null ? context : userContext;
}
 
开发者ID:ZhaoX,项目名称:jdk-1.7-annotated,代码行数:31,代码来源:LogManager.java

示例3: getUserContext

import sun.misc.JavaAWTAccess; //导入方法依赖的package包/类
private LoggerContext getUserContext() {
    LoggerContext context = null;

    SecurityManager sm = System.getSecurityManager();
    JavaAWTAccess javaAwtAccess = SharedSecrets.getJavaAWTAccess();
    if (sm != null && javaAwtAccess != null) {
        // for each applet, it has its own LoggerContext isolated from others
        synchronized (javaAwtAccess) {
            // find the AppContext of the applet code
            // will be null if we are in the main app context.
            final Object ecx = javaAwtAccess.getAppletContext();
            if (ecx != null) {
                if (contextsMap == null) {
                    contextsMap = new WeakHashMap<>();
                }
                context = contextsMap.get(ecx);
                if (context == null) {
                    // Create a new LoggerContext for the applet.
                    context = new LoggerContext();
                    contextsMap.put(ecx, context);
                }
            }
        }
    }
    // for standalone app, return userContext
    return context != null ? context : userContext;
}
 
开发者ID:RedlineResearch,项目名称:OLD-OpenJDK8,代码行数:28,代码来源:LogManager.java


注:本文中的sun.misc.JavaAWTAccess.getAppletContext方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。