Package com.intellij.ui.mac.foundation

Examples of com.intellij.ui.mac.foundation.ID


    }
  }

  @NotNull
  static String getMacTimeFormat(final int type, @NotNull final DateType dateType) {
    final ID autoReleasePool = Foundation.invoke("NSAutoreleasePool", "new");
    try {
      final ID dateFormatter = Foundation.invoke("NSDateFormatter", "new");
      Foundation.invoke(dateFormatter, Foundation.createSelector("setFormatterBehavior:"), MacFormatterBehavior_10_4);

      int style;
      switch (type) {
        case DateFormat.SHORT:
View Full Code Here

TOP

Related Classes of com.intellij.ui.mac.foundation.ID

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.