當前位置: 首頁>>代碼示例>>Java>>正文


Java SystemInfo.isWinVistaOrNewer方法代碼示例

本文整理匯總了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())));
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:25,代碼來源:DateFormatUtilTest.java

示例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;
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:12,代碼來源:OrderEntryAppearanceServiceImpl.java


注:本文中的com.intellij.openapi.util.SystemInfo.isWinVistaOrNewer方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。