Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2007-08-20 19:53:57 +0000
committerThomas Watson2007-08-20 19:53:57 +0000
commit1da86ec13421a090690370580fc2759120358aa5 (patch)
tree5421b681f922dceda4c893e06c8279194301270c /bundles/org.eclipse.osgi/eclipseAdaptor
parent2f439eb74b84c1d06189d4fc0bb068ca65168f3b (diff)
downloadrt.equinox.framework-1da86ec13421a090690370580fc2759120358aa5.tar.gz
rt.equinox.framework-1da86ec13421a090690370580fc2759120358aa5.tar.xz
rt.equinox.framework-1da86ec13421a090690370580fc2759120358aa5.zip
Bug 185952 EnviromentInfo defaults ws to motif on solaris and linux
Diffstat (limited to 'bundles/org.eclipse.osgi/eclipseAdaptor')
-rw-r--r--bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java
index 15d16a8a6..9f0bd9075 100644
--- a/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java
+++ b/bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2003, 2005 IBM Corporation and others.
+ * Copyright (c) 2003, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -154,6 +154,12 @@ public interface Constants {
* machine using the Carbon windowing system (Mac OS X).
*/
public static final String WS_CARBON = "carbon";//$NON-NLS-1$
+
+ /**
+ * Constant string (value "s60") indicating the platform is running on a
+ * machine using the S60 windowing system.
+ */
+ public static final String WS_S60 = "s60";//$NON-NLS-1$
/**
* Constant string (value "unknown") indicating the platform is running on a

Back to the top