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


Java Configuration.isMacOS方法代码示例

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


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

示例1: main

import gov.nasa.worldwind.Configuration; //导入方法依赖的package包/类
public static void main( String[] args) {
	if (Configuration.isMacOS()) {
		System.setProperty("com.apple.mrj.application.apple.menu.about.name", "GeoMapApp");
	}
	com.Ostermiller.util.Browser.init();

	WWMapApp.main(args);
}
 
开发者ID:iedadata,项目名称:geomapapp,代码行数:9,代码来源:WWWrapper.java

示例2: start

import gov.nasa.worldwind.Configuration; //导入方法依赖的package包/类
public static AppFrame start(String appName, Class appFrameClass)
{
    if (Configuration.isMacOS() && appName != null)
    {
        System.setProperty("com.apple.mrj.application.apple.menu.about.name", appName);
    }

    try
    {
        final AppFrame frame = (AppFrame) appFrameClass.newInstance();
        frame.setTitle(appName);

        // SEG -- CHANGED didn't want full app to be closed
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);

        java.awt.EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                frame.setVisible(true);
            }
        });

        return frame;
    }
    catch (Exception e)
    {
        e.printStackTrace();
        return null;
    }
}
 
开发者ID:FracturedPlane,项目名称:GpsdInspector,代码行数:32,代码来源:BulkDownload_GPS.java

示例3: main

import gov.nasa.worldwind.Configuration; //导入方法依赖的package包/类
public static void main( String[] args ) throws Exception {
    if (Configuration.isMacOS() && APPNAME != null) {
        System.setProperty("com.apple.mrj.application.apple.menu.about.name", APPNAME);
    }

    GuiUtilities.setDefaultLookAndFeel();

    Logger.INSTANCE.init();
    openNww(APPNAME, -1);

}
 
开发者ID:TheHortonMachine,项目名称:hortonmachine,代码行数:12,代码来源:SimpleNwwViewer.java

示例4: SherpaGui

import gov.nasa.worldwind.Configuration; //导入方法依赖的package包/类
private SherpaGui() {
    System.setProperty("java.net.useSystemProxies", "true");
    if (Configuration.isMacOS()) {
        System.setProperty("apple.laf.useScreenMenuBar", "true");
        System.setProperty("com.apple.mrj.application.apple.menu.about.name", "World Wind Application");
        System.setProperty("com.apple.mrj.application.growbox.intrudes", "false");
        System.setProperty("apple.awt.brushMetalLook", "true");
        System.setProperty("com.apple.mrj.application.apple.menu.about.name", APP_NAME);
    } else if (Configuration.isWindowsOS()) {
        /*
         * prevents flashing during window resizing
         */
        System.setProperty("sun.awt.noerasebackground", "true");
    }
}
 
开发者ID:ofmooseandmen,项目名称:sherpa,代码行数:16,代码来源:SherpaGui.java


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