diff options
author | Steve Northover | 2005-01-24 22:13:22 +0000 |
---|---|---|
committer | Steve Northover | 2005-01-24 22:13:22 +0000 |
commit | f866630fff0e2a891a1bab0bce262e327c334617 (patch) | |
tree | b9f12a441b5a93bc58b65d870aee3211414c033f | |
parent | 07dad252c7556517fef78b14aa9c7378d10e2752 (diff) | |
download | eclipse.platform.swt-f866630fff0e2a891a1bab0bce262e327c334617.tar.gz eclipse.platform.swt-f866630fff0e2a891a1bab0bce262e327c334617.tar.xz eclipse.platform.swt-f866630fff0e2a891a1bab0bce262e327c334617.zip |
fixed Javadoc
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java | 10 | ||||
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java index 02b8998750..19c7518b8e 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridData.java @@ -209,11 +209,11 @@ public final class GridData { public int minimumHeight = 0; /** - * exclude is used to stop a widget from being managed by the - * layout. If this value is <code>true</code>, the widget size and - * position will not be managed by the layout. If this value is - * <code>false</code>, then the size and position of the widget will - * be modified by the layout. + * exclude is used to stop a control from being layed out. + * If this value is <code>true</code>, the size and position + * of the control will not be managed by the layout. If this + * value is <code>false</code>, the size and position of the + * control will be computed and assigned. * * The default value is <code>false</code>. * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java index de48bc1a1f..85a54eec71 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowData.java @@ -53,11 +53,11 @@ public final class RowData { public int height = SWT.DEFAULT; /** - * exclude is used to stop a widget from being managed by the - * layout. If this value is <code>true</code>, the widget size and - * position will not be managed by the layout. If this value is - * <code>false</code>, then the size and position of the widget will - * be modified by the layout. + * exclude is used to stop a control from being layed out. + * If this value is <code>true</code>, the size and position + * of the control will not be managed by the layout. If this + * value is <code>false</code>, the size and position of the + * control will be computed and assigned. * * The default value is <code>false</code>. * |