Changeset 161 for trunk/src


Ignore:
Timestamp:
Jun 28, 2009, 5:49:40 PM (16 years ago)
Author:
lpino
Message:
  • Added OS/2 constants
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/plugins/org.eclipse.core.boot/src/org/eclipse/core/boot/BootLoader.java

    r157 r161  
    8383        public static final String OS_MACOSX = "macosx";//$NON-NLS-1$
    8484
     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
    8593        /**
    8694         * Constant string (value "unknown") indicating the platform is running on a
     
    148156         */
    149157        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$
    150166
    151167        /**
     
    168184                OS_QNX,
    169185                OS_SOLARIS,
    170                 OS_WIN32
     186                OS_WIN32,
     187                OS_OS2
    171188        };
    172189        private static final String[] WS_LIST = {
     
    175192                WS_MOTIF,
    176193                WS_PHOTON,
    177                 WS_WIN32
     194                WS_WIN32,
     195                WS_PM
    178196        };
    179197/**
Note: See TracChangeset for help on using the changeset viewer.