Changeset 161 for trunk/src/plugins
- Timestamp:
- Jun 28, 2009, 5:49:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/plugins/org.eclipse.core.boot/src/org/eclipse/core/boot/BootLoader.java
r157 r161 83 83 public static final String OS_MACOSX = "macosx";//$NON-NLS-1$ 84 84 85 /** 86 * Constant string (value "os2") indicating the platform is running on a 87 * OS/2 operating system. 88 * 89 * @since 2.0 90 */ 91 public static final String OS_OS2 = "os2";//$NON-NLS-1$ 92 85 93 /** 86 94 * Constant string (value "unknown") indicating the platform is running on a … … 148 156 */ 149 157 public static final String WS_CARBON = "carbon";//$NON-NLS-1$ 158 159 /** 160 * Constant string (value "pm") indicating the platform is running on a 161 * machine using the PM windowing system (OS/2). 162 * 163 * @since 2.0 164 */ 165 public static final String WS_PM = "pm";//$NON-NLS-1$ 150 166 151 167 /** … … 168 184 OS_QNX, 169 185 OS_SOLARIS, 170 OS_WIN32 186 OS_WIN32, 187 OS_OS2 171 188 }; 172 189 private static final String[] WS_LIST = { … … 175 192 WS_MOTIF, 176 193 WS_PHOTON, 177 WS_WIN32 194 WS_WIN32, 195 WS_PM 178 196 }; 179 197 /**
Note:
See TracChangeset
for help on using the changeset viewer.