summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2007-05-31 19:59:33 +0000
committerCarolyn MacLeod <carolyn>2007-05-31 19:59:33 +0000
commit2ddba924dca92c507be435c36b029d876103bdaa (patch)
tree877c56b5c3989d7f0226c4c5bb38714b013bab6b
parent67aa0d2b79ef0449868c1041892e844942737ea4 (diff)
downloadeclipse.platform.swt-2ddba924dca92c507be435c36b029d876103bdaa.tar.gz
eclipse.platform.swt-2ddba924dca92c507be435c36b029d876103bdaa.tar.xz
eclipse.platform.swt-2ddba924dca92c507be435c36b029d876103bdaa.zip
fix javadoc tag warnings
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java6
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java8
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java8
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java6
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java12
6 files changed, 21 insertions, 21 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java
index f1f149bf98..9911911475 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleAutomation.java
@@ -466,7 +466,7 @@ private int invoke(int dispIdMember, int wFlags, Variant[] rgvarg, int[] rgdispi
* @param dispIdMember the ID of the method as specified by the IDL of the ActiveX Control; the
* value for the ID can be obtained using OleAutomation.getIDsOfNames
*
- * @exception SWTException <ul>
+ * @exception org.eclipse.swt.SWTException <ul>
* <li>ERROR_ACTION_NOT_PERFORMED when method invocation fails
* </ul>
*/
@@ -487,7 +487,7 @@ public void invokeNoReply(int dispIdMember) {
* @param rgvarg an array of arguments for the method. All arguments are considered to be
* read only unless the Variant is a By Reference Variant type.
*
- * @exception SWTException <ul>
+ * @exception org.eclipse.swt.SWTException <ul>
* <li>ERROR_ACTION_NOT_PERFORMED when method invocation fails
* </ul>
*/
@@ -515,7 +515,7 @@ public void invokeNoReply(int dispIdMember, Variant[] rgvarg) {
* all arguments must have an identifier - identifiers can be obtained using
* OleAutomation.getIDsOfNames
*
- * @exception SWTException <ul>
+ * @exception org.eclipse.swt.SWTException <ul>
* <li>ERROR_ACTION_NOT_PERFORMED when method invocation fails
* </ul>
*/
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 37004b1006..d4ad9dc04c 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
@@ -1899,7 +1899,7 @@ public void pack (boolean changed) {
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
*
- * @see #update
+ * @see #update()
* @see PaintListener
* @see SWT#Paint
* @see SWT#NO_BACKGROUND
@@ -1945,7 +1945,7 @@ void redraw (boolean all) {
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
*
- * @see #update
+ * @see #update()
* @see PaintListener
* @see SWT#Paint
* @see SWT#NO_BACKGROUND
@@ -2917,7 +2917,7 @@ boolean setRadioSelection (boolean value) {
* </ul>
*
* @see #redraw(int, int, int, int, boolean)
- * @see #update
+ * @see #update()
*/
public void setRedraw (boolean redraw) {
checkWidget ();
@@ -3517,7 +3517,7 @@ void unsubclass () {
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
*
- * @see #redraw
+ * @see #redraw()
* @see #redraw(int, int, int, int, boolean)
* @see PaintListener
* @see SWT#Paint
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
index 36c7c9434f..47c8516313 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Decorations.java
@@ -564,7 +564,7 @@ public Rectangle getClientArea () {
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
*
- * @see #setDefaultButton
+ * @see #setDefaultButton(Button)
*/
public Button getDefaultButton () {
checkWidget ();
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
index 80cb9c8d78..0a5e055af4 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Shell.java
@@ -798,7 +798,7 @@ void fixToolTip () {
* @see Control#setFocus
* @see Control#setVisible
* @see Display#getActiveShell
- * @see Decorations#setDefaultButton
+ * @see Decorations#setDefaultButton(Button)
* @see Shell#open
* @see Shell#setActive
*/
@@ -974,7 +974,7 @@ public Point getSize () {
/**
* Returns an array containing all shells which are
- * descendents of the receiver.
+ * descendants of the receiver.
* <p>
* @return the dialog shells
*
@@ -1057,7 +1057,7 @@ int hwndMDIClient () {
* @see Control#setFocus
* @see Control#setVisible
* @see Display#getActiveShell
- * @see Decorations#setDefaultButton
+ * @see Decorations#setDefaultButton(Button)
* @see Shell#setActive
* @see Shell#forceActive
*/
@@ -1227,7 +1227,7 @@ LRESULT selectPalette (int hPalette) {
* @see Control#setFocus
* @see Control#setVisible
* @see Display#getActiveShell
- * @see Decorations#setDefaultButton
+ * @see Decorations#setDefaultButton(Button)
* @see Shell#open
* @see Shell#setActive
*/
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
index 81f59ec2cc..5c483505e1 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tree.java
@@ -3945,7 +3945,7 @@ void setItemCount (int count, int hParent, int hItem) {
* Sets the height of the area which would be used to
* display <em>one</em> of the items in the tree.
*
- * @return the height of one item
+ * @param itemHeight the height of one item
*
* @exception SWTException <ul>
* <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
@@ -6001,7 +6001,7 @@ LRESULT WM_LBUTTONDOWN (int wParam, int lParam) {
}
}
- /* Check for SHIFT or normal select and delect/reselect items */
+ /* Check for SHIFT or normal select and deselect/reselect items */
if ((wParam & OS.MK_CONTROL) == 0) {
if (!hittestSelected || !dragStarted) {
tvItem.state = 0;
@@ -6061,7 +6061,7 @@ LRESULT WM_LBUTTONDOWN (int wParam, int lParam) {
/*
* Feature in Windows. Inside WM_LBUTTONDOWN and WM_RBUTTONDOWN,
* the widget starts a modal loop to determine if the user wants
- * to begin a drag/drop operation or marque select. Unfortunately,
+ * to begin a drag/drop operation or marquee select. Unfortunately,
* this modal loop eats the corresponding mouse up. The fix is to
* detect the cases when the modal loop has eaten the mouse up and
* issue a fake mouse up.
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
index 1be717241a..2f0c0c6e13 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Widget.java
@@ -163,7 +163,7 @@ void _addListener (int eventType, Listener listener) {
*
* @see Listener
* @see SWT
- * @see #removeListener
+ * @see #removeListener(int, Listener)
* @see #notifyListeners
*/
public void addListener (int eventType, Listener listener) {
@@ -334,7 +334,7 @@ protected void checkWidget () {
* or do nothing, depending on the widget.
* <p>
* When a widget is destroyed in the operating system, its
- * descendents are also destroyed by the operating system.
+ * descendants are also destroyed by the operating system.
* This means that it is only necessary to call <code>destroyWidget</code>
* on the root of the widget tree.
* </p><p>
@@ -379,13 +379,13 @@ int DeferWindowPos(int hWinPosInfo, int hWnd, int hWndInsertAfter, int X, int Y,
/**
* Disposes of the operating system resources associated with
- * the receiver and all its descendents. After this method has
- * been invoked, the receiver and all descendents will answer
+ * the receiver and all its descendants. After this method has
+ * been invoked, the receiver and all descendants will answer
* <code>true</code> when sent the message <code>isDisposed()</code>.
* Any internal connections between the widgets in the tree will
* have been removed to facilitate garbage collection.
* <p>
- * NOTE: This method is not called recursively on the descendents
+ * NOTE: This method is not called recursively on the descendants
* of the receiver. This means that, widget implementers can not
* detect when a widget is being disposed of by re-implementing
* this method, but should instead listen for the <code>Dispose</code>
@@ -698,7 +698,7 @@ GC new_GC (GCData data) {
*
* @see SWT
* @see #addListener
- * @see #removeListener
+ * @see #removeListener(int, Listener)
*/
public void notifyListeners (int eventType, Event event) {
checkWidget();