summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2008-06-02 19:40:42 +0000
committerGrant Gayed <ggayed>2008-06-02 19:40:42 +0000
commita648f6fdec8dc889f31b8ddbf5a2e9cb2d17dae7 (patch)
treeea41d6c27371a2e012f598414b7ab1c1a0749245
parent9047e8b624884d5d020c4c23974b90ad1286b1a0 (diff)
downloadeclipse.platform.swt-a648f6fdec8dc889f31b8ddbf5a2e9cb2d17dae7.tar.gz
eclipse.platform.swt-a648f6fdec8dc889f31b8ddbf5a2e9cb2d17dae7.tar.xz
eclipse.platform.swt-a648f6fdec8dc889f31b8ddbf5a2e9cb2d17dae7.zip
doc
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyleRange.java4
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/Variant.java2
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java2
7 files changed, 6 insertions, 10 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java
index 50106f4836..13972f151a 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ScrolledComposite.java
@@ -635,7 +635,7 @@ public void setMinWidth(int width) {
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
*
- * @since 3.4
+ * @since 3.4
*/
public void setShowFocusedControl(boolean show) {
checkWidget();
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyleRange.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyleRange.java
index 984ff340af..28bf69b0a4 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyleRange.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyleRange.java
@@ -56,9 +56,9 @@ public StyleRange() {
/**
* Create a new style range from an existing text style.
*
- *@param style the text style to copy
+ * @param style the text style to copy
*
- *@since 3.4
+ * @since 3.4
*/
public StyleRange(TextStyle style) {
super(style);
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java
index e6381eac3d..b4a114bb62 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleControlSite.java
@@ -74,7 +74,7 @@ public class OleControlSite extends OleClientSite
* in the registry for this Control (for example, the VersionIndependentProgID for
* Internet Explorer is Shell.Explorer)
*
- *@exception IllegalArgumentException <ul>
+ * @exception IllegalArgumentException <ul>
* <li>ERROR_NULL_ARGUMENT when the parent is null
*</ul>
* @exception SWTException <ul>
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/Variant.java b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/Variant.java
index 19987f8ae3..7e82d8a2a2 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/Variant.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/Variant.java
@@ -180,7 +180,7 @@ public Variant(IUnknown unknown) {
*
* @param val the Java long value that this Variant represents
*
- *@since 3.2
+ * @since 3.2
*/
public Variant(long val) {
type = COM.VT_I8;
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java
index e49bfd6f3d..bc578a1362 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/TextStyle.java
@@ -165,7 +165,7 @@ public TextStyle (Font font, Color foreground, Color background) {
/**
* Create a new text style from an existing text style.
*
- *@param style the style to copy
+ * @param style the style to copy
*
* @since 3.4
*/
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
index 1a46e8f27e..39e286039a 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Composite.java
@@ -259,8 +259,6 @@ public Point computeSize (int wHint, int hHint, boolean changed) {
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
- *
- * @since 3.4
*/
/*public*/ void copyArea (GC gc, int x, int y, int width, int height) {
checkWidget ();
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
index c528bdf702..11343ef1c3 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
@@ -1369,7 +1369,6 @@ Control [] getPath () {
* </ul>
*
* @since 3.4
- *
*/
public Region getRegion () {
checkWidget ();
@@ -3060,7 +3059,6 @@ public void setRedraw (boolean redraw) {
* </ul>
*
* @since 3.4
- *
*/
public void setRegion (Region region) {
checkWidget ();