adding EXPERIMENTAL notice to launch options API
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchManager.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchManager.java
index 3b8ade6..f6ed555 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchManager.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchManager.java
@@ -228,6 +228,12 @@
 	 * Returns the launch option registered with the given id
 	 * @param optionId the unique id of the launch option
 	 * @return the lauch option associated with ther specified id or <code>null</code> if not found
+	 * <p>
+	 * <strong>EXPERIMENTAL</strong>. This ,method has been added as
+	 * part of a work in progress. There is no guarantee that this API will
+	 * remain unchanged during the 3.3 release cycle. Please do not use this API
+	 * without consulting with the Platform/Debug team.
+	 * </p>
 	 * @since 3.3
 	 */
 	public ILaunchOption getLaunchOption(String optionId);
@@ -235,6 +241,12 @@
 	/**
 	 * Returns all registered launch options
 	 * @return all registered launch options
+	 * <p>
+	 * <strong>EXPERIMENTAL</strong>. This ,method has been added as
+	 * part of a work in progress. There is no guarantee that this API will
+	 * remain unchanged during the 3.3 release cycle. Please do not use this API
+	 * without consulting with the Platform/Debug team.
+	 * </p>
 	 * @since 3.3
 	 */
 	public ILaunchOption[] getLaunchOptions();
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchOption.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchOption.java
index c499fdf..edf2571 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchOption.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/ILaunchOption.java
@@ -27,7 +27,12 @@
  * </pre>
  * 
  * Clients are NOT intended to implement this interface
- * 
+ * <p>
+ * <strong>EXPERIMENTAL</strong>. This class or interface has been added as
+ * part of a work in progress. There is no guarantee that this API will
+ * remain unchanged during the 3.3 release cycle. Please do not use this API
+ * without consulting with the Platform/Debug team.
+ * </p>
  * @since 3.3
  *
  */