Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2003-02-06 21:40:33 +0000
committerSteve Northover2003-02-06 21:40:33 +0000
commit996648919fbac4546f2b3bed5d75c37e50d32651 (patch)
tree28e2c805f6933e495684597d31d58e2bab9d7103
parenteb790e30d88959646fd05a3429ceff0e4e462501 (diff)
downloadeclipse.platform.swt-2128a.tar.gz
eclipse.platform.swt-2128a.tar.xz
eclipse.platform.swt-2128a.zip
*** empty log message ***v2128a
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java24
1 files changed, 24 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
index 8463519205..3c1cb2cb06 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java
@@ -730,6 +730,14 @@ public class SWT {
* <li><code>Menu</code></li>
* </ul></p>
*
+ * <p>
+ * <b>NOTE:</b> This API element is part of an interim API that is still under
+ * development and is expected to change significantly before reaching stability.
+ * It is being made available at this early stage to solicit feedback from
+ * pioneering adopters on the understanding that any code that uses this API
+ * will almost certainly be broken (repeatedly) as the API evolves.
+ * </p>
+ *
* @since 2.1
*/
public static final int LEFT_TO_RIGHT = 1 << 25;
@@ -748,6 +756,14 @@ public class SWT {
* <li><code>Menu</code></li>
* </ul></p>
*
+ * <p>
+ * <b>NOTE:</b> This API element is part of an interim API that is still under
+ * development and is expected to change significantly before reaching stability.
+ * It is being made available at this early stage to solicit feedback from
+ * pioneering adopters on the understanding that any code that uses this API
+ * will almost certainly be broken (repeatedly) as the API evolves.
+ * </p>
+ *
* @since 2.1
*/
public static final int RIGHT_TO_LEFT = 1 << 26;
@@ -759,6 +775,14 @@ public class SWT {
* <li><code>Menu</code></li>
* </ul></p>
*
+ * <p>
+ * <b>NOTE:</b> This API element is part of an interim API that is still under
+ * development and is expected to change significantly before reaching stability.
+ * It is being made available at this early stage to solicit feedback from
+ * pioneering adopters on the understanding that any code that uses this API
+ * will almost certainly be broken (repeatedly) as the API evolves.
+ * </p>
+ *
* @since 2.1
*/
public static final int MIRRORED = 1 << 27;

Back to the top