KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > equinox > internal > launcher > Constants


1 /*******************************************************************************
2  * Copyright (c) 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * Andrew Niefer - IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.equinox.internal.launcher;
12
13 /**
14  * @author aniefer
15  *
16  */

17 public class Constants {
18     public static final String JavaDoc INTERNAL_ARCH_I386 = "i386"; //$NON-NLS-1$
19
public static final String JavaDoc INTERNAL_AMD64 = "amd64"; //$NON-NLS-1$
20
public static final String JavaDoc INTERNAL_OS_SUNOS = "SunOS"; //$NON-NLS-1$
21
public static final String JavaDoc INTERNAL_OS_LINUX = "Linux"; //$NON-NLS-1$
22
public static final String JavaDoc INTERNAL_OS_MACOSX = "Mac OS"; //$NON-NLS-1$
23
public static final String JavaDoc INTERNAL_OS_AIX = "AIX"; //$NON-NLS-1$
24
public static final String JavaDoc INTERNAL_OS_HPUX = "HP-UX"; //$NON-NLS-1$
25
public static final String JavaDoc INTERNAL_OS_QNX = "QNX"; //$NON-NLS-1$
26

27     public static final String JavaDoc ARCH_X86 = "x86";//$NON-NLS-1$
28
public static final String JavaDoc ARCH_X86_64 = "x86_64";//$NON-NLS-1$
29

30     /**
31      * Constant string (value "win32") indicating the platform is running on a
32      * Window 32-bit operating system (e.g., Windows 98, NT, 2000).
33      */

34     public static final String JavaDoc OS_WIN32 = "win32";//$NON-NLS-1$
35

36     /**
37      * Constant string (value "linux") indicating the platform is running on a
38      * Linux-based operating system.
39      */

40     public static final String JavaDoc OS_LINUX = "linux";//$NON-NLS-1$
41

42     /**
43      * Constant string (value "aix") indicating the platform is running on an
44      * AIX-based operating system.
45      */

46     public static final String JavaDoc OS_AIX = "aix";//$NON-NLS-1$
47

48     /**
49      * Constant string (value "solaris") indicating the platform is running on a
50      * Solaris-based operating system.
51      */

52     public static final String JavaDoc OS_SOLARIS = "solaris";//$NON-NLS-1$
53

54     /**
55      * Constant string (value "hpux") indicating the platform is running on an
56      * HP/UX-based operating system.
57      */

58     public static final String JavaDoc OS_HPUX = "hpux";//$NON-NLS-1$
59

60     /**
61      * Constant string (value "qnx") indicating the platform is running on a
62      * QNX-based operating system.
63      */

64     public static final String JavaDoc OS_QNX = "qnx";//$NON-NLS-1$
65

66     /**
67      * Constant string (value "macosx") indicating the platform is running on a
68      * Mac OS X operating system.
69      */

70     public static final String JavaDoc OS_MACOSX = "macosx";//$NON-NLS-1$
71

72     /**
73      * Constant string (value "unknown") indicating the platform is running on a
74      * machine running an unknown operating system.
75      */

76     public static final String JavaDoc OS_UNKNOWN = "unknown";//$NON-NLS-1$
77

78     /**
79      * Constant string (value "win32") indicating the platform is running on a
80      * machine using the Windows windowing system.
81      */

82     public static final String JavaDoc WS_WIN32 = "win32";//$NON-NLS-1$
83

84     /**
85      * Constant string (value "wpf") indicating the platform is running on a
86      * machine using the Windows Presendation Foundation system.
87      */

88     public static final String JavaDoc WS_WPF = "wpf";//$NON-NLS-1$
89

90     /**
91      * Constant string (value "motif") indicating the platform is running on a
92      * machine using the Motif windowing system.
93      */

94     public static final String JavaDoc WS_MOTIF = "motif";//$NON-NLS-1$
95

96     /**
97      * Constant string (value "gtk") indicating the platform is running on a
98      * machine using the GTK windowing system.
99      */

100     public static final String JavaDoc WS_GTK = "gtk";//$NON-NLS-1$
101

102     /**
103      * Constant string (value "photon") indicating the platform is running on a
104      * machine using the Photon windowing system.
105      */

106     public static final String JavaDoc WS_PHOTON = "photon";//$NON-NLS-1$
107

108     /**
109      * Constant string (value "carbon") indicating the platform is running on a
110      * machine using the Carbon windowing system (Mac OS X).
111      */

112     public static final String JavaDoc WS_CARBON = "carbon";//$NON-NLS-1$
113

114     /**
115      * Constant string (value "unknown") indicating the platform is running on a
116      * machine running an unknown windowing system.
117      */

118     public static final String JavaDoc WS_UNKNOWN = "unknown";//$NON-NLS-1$
119
}
120
Popular Tags