summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/common
diff options
context:
space:
mode:
authorMarkus Keller <markus_keller@ch.ibm.com>2013-03-18 15:36:32 +0100
committerMarkus Keller <markus_keller@ch.ibm.com>2013-03-18 15:36:32 +0100
commit9d7e0b1509e5d41acbcec588d09bd52224a3ca3d (patch)
tree496169ca64b065d84ab73021523d40a7a54be3ec /bundles/org.eclipse.swt/Eclipse SWT/common
parent8b40207186f93905295ccb796650c791ab2fd791 (diff)
downloadeclipse.platform.swt-9d7e0b1509e5d41acbcec588d09bd52224a3ca3d.tar.gz
eclipse.platform.swt-9d7e0b1509e5d41acbcec588d09bd52224a3ca3d.tar.xz
eclipse.platform.swt-9d7e0b1509e5d41acbcec588d09bd52224a3ca3d.zip
Javadoc fixes
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/common')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java7
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java4
2 files changed, 8 insertions, 3 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 9c439e23a8..fbad42d760 100644
--- 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
@@ -1786,11 +1786,16 @@ public class SWT {
/**
* Style constant to indicate base text direction (value is 1&lt;&lt;31).
* <p>
- * When the bit is set, text direction mismatches the widget orientation
+ * When the bit is set, text direction mismatches the widget orientation.
+ * <br>Note that this is a <em>HINT</em>.
+ * </p>
* <p><b>Used By:</b><ul>
* <li><code>Control</code></li>
* </ul></p>
*
+ * @see org.eclipse.swt.widgets.Control#setTextDirection(int)
+ * @see org.eclipse.swt.widgets.Control#getTextDirection()
+ *
* @since 3.102
*/
public static final int FLIP_TEXT_DIRECTION = 1 << 31;
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java
index 2d8b5742c1..2998834ee0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 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
@@ -182,7 +182,7 @@ public final class RowLayout extends Layout {
public int marginBottom = 3;
/**
- * Constructs a new instance of this class.
+ * Constructs a new instance of this class with type HORIZONTAL.
*/
public RowLayout () {
}