本文整理了Java中org.jdesktop.swingx.util.OS.isLinux()
方法的一些代码示例,展示了OS.isLinux()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OS.isLinux()
方法的具体详情如下:
包路径:org.jdesktop.swingx.util.OS
类名称:OS
方法名:isLinux
暂无
代码示例来源:origin: org.swinglabs.swingx/swingx-all
/**
* {@inheritDoc}
*/
@Override
protected boolean isSystemAddon() {
return OS.isLinux();
}
代码示例来源:origin: org.swinglabs.swingx/swingx-plaf
/**
* {@inheritDoc}
*/
@Override
protected boolean isSystemAddon() {
return OS.isLinux();
}
代码示例来源:origin: org.bidib.jbidib.swinglabs.swingx/swingx-plaf
/**
* {@inheritDoc}
*/
@Override
protected boolean isSystemAddon() {
return OS.isLinux();
}
代码示例来源:origin: org.codehaus.jtstand/jtstand-desktop
/**
* Gets the addon best suited for the operating system where the
* virtual machine is running.
*
* @return the addon matching the native operating system platform.
*/
public static String getSystemAddonClassName() {
String addon = WindowsClassicLookAndFeelAddons.class.getName();
if (OS.isMacOSX()) {
addon = MacOSXLookAndFeelAddons.class.getName();
} else if (OS.isWindows()) {
// see whether of not visual styles are used
if (OS.isUsingWindowsVisualStyles()) {
addon = WindowsLookAndFeelAddons.class.getName();
} else {
addon = WindowsClassicLookAndFeelAddons.class.getName();
}
} else if (OS.isLinux()) {
addon = LinuxLookAndFeelAddons.class.getName();
}
return addon;
}
代码示例来源:origin: org.bidib.jbidib.swinglabs.swingx/swingx-common
/**
* Issue 1260-swingx: NPE in static initializer of OS
*/
@Test
public void testOSNPE() {
String oldProperty = System.getProperty("os.name");
try {
if (oldProperty != null) {
System.clearProperty("os.name");
assertNull(System.getProperty("os.name"));
}
OS.isLinux();
} finally {
if (oldProperty != null) {
System.setProperty("os.name", oldProperty);
assertEquals(oldProperty, System.getProperty("os.name"));
}
}
}
内容来源于网络,如有侵权,请联系作者删除!