From e99cb861db693f625b5ae30fccdcc326dffe2d65 Mon Sep 17 00:00:00 2001 From: Lakshmi Shanmugam Date: Mon, 24 May 2010 08:49:09 +0000 Subject: Bug 314066 - Add missing flags (, @see, @return) in javadoc --- .../common/org/eclipse/swt/browser/Browser.java | 10 +++++----- .../common/org/eclipse/swt/custom/CTabFolder.java | 21 ++++++++++++++------- .../org/eclipse/swt/custom/CTabFolderRenderer.java | 8 ++++---- .../common/org/eclipse/swt/custom/StyledText.java | 8 ++++---- .../org/eclipse/swt/ole/win32/OleAutomation.java | 2 +- .../Eclipse SWT/common/org/eclipse/swt/SWT.java | 2 +- .../org/eclipse/swt/internal/Compatibility.java | 14 +++++++------- .../org/eclipse/swt/internal/Compatibility.java | 12 +++++++++--- .../win32/org/eclipse/swt/graphics/TextLayout.java | 4 ++-- .../win32/org/eclipse/swt/widgets/Composite.java | 4 ++-- .../win32/org/eclipse/swt/widgets/Control.java | 4 ++-- 11 files changed, 51 insertions(+), 38 deletions(-) diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/Browser.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/Browser.java index b56a0c142e..7480da8b79 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/Browser.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/Browser.java @@ -510,7 +510,7 @@ public boolean execute (String script) { *
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
  • * * - * @see #dispose + * @see #dispose() * * @since 3.6 */ @@ -989,11 +989,11 @@ public boolean setText (String html) { * Renders a string containing HTML. The rendering of the content occurs asynchronously. * The rendered page can be given either trusted or untrusted permissions. *

    - * The html parameter is Unicode-encoded since it is a java String. + * The html parameter is Unicode-encoded since it is a java String. * As a result, the HTML meta tag charset should not be set. The charset is implied * by the String itself. *

    - * The trusted parameter affects the permissions that will be granted to the rendered + * The trusted parameter affects the permissions that will be granted to the rendered * page. Specifying true for trusted gives the page permissions equivalent * to a page on the local file system, while specifying false for trusted * gives the page permissions equivalent to a page from the internet. Page content should @@ -1005,7 +1005,7 @@ public boolean setText (String html) { * @param trusted false if the rendered page should be granted restricted * permissions and true otherwise * - * @return true if the operation was successful and false otherwise. + * @return true if the operation was successful and false otherwise. * * @exception IllegalArgumentException