本文整理匯總了Java中com.intellij.openapi.util.SystemInfo.isWinVistaOrNewer方法的典型用法代碼示例。如果您正苦於以下問題:Java SystemInfo.isWinVistaOrNewer方法的具體用法?Java SystemInfo.isWinVistaOrNewer怎麽用?Java SystemInfo.isWinVistaOrNewer使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.intellij.openapi.util.SystemInfo
的用法示例。
在下文中一共展示了SystemInfo.isWinVistaOrNewer方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testTime
import com.intellij.openapi.util.SystemInfo; //導入方法依賴的package包/類
@Test
public void testTime() throws Exception {
Clock.setTime(2004, Calendar.DECEMBER, 10, 17, 10, 15);
if (SystemInfo.isMac) {
assertEquals("17:10", DateFormatUtil.formatTime(Clock.getTime()));
assertEquals("17:10:15", DateFormatUtil.formatTimeWithSeconds(Clock.getTime()));
}
else if (SystemInfo.isUnix) {
assertEquals("5:10:15 PM", printTimeForLocale("en_US.UTF-8", Clock.getTime()));
assertEquals("17:10:15", printTimeForLocale("de_DE.UTF-8", Clock.getTime()));
}
else if (SystemInfo.isWinVistaOrNewer) {
GregorianCalendar c = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
c.set(2004, Calendar.DECEMBER, 10, 17, 10, 15);
assertEquals(printWindowsTime(c.getTimeInMillis()), DateFormatUtil.formatTimeWithSeconds(Clock.getTime()));
}
else {
assertEquals(DateFormat.getTimeInstance(DateFormat.SHORT).format(Clock.getTime()),
DateFormatUtil.formatTime(Clock.getTime()));
assertEquals(DateFormat.getTimeInstance(DateFormat.MEDIUM).format(Clock.getTime()),
DateFormatUtil.formatTimeWithSeconds(new Date(Clock.getTime())));
}
}
示例2: getTextAttributes
import com.intellij.openapi.util.SystemInfo; //導入方法依賴的package包/類
private static SimpleTextAttributes getTextAttributes(final boolean valid, final boolean selected) {
if (!valid) {
return SimpleTextAttributes.ERROR_ATTRIBUTES;
}
else if (selected && !(SystemInfo.isWinVistaOrNewer && UIManager.getLookAndFeel().getName().contains("Windows"))) {
return SimpleTextAttributes.SELECTED_SIMPLE_CELL_ATTRIBUTES;
}
else {
return SimpleTextAttributes.SIMPLE_CELL_ATTRIBUTES;
}
}