summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2007-05-25 15:05:17 +0000
committerGrant Gayed <ggayed>2007-05-25 15:05:17 +0000
commit837c1444d29ff11934ff491b8210d2ba1d4e39f7 (patch)
tree8b41aa34b3a4fc9cf967f922227f25be98975dee /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
parent8dea7ffdc18b591eda42cd642d0c614d8cb55e2e (diff)
downloadeclipse.platform.swt-837c1444d29ff11934ff491b8210d2ba1d4e39f7.tar.gz
eclipse.platform.swt-837c1444d29ff11934ff491b8210d2ba1d4e39f7.tar.xz
eclipse.platform.swt-837c1444d29ff11934ff491b8210d2ba1d4e39f7.zip
javadoc
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java14
1 files changed, 8 insertions, 6 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
index cf288990a8..ee589c4ee1 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/SashForm.java
@@ -16,15 +16,17 @@ import org.eclipse.swt.widgets.*;
import org.eclipse.swt.graphics.*;
/**
- * The SashForm lays out its children in a Row or Column arrangement (as specified
- * by the orientation) and places a Sash between the children.
- * One child may be maximized to occupy the entire size of the SashForm.
- * The relative sizes of the children may be specfied using weights.
- *
+ * The SashForm is a composite control that lays out its children in a
+ * row or column arrangement (as specified by the orientation) and places
+ * a Sash between each child. One child may be maximized to occupy the
+ * entire size of the SashForm. The relative sizes of the children may
+ * be specified using weights.
* <p>
* <dl>
- * <dt><b>Styles:</b><dd>HORIZONTAL, VERTICAL, SMOOTH
+ * <dt><b>Styles:</b></dt>
+ * <dd>HORIZONTAL, VERTICAL, SMOOTH</dd>
* </dl>
+ * </p>
*/
public class SashForm extends Composite {