Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2007-11-13 22:03:59 +0000
committerThomas Watson2007-11-13 22:03:59 +0000
commit2509129dc38cab440fe0eae0813c08d00ca573f4 (patch)
treeb27612047923c1e6b36efb5c7650d7969ecd6846
parent09bc8379b3081b369cd645ed09c31128601542b4 (diff)
downloadrt.equinox.framework-2509129dc38cab440fe0eae0813c08d00ca573f4.tar.gz
rt.equinox.framework-2509129dc38cab440fe0eae0813c08d00ca573f4.tar.xz
rt.equinox.framework-2509129dc38cab440fe0eae0813c08d00ca573f4.zip
Bug 209710 org.eclipse.osgi.service.environment.Constants should clarify its specificationv20071119
-rw-r--r--bundles/org.eclipse.osgi/eclipseAdaptor/src/org/eclipse/osgi/service/environment/Constants.java7
1 files changed, 5 insertions, 2 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 23a33b207..e52ed8b03 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
@@ -12,6 +12,9 @@ package org.eclipse.osgi.service.environment;
/**
* @since 3.0
+ * <p>
+ * This interface is not intended to be implemented by clients.
+ * </p>
*/
public interface Constants {
//TODO These constants need to be aligned with the OSGi ones. See page 64-588 of the spec
@@ -136,7 +139,7 @@ public interface Constants {
* machine using the Windows Presentation Foundation sytstem.
*/
public static final String WS_WPF = "wpf"; //$NON-NLS-1$
-
+
/**
* Constant string (value "motif") indicating the platform is running on a
* machine using the Motif windowing system.
@@ -160,7 +163,7 @@ 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.

Back to the top