diff --git a/README.md b/README.md index 670ae009833..2f1454c4afc 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ For more information about SWT, visit the [official SWT page](https://eclipse.de ## Getting Started SWT comes with platform-specific jar files. -Download them from https://download.eclipse.org/eclipse/downloads/index.html and add the jar file to your classpath. +Download them from https://download.eclipse.org/eclipse/downloads and add the jar file to your classpath. ### Example ![Example](example.png) @@ -96,7 +96,7 @@ https://www.eclipse.org/setups/installer/?url=https://raw.githubusercontent.com/ See the following description for how to contribute a feature or a bug fix to SWT. -- +- https://eclipse.dev/eclipse/swt/ Information regarding source code management, builds, coding standards, and more can be found under the following link. @@ -110,7 +110,7 @@ Also see in the SWT section of the Eclipse FAQ for more background information a Before your contribution can be accepted by the project, you need to create and electronically sign the Eclipse Foundation Contributor License Agreement (CLA). -- +- https://www.eclipse.org/legal/eca/ ## Contact diff --git a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorAppUI.java b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorAppUI.java index 96880e98981..97aed5d5ff9 100644 --- a/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorAppUI.java +++ b/bundles/org.eclipse.swt.tools/JNI Generation/org/eclipse/swt/tools/internal/JNIGeneratorAppUI.java @@ -887,7 +887,7 @@ public void run() { shell.open(); MessageBox box = new MessageBox(shell, SWT.YES | SWT.NO); box.setText("Warning"); - box.setMessage("This tool is obsolete as of Eclipse 3.5 M2.\nThe meta data has been embedded in java source files.\nThere is a new plugin tool that replaces this tool.\nSee http://www.eclipse.org/swt/jnigen.php.\n\n Continue?"); + box.setMessage("This tool is obsolete as of Eclipse 3.5 M2.\nThe meta data has been embedded in java source files.\nThere is a new plugin tool that replaces this tool.\nSee https://eclipse.dev/eclipse/swt/jnigen.html.\n\n Continue?"); int result = box.open(); if (result == SWT.NO) { shell.dispose(); diff --git a/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java b/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java index 46cffc6273e..a145efbc315 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java +++ b/bundles/org.eclipse.swt/Eclipse SWT AWT/cocoa/org/eclipse/swt/awt/SWT_AWT.java @@ -33,8 +33,8 @@ * This class provides a bridge between SWT and AWT, so that it * is possible to embed AWT components in SWT and vice versa. * - * @see Swing/AWT snippets - * @see Sample code and further information + * @see Swing/AWT snippets + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java b/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java index 8c6ef0ab432..dc52885fc42 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java +++ b/bundles/org.eclipse.swt/Eclipse SWT AWT/gtk/org/eclipse/swt/awt/SWT_AWT.java @@ -36,8 +36,8 @@ * This class provides a bridge between SWT and AWT, so that it * is possible to embed AWT components in SWT and vice versa. * - * @see Swing/AWT snippets - * @see Sample code and further information + * @see Swing/AWT snippets + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java b/bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java index f456c6bef9d..796d1724e58 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java +++ b/bundles/org.eclipse.swt/Eclipse SWT AWT/win32/org/eclipse/swt/awt/SWT_AWT.java @@ -32,8 +32,8 @@ * This class provides a bridge between SWT and AWT, so that it * is possible to embed AWT components in SWT and vice versa. * - * @see Swing/AWT snippets - * @see Sample code and further information + * @see Swing/AWT snippets + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java index 076654fdcf6..44fa60adafa 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/cocoa/org/eclipse/swt/accessibility/Accessible.java @@ -40,8 +40,8 @@ * @see AccessibleEvent * @see AccessibleControlListener * @see AccessibleControlEvent - * @see Accessibility snippets - * @see Sample code and further information + * @see Accessibility snippets + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java index fa627c1d69d..55f982d491a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/ACC.java @@ -18,7 +18,7 @@ * Class ACC contains all the constants used in defining an * Accessible object. * - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleAdapter.java index 8a7d145615b..154ff273028 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleAdapter.java @@ -30,7 +30,7 @@ * * @see AccessibleListener * @see AccessibleEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java index b1de1ec4c57..96b07fcd22d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlAdapter.java @@ -36,7 +36,7 @@ * * @see AccessibleControlListener * @see AccessibleControlEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlEvent.java index 8ca3cccebec..346470c8fe2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleControlEvent.java @@ -29,7 +29,7 @@ * * @see AccessibleControlListener * @see AccessibleControlAdapter - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleEvent.java index 72c8ececb61..8a46bc9dc94 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleEvent.java @@ -27,7 +27,7 @@ * * @see AccessibleListener * @see AccessibleAdapter - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextAdapter.java index 550ee851839..366f83364df 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextAdapter.java @@ -36,7 +36,7 @@ * * @see AccessibleTextListener * @see AccessibleTextEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextEvent.java index 945fd9d0132..274f54f9a48 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/common/org/eclipse/swt/accessibility/AccessibleTextEvent.java @@ -31,7 +31,7 @@ * * @see AccessibleTextListener * @see AccessibleTextAdapter - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java index da9c60d3c87..0032ed63dfc 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/gtk/org/eclipse/swt/accessibility/Accessible.java @@ -41,8 +41,8 @@ * @see AccessibleEvent * @see AccessibleControlListener * @see AccessibleControlEvent - * @see Accessibility snippets - * @see Sample code and further information + * @see Accessibility snippets + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java index 4f5e02a79ad..beb90ae7eba 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Accessibility/win32/org/eclipse/swt/accessibility/Accessible.java @@ -42,8 +42,8 @@ * @see AccessibleEvent * @see AccessibleControlListener * @see AccessibleControlEvent - * @see Accessibility snippets - * @see Sample code and further information + * @see Accessibility snippets + * @see Sample code and further information * * @since 2.0 */ 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 9880b25cd2f..6a4da033341 100644 --- 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 @@ -38,9 +38,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

* - * @see Browser snippets - * @see SWT Examples: ControlExample, BrowserExample - * @see Sample code and further information + * @see Browser snippets + * @see SWT Examples: ControlExample, BrowserExample + * @see Sample code and further information * * @since 3.0 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationAdapter.java index 1962291a4c2..6616007153a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationAdapter.java @@ -27,7 +27,7 @@ * which accept a lambda expression or a method reference that implements the event consumer. *

* - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java index 068f1398f87..939776696da 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/LocationEvent.java @@ -24,7 +24,7 @@ * {@link Browser#setUrl(String)} or when the user activates a * hyperlink. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressAdapter.java index 9a31a08aea1..ee976a40060 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressAdapter.java @@ -27,7 +27,7 @@ * which accept a lambda expression or a method reference that implements the event consumer. *

* - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java index a07f9e0581d..ec08dbc68aa 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/ProgressEvent.java @@ -22,7 +22,7 @@ * loading of the current URL or when the loading of the current * URL has been completed. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/StatusTextEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/StatusTextEvent.java index 7462b36f7e9..569faa4ec49 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/StatusTextEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/StatusTextEvent.java @@ -22,7 +22,7 @@ * The status text is typically displayed in the status bar of * a browser application. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/TitleEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/TitleEvent.java index 13ff512c418..25d640b3981 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/TitleEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/TitleEvent.java @@ -21,7 +21,7 @@ * {@link TitleListener}'s when the title of the current document * is available or when it is modified. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/VisibilityWindowAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/VisibilityWindowAdapter.java index 57e2d8cb9c9..1db54d85d1f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/VisibilityWindowAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/VisibilityWindowAdapter.java @@ -27,7 +27,7 @@ * which accept a lambda expression or a method reference that implements the event consumer. *

* - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java index e4012aca4ca..7dab6cd1caf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/common/org/eclipse/swt/browser/WindowEvent.java @@ -123,7 +123,7 @@ * @see CloseWindowListener * @see OpenWindowListener * @see VisibilityWindowListener - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/AnimatedProgress.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/AnimatedProgress.java index bfada002362..400700b61d1 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/AnimatedProgress.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/AnimatedProgress.java @@ -27,7 +27,7 @@ *
Styles:
VERTICAL, HORIZONTAL, BORDER * * - * @see Sample code and further information + * @see Sample code and further information */ @Deprecated public class AnimatedProgress extends Canvas { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentEvent.java index 628f0bee4f0..33e687289d5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BidiSegmentEvent.java @@ -73,7 +73,7 @@ *
  • elements must not exceed the line length * * - * @see Sample code and further information + * @see Sample code and further information */ public class BidiSegmentEvent extends SegmentEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/Bullet.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/Bullet.java index 8a14833505a..cffa24ed40d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/Bullet.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/Bullet.java @@ -30,7 +30,7 @@ *

    * * @see StyledText#setLineBullet(int, int, Bullet) - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BusyIndicator.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BusyIndicator.java index eb143853535..2f498dc0747 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BusyIndicator.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/BusyIndicator.java @@ -25,8 +25,8 @@ /** * Support for showing a Busy Cursor during a long running process. * - * @see BusyIndicator snippets - * @see Sample code and further information + * @see BusyIndicator snippets + * @see Sample code and further information */ public class BusyIndicator { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBanner.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBanner.java index eca34eb561c..6fddd65746b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBanner.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CBanner.java @@ -39,7 +39,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java index d3f6c8e2261..26ba0bfd30a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java @@ -47,9 +47,9 @@ *
    DefaultSelection, Modify, Selection, Verify
    * * - * @see CCombo snippets - * @see SWT Example: CustomControlExample - * @see Sample code and further information + * @see CCombo snippets + * @see SWT Example: CustomControlExample + * @see Sample code and further information */ public class CCombo extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java index 71e0b30795d..f689c98bde4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CLabel.java @@ -42,8 +42,8 @@ * shortening algorithm that is implemented in method shortenText(). *

    * - * @see SWT Example: CustomControlExample - * @see Sample code and further information + * @see SWT Example: CustomControlExample + * @see Sample code and further information * @see CLabel#shortenText(GC, String, int) */ public class CLabel extends Canvas { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java index dab891a7ccd..23717891c7b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java @@ -47,9 +47,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see CTabFolder, CTabItem snippets - * @see SWT Example: CustomControlExample - * @see Sample code and further information + * @see CTabFolder, CTabItem snippets + * @see SWT Example: CustomControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder2Adapter.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder2Adapter.java index ad7d76e9e59..bf0e64d5e9d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder2Adapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder2Adapter.java @@ -29,7 +29,7 @@ * * @see CTabFolder2Listener * @see CTabFolderEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderAdapter.java index 0c807ef5391..f687b33177f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderAdapter.java @@ -20,7 +20,7 @@ * * @see CTabFolderListener * @see CTabFolderEvent - * @see Sample code and further information + * @see Sample code and further information */ public class CTabFolderAdapter implements CTabFolderListener { @Override diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderEvent.java index 9b98f667144..f2a5493980c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderEvent.java @@ -20,7 +20,7 @@ /** * This event is sent when an event is generated in the CTabFolder. * - * @see Sample code and further information + * @see Sample code and further information */ public class CTabFolderEvent extends TypedEvent { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java index 172da2d4345..b0908703e81 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolderRenderer.java @@ -25,7 +25,7 @@ * required by CTabFolder. This class can be subclassed in order to * customize the look of a CTabFolder. * - * @see Sample code and further information + * @see Sample code and further information * @since 3.6 */ public class CTabFolderRenderer { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java index 884c44354db..24aa3e17725 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see CTabFolder, CTabItem snippets - * @see Sample code and further information + * @see CTabFolder, CTabItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class CTabItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CaretEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CaretEvent.java index 41bb86a10d2..f46a58c84d5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CaretEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CaretEvent.java @@ -19,7 +19,7 @@ /** * This event is sent when the caret offset changes. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.5 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ControlEditor.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ControlEditor.java index e08c505885d..729c962d1af 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ControlEditor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ControlEditor.java @@ -63,7 +63,7 @@ * editor.setEditor (button); * * -* @see Sample code and further information +* @see Sample code and further information */ public class ControlEditor { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyEvent.java index 1b7c1ab3b67..2a3d24e39f5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyEvent.java @@ -18,7 +18,7 @@ /** * This event is sent after a text change occurs. * - * @see Sample code and further information + * @see Sample code and further information */ public final class ExtendedModifyEvent extends TypedEvent { /** start offset of the new text */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java index 995665243b6..9bc396f40f6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ExtendedModifyListener.java @@ -21,7 +21,7 @@ * is modified. * * @see ExtendedModifyEvent - * @see Sample code and further information + * @see Sample code and further information */ @FunctionalInterface public interface ExtendedModifyListener extends EventListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundEvent.java index b87e237dcac..85018bb35c7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundEvent.java @@ -19,7 +19,7 @@ /** * This event is sent when a line is about to be drawn. * - * @see Sample code and further information + * @see Sample code and further information */ public class LineBackgroundEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java index f661636dd3f..863806dd053 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineBackgroundListener.java @@ -21,7 +21,7 @@ * is to be drawn. * * @see LineBackgroundEvent - * @see Sample code and further information + * @see Sample code and further information */ @FunctionalInterface public interface LineBackgroundListener extends EventListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java index 65ffa3db298..fa30f87fa31 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleEvent.java @@ -18,7 +18,7 @@ /** * This event is sent when a line is about to be drawn. * - * @see Sample code and further information + * @see Sample code and further information */ public class LineStyleEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java index 9053718a62a..3ca9cb34f3b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/LineStyleListener.java @@ -21,7 +21,7 @@ * is to be drawn. * * @see LineStyleEvent - * @see Sample code and further information + * @see Sample code and further information */ @FunctionalInterface public interface LineStyleListener extends EventListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/MovementEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/MovementEvent.java index ccc0dafb2db..140addb3624 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/MovementEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/MovementEvent.java @@ -19,7 +19,7 @@ * This event is sent when a new offset is required based on the current * offset and a movement type. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PaintObjectEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PaintObjectEvent.java index 889d2522102..10b0e052fa4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PaintObjectEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PaintObjectEvent.java @@ -19,7 +19,7 @@ /** * This event is sent when an object needs to be drawn. * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PopupList.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PopupList.java index 61d3fca20f5..6ac757b4c63 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PopupList.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/PopupList.java @@ -27,7 +27,7 @@ * are visible. It may appear above the current cursor location or below it depending how close you * are to the edge of the screen. * -* @see Sample code and further information +* @see Sample code and further information */ public class PopupList { Shell shell; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ST.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ST.java index 8d0d21432b6..c5a31f16767 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ST.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ST.java @@ -17,7 +17,7 @@ /** * This class provides access to the public constants provided by StyledText. * - * @see Sample code and further information + * @see Sample code and further information */ public class ST { 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 23a9874a20d..5fb01cde904 100644 --- 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 @@ -29,9 +29,9 @@ *
    HORIZONTAL, VERTICAL, SMOOTH
    * * - * @see SashForm snippets - * @see SWT Example: CustomControlExample - * @see Sample code and further information + * @see SashForm snippets + * @see SWT Example: CustomControlExample + * @see Sample code and further information */ public class SashForm extends Composite { 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 5954d0b5669..03284b70e1d 100644 --- 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 @@ -102,8 +102,8 @@ *
    Styles:
    H_SCROLL, V_SCROLL * * - * @see ScrolledComposite snippets - * @see Sample code and further information + * @see ScrolledComposite snippets + * @see Sample code and further information */ public class ScrolledComposite extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StackLayout.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StackLayout.java index 5490db532e8..58765016f54 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StackLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StackLayout.java @@ -64,9 +64,9 @@ * } * * - * @see StackLayout snippets - * @see SWT Example: LayoutExample - * @see Sample code and further information + * @see StackLayout snippets + * @see SWT Example: LayoutExample + * @see Sample code and further information */ public class StackLayout extends Layout { 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 a6a13ce1a5d..b66fdc338e3 100644 --- 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 @@ -26,7 +26,7 @@ * object has been inserted. *

    * - * @see Sample code and further information + * @see Sample code and further information */ public class StyleRange extends TextStyle implements Cloneable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java index 7d0a89c1848..8fd3e1637d9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java @@ -82,9 +82,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see StyledText snippets - * @see SWT Examples: CustomControlExample, TextEditor - * @see Sample code and further information + * @see StyledText snippets + * @see SWT Examples: CustomControlExample, TextEditor + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class StyledText extends Canvas { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java index 675cad903a8..5bbf1eb2793 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java @@ -43,7 +43,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextPrintOptions.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextPrintOptions.java index 9cf287979dc..d52c855e047 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextPrintOptions.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextPrintOptions.java @@ -31,7 +31,7 @@ * runnable.run(); * * - * @see Sample code and further information + * @see Sample code and further information * * @since 2.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java index c6aaf539482..c953d79c21d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java @@ -36,8 +36,8 @@ * * @since 2.0 * - * @see TableCursor snippets - * @see Sample code and further information + * @see TableCursor snippets + * @see Sample code and further information */ public class TableCursor extends Canvas { Table table; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableEditor.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableEditor.java index 707b912a684..d92debd5810 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableEditor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableEditor.java @@ -73,8 +73,8 @@ * }); * * -* @see TableEditor snippets -* @see Sample code and further information +* @see TableEditor snippets +* @see Sample code and further information */ public class TableEditor extends ControlEditor { Table table; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangedEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangedEvent.java index c6b597d2ea3..40464c138ed 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangedEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangedEvent.java @@ -19,7 +19,7 @@ * This event is sent by the StyledTextContent implementor when a change to * the text occurs. * - * @see Sample code and further information + * @see Sample code and further information */ public class TextChangedEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangingEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangingEvent.java index 7e9241201b4..a6c2668fb45 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangingEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TextChangingEvent.java @@ -20,7 +20,7 @@ * This event is sent by the StyledTextContent implementor when a change * to the text is about to occur. * - * @see Sample code and further information + * @see Sample code and further information */ public class TextChangingEvent extends TypedEvent { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TreeEditor.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TreeEditor.java index 981414bd82c..22624d82892 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TreeEditor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TreeEditor.java @@ -71,8 +71,8 @@ * }); * * -* @see TreeEditor snippets -* @see Sample code and further information +* @see TreeEditor snippets +* @see Sample code and further information */ public class TreeEditor extends ControlEditor { Tree tree; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java index 87394bc43c5..4dc62d97504 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/VerifyKeyListener.java @@ -23,7 +23,7 @@ * key is pressed. * * @see VerifyEvent - * @see Sample code and further information + * @see Sample code and further information */ @FunctionalInterface public interface VerifyKeyListener extends EventListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ViewForm.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ViewForm.java index a1291fdbf89..e3a8f8fac20 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ViewForm.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ViewForm.java @@ -37,7 +37,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java index 0510005de97..898152eccdf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Clipboard.java @@ -25,9 +25,9 @@ * *

    IMPORTANT: This class is not intended to be subclassed.

    * - * @see Clipboard snippets - * @see SWT Example: ClipboardExample - * @see Sample code and further information + * @see Clipboard snippets + * @see SWT Example: ClipboardExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Clipboard { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java index 2d54835a6f2..53c6215f0a6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DragSource.java @@ -96,9 +96,9 @@ *
    Events
    DND.DragStart, DND.DragSetData, DND.DragEnd
    * * - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DragSource extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java index 7589535b05d..c9df3a4b9f5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/DropTarget.java @@ -73,9 +73,9 @@ * DND.DropAccept, DND.Drop
  • * * - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DropTarget extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java index e762d514ef0..a3648235feb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDragSourceEffect.java @@ -33,7 +33,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDropTargetEffect.java index bd3f53ece13..7e4ca658d40 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TableDropTargetEffect.java @@ -40,7 +40,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Transfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Transfer.java index 6950ec5b69f..79d578cc931 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Transfer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/Transfer.java @@ -25,9 +25,9 @@ * ByteArrayTransfer class.

    * * @see ByteArrayTransfer - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information */ public abstract class Transfer { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TransferData.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TransferData.java index 306e6521439..3e2cddc542d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TransferData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TransferData.java @@ -30,7 +30,7 @@ * are implementing a Transfer subclass and you are unable to subclass the * ByteArrayTransfer class.

    * - * @see Sample code and further information + * @see Sample code and further information */ public class TransferData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java index e1d0311b431..ced6bc3febb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDragSourceEffect.java @@ -32,7 +32,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDropTargetEffect.java index f4cf5811fde..c72fab16e60 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/cocoa/org/eclipse/swt/dnd/TreeDropTargetEffect.java @@ -44,7 +44,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DND.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DND.java index 64ca4b6ba15..d33cae34d5a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DND.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DND.java @@ -20,7 +20,7 @@ * Class DND contains all the constants used in defining a * DragSource or a DropTarget. * - * @see Sample code and further information + * @see Sample code and further information */ public class DND { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceAdapter.java index c2680d19d89..ee4a32dcf0b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceAdapter.java @@ -24,7 +24,7 @@ * * @see DragSourceListener * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information */ public class DragSourceAdapter implements DragSourceListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEffect.java index 0f617eb0113..832d1752859 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEffect.java @@ -35,7 +35,7 @@ * * @see DragSourceAdapter * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java index 3b287c5b09b..58505b790bf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DragSourceEvent.java @@ -20,7 +20,7 @@ * The DragSourceEvent contains the event information passed in the methods of the DragSourceListener. * * @see DragSourceListener - * @see Sample code and further information + * @see Sample code and further information */ public class DragSourceEvent extends TypedEvent { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetAdapter.java index c3e9585876e..1e64be99050 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetAdapter.java @@ -35,7 +35,7 @@ * * @see DropTargetListener * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * @see Eclipse corner article on DND */ public class DropTargetAdapter implements DropTargetListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java index e6e24999932..ae3f996e834 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java @@ -45,7 +45,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEvent.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEvent.java index aff8d311103..b21e1f45611 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEvent.java @@ -19,7 +19,7 @@ /** * The DropTargetEvent contains the event information passed in the methods of the DropTargetListener. * - * @see Sample code and further information + * @see Sample code and further information */ public class DropTargetEvent extends TypedEvent { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java index 8fc90be78db..47d6192d1b7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Clipboard.java @@ -32,9 +32,9 @@ * *

    IMPORTANT: This class is not intended to be subclassed.

    * - * @see Clipboard snippets - * @see SWT Example: ClipboardExample - * @see Sample code and further information + * @see Clipboard snippets + * @see SWT Example: ClipboardExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Clipboard { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java index 07dfbd9addc..e9117850ccd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DragSource.java @@ -102,9 +102,9 @@ *
    Events
    DND.DragStart, DND.DragSetData, DND.DragEnd
    * * - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DragSource extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DropTarget.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DropTarget.java index e82fbca3754..6ca2c9a334a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DropTarget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/DropTarget.java @@ -73,9 +73,9 @@ * DND.DropAccept, DND.Drop * * - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DropTarget extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDragSourceEffect.java index 7dc98a6f7fa..36b6fac87fc 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDragSourceEffect.java @@ -30,7 +30,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDropTargetEffect.java index e6852ff2917..7e97a322acb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TableDropTargetEffect.java @@ -42,7 +42,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java index db983195651..7022db629fb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/Transfer.java @@ -28,9 +28,9 @@ * ByteArrayTransfer class.

    * * @see ByteArrayTransfer - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information */ public abstract class Transfer { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TransferData.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TransferData.java index e806ce5813c..f2bdb213cfc 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TransferData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TransferData.java @@ -27,7 +27,7 @@ * are implementing a Transfer subclass and you are unable to subclass the * ByteArrayTransfer class.

    * - * @see Sample code and further information + * @see Sample code and further information */ public class TransferData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDragSourceEffect.java index f6eb7614c9e..12b3c154e51 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDragSourceEffect.java @@ -29,7 +29,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDropTargetEffect.java index 7874ae4aef9..5172947a195 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/dnd/TreeDropTargetEffect.java @@ -46,7 +46,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/internal/dnd/gtk/ListDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/internal/dnd/gtk/ListDragSourceEffect.java index bd7921e127c..4a04a689da9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/internal/dnd/gtk/ListDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/gtk/org/eclipse/swt/internal/dnd/gtk/ListDragSourceEffect.java @@ -34,7 +34,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information */ public class ListDragSourceEffect extends DragSourceEffect { Image dragSourceImage = null; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Clipboard.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Clipboard.java index e381cb37540..4bd5b09378c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Clipboard.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Clipboard.java @@ -28,9 +28,9 @@ * *

    IMPORTANT: This class is not intended to be subclassed.

    * - * @see Clipboard snippets - * @see SWT Example: ClipboardExample - * @see Sample code and further information + * @see Clipboard snippets + * @see SWT Example: ClipboardExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Clipboard { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java index d74bd7e9563..2ad70013f45 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DragSource.java @@ -99,9 +99,9 @@ *
    Events
    DND.DragStart, DND.DragSetData, DND.DragEnd
    * * - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DragSource extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DropTarget.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DropTarget.java index 01b7c8c3a92..8ae1b5ea215 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DropTarget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/DropTarget.java @@ -71,9 +71,9 @@ * DND.DropAccept, DND.Drop * * - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DropTarget extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java index 7a5e985726b..d043d788469 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java @@ -33,7 +33,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java index f3d8d708067..45064b766c4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java @@ -42,7 +42,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Transfer.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Transfer.java index ecba24dd2ed..268b7faa4c7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Transfer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/Transfer.java @@ -28,9 +28,9 @@ * ByteArrayTransfer class.

    * * @see ByteArrayTransfer - * @see Drag and Drop snippets - * @see SWT Example: DNDExample - * @see Sample code and further information + * @see Drag and Drop snippets + * @see SWT Example: DNDExample + * @see Sample code and further information */ public abstract class Transfer { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java index 80240e23d9a..6c0e9e2793f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java @@ -29,7 +29,7 @@ * are implementing a Transfer subclass and you are unable to subclass the * ByteArrayTransfer class.

    * - * @see Sample code and further information + * @see Sample code and further information */ public class TransferData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java index c2c19a87670..c563440e789 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java @@ -32,7 +32,7 @@ * * @see DragSourceEffect * @see DragSourceEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java index fc4b15a6ac2..ccba2a88e7c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java @@ -47,7 +47,7 @@ * * @see DropTargetAdapter * @see DropTargetEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ 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 cdeaec6fb19..34f5b56e359 100644 --- 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 @@ -84,8 +84,8 @@ * * * - * @see OLE and ActiveX snippets - * @see SWT Examples: OLEExample, OleWebBrowser + * @see OLE and ActiveX snippets + * @see SWT Examples: OLEExample, OleWebBrowser */ public final class OleAutomation { private IUnknown objIUnknown; diff --git a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java index 0f856b7736b..96668c2e9a8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java +++ b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleClientSite.java @@ -44,8 +44,8 @@ *
    Events
    Dispose, Move, Resize * * - * @see OLE and ActiveX snippets - * @see SWT Examples: OLEExample, OleWebBrowser + * @see OLE and ActiveX snippets + * @see SWT Examples: OLEExample, OleWebBrowser */ public class OleClientSite extends Composite { 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 a5ee6552f25..5c1c0da8d2e 100644 --- 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 @@ -44,8 +44,8 @@ *
    Events
    Dispose, Move, Resize * * - * @see OLE and ActiveX snippets - * @see SWT Examples: OLEExample, OleWebBrowser + * @see OLE and ActiveX snippets + * @see SWT Examples: OLEExample, OleWebBrowser */ public class OleControlSite extends OleClientSite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java index 66e6df9a2b1..4b654e089d3 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java +++ b/bundles/org.eclipse.swt/Eclipse SWT OLE Win32/win32/org/eclipse/swt/ole/win32/OleFrame.java @@ -40,8 +40,8 @@ *
    Events
    Dispose, Move, Resize * * - * @see OLE and ActiveX snippets - * @see SWT Examples: OLEExample, OleWebBrowser + * @see OLE and ActiveX snippets + * @see SWT Examples: OLEExample, OleWebBrowser */ final public class OleFrame extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java index 0197cf7e37e..e5a11132cce 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java +++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/cocoa/org/eclipse/swt/opengl/GLCanvas.java @@ -21,8 +21,8 @@ * GLCanvas is a widget capable of displaying OpenGL content. * * @see GLData - * @see OpenGL snippets - * @see Sample code and further information + * @see OpenGL snippets + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/common/org/eclipse/swt/opengl/GLData.java b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/common/org/eclipse/swt/opengl/GLData.java index 5a5ecc7addb..041218a4efb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/common/org/eclipse/swt/opengl/GLData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/common/org/eclipse/swt/opengl/GLData.java @@ -18,8 +18,8 @@ * of the pixel format attributes of a GL drawable. * * @see GLCanvas - * @see OpenGL snippets - * @see Sample code and further information + * @see OpenGL snippets + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java index 4757b387f6c..fd4fce76cf8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java +++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/gtk/org/eclipse/swt/opengl/GLCanvas.java @@ -24,8 +24,8 @@ * GLCanvas is a widget capable of displaying OpenGL content. * * @see GLData - * @see OpenGL snippets - * @see Sample code and further information + * @see OpenGL snippets + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java index 3a470bf8813..3802b594789 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java +++ b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/win32/org/eclipse/swt/opengl/GLCanvas.java @@ -22,8 +22,8 @@ * GLCanvas is a widget capable of displaying OpenGL content. * * @see GLData - * @see OpenGL snippets - * @see Sample code and further information + * @see OpenGL snippets + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/build.bat b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/build.bat index 8ab35df5b54..8a091fe3733 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/build.bat +++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/library/build.bat @@ -1,5 +1,5 @@ @rem *************************************************************************** -@rem Copyright (c) 2000, 2024 IBM Corporation and others. +@rem Copyright (c) 2000, 2026 IBM Corporation and others. @rem @rem This program and the accompanying materials @rem are made available under the terms of the Eclipse Public License 2.0 @@ -33,7 +33,7 @@ IF "%MSVC_HOME%"=="" CALL :FindVisualStudio "%ProgramFiles(x86)%\Microsoft Visua @rem Report IF NOT EXIST "%MSVC_HOME%" ( CALL :ECHO "WARNING: Microsoft Visual Studio was not found (for edition=%MSVC_EDITION% version=%MSVC_VERSION%)" - CALL :ECHO " Refer steps for SWT Windows native setup: https://www.eclipse.org/swt/swt_win_native.php" + CALL :ECHO " Refer steps for SWT Windows native setup: https://eclipse.dev/eclipse/swt/swt_win_native.html" ) ELSE ( CALL :ECHO "MSVC_HOME: %MSVC_HOME%" ) @@ -85,7 +85,7 @@ WHERE cl if %ERRORLEVEL% NEQ 0 ( CALL :ECHO "ERROR: cl (Microsoft C compiler) not found on path. Please install Microsoft Visual Studio." CALL :ECHO " If already installed, try launching eclipse from the 'Developer Command Prompt for VS'" - CALL :ECHO " Refer steps for SWT Windows native setup: https://www.eclipse.org/swt/swt_win_native.php" + CALL :ECHO " Refer steps for SWT Windows native setup: https://eclipse.dev/eclipse/swt/swt_win_native.html" CALL :ECHO "ERROR: exit 1" EXIT 1 ) diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java index 0ee5b440e6a..137ee08e13f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/PrintDialog.java @@ -26,9 +26,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Printing snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see Printing snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class PrintDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/Printer.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/Printer.java index 97b489a57b3..6711a2bc3cb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/Printer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/cocoa/org/eclipse/swt/printing/Printer.java @@ -36,8 +36,8 @@ * * @see PrinterData * @see PrintDialog - * @see Printing snippets - * @see Sample code and further information + * @see Printing snippets + * @see Sample code and further information */ public final class Printer extends Device { PrinterData data; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java index 3f8ce5ff10d..5ec7b497003 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/common/org/eclipse/swt/printing/PrinterData.java @@ -32,8 +32,8 @@ * @see Printer * @see Printer#getPrinterList * @see PrintDialog#open - * @see Printing snippets - * @see Sample code and further information + * @see Printing snippets + * @see Sample code and further information */ public final class PrinterData extends DeviceData { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java index 2ce616efbcf..8157a8a604c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/PrintDialog.java @@ -29,9 +29,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Printing snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see Printing snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class PrintDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java index 366d060a85e..93d5ca2068c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/gtk/org/eclipse/swt/printing/Printer.java @@ -41,8 +41,8 @@ * * @see PrinterData * @see PrintDialog - * @see Printing snippets - * @see Sample code and further information + * @see Printing snippets + * @see Sample code and further information */ public final class Printer extends Device { static PrinterData [] printerList; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java index ec19df9b856..9d7a2a21275 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/PrintDialog.java @@ -26,9 +26,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Printing snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see Printing snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class PrintDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java b/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java index 28eda647c1f..fc78c6132eb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Printing/win32/org/eclipse/swt/printing/Printer.java @@ -37,8 +37,8 @@ * * @see PrinterData * @see PrintDialog - * @see Printing snippets - * @see Sample code and further information + * @see Printing snippets + * @see Sample code and further information */ public final class Printer extends Device { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java index 4d8d931b09f..cbf63d8fc51 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Program/cocoa/org/eclipse/swt/program/Program.java @@ -28,8 +28,8 @@ * their associated file extensions in the operating * system. * - * @see Program snippets - * @see Sample code and further information + * @see Program snippets + * @see Sample code and further information */ public final class Program { String name, fullPath, identifier; diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java index f5e11ef8031..f2146cab982 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Program/gtk/org/eclipse/swt/program/Program.java @@ -30,8 +30,8 @@ * their associated file extensions in the operating * system. * - * @see Program snippets - * @see Sample code and further information + * @see Program snippets + * @see Sample code and further information */ public final class Program { String name = ""; //$NON-NLS-1$ diff --git a/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java b/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java index 03f9b45a851..53bc3c01462 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java +++ b/bundles/org.eclipse.swt/Eclipse SWT Program/win32/org/eclipse/swt/program/Program.java @@ -27,8 +27,8 @@ * their associated file extensions in the operating * system. * - * @see Program snippets - * @see Sample code and further information + * @see Program snippets + * @see Sample code and further information */ public final class Program { String name; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Path.java b/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Path.java index 8040f903b88..14ea28d2312 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Path.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Path.java @@ -31,9 +31,9 @@ * which may not be available on some platforms. *

    * - * @see Path, Pattern snippets - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see Path, Pattern snippets + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Pattern.java b/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Pattern.java index 1fd767ee29a..cb2850bc151 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Pattern.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Pattern.java @@ -29,9 +29,9 @@ * which may not be available on some platforms. *

    * - * @see Path, Pattern snippets - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see Path, Pattern snippets + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Transform.java b/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Transform.java index db1dd188f26..15fd5c29259 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Transform.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cairo/org/eclipse/swt/graphics/Transform.java @@ -29,8 +29,8 @@ * which may not be available on some platforms. *

    * - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Color.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Color.java index 6333bfeb234..77669332b33 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Color.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Color.java @@ -29,9 +29,9 @@ * @see RGB * @see RGBA * @see Device#getSystemColor - * @see Color and RGB snippets - * @see SWT Example: PaintExample - * @see Sample code and further information + * @see Color and RGB snippets + * @see SWT Example: PaintExample + * @see Sample code and further information */ public final class Color extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Cursor.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Cursor.java index 25131e3476e..12d255536d9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Cursor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Cursor.java @@ -43,8 +43,8 @@ * Note: Only one of the above styles may be specified. *

    * - * @see Cursor snippets - * @see Sample code and further information + * @see Cursor snippets + * @see Sample code and further information */ public final class Cursor extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Device.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Device.java index 41e7b57558f..ae3c0050f20 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Device.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Device.java @@ -23,7 +23,7 @@ * can have a graphics context (GC) created for them, and they * can be drawn on by sending messages to the associated GC. * - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Device implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Font.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Font.java index e9729d4055a..d46c5f9e36b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Font.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Font.java @@ -29,9 +29,9 @@ *

    * * @see FontData - * @see Font snippets - * @see SWT Examples: GraphicsExample, PaintExample - * @see Sample code and further information + * @see Font snippets + * @see SWT Examples: GraphicsExample, PaintExample + * @see Sample code and further information */ public final class Font extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontData.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontData.java index bd858141392..d96117f51e2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontData.java @@ -39,7 +39,7 @@ * required, and thus no dispose() method is provided. * * @see Font - * @see Sample code and further information + * @see Sample code and further information */ public final class FontData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontMetrics.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontMetrics.java index d7aa91e82cc..befde38c747 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontMetrics.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/FontMetrics.java @@ -22,7 +22,7 @@ * using the getFontMetrics() method. * * @see GC#getFontMetrics - * @see Sample code and further information + * @see Sample code and further information */ public final class FontMetrics { int ascent, descent, leading, height; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java index aa4818e9c19..8d619bd4eb5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GC.java @@ -55,9 +55,9 @@ *

    * * @see org.eclipse.swt.events.PaintEvent - * @see GC snippets - * @see SWT Examples: GraphicsExample, PaintExample - * @see Sample code and further information + * @see GC snippets + * @see SWT Examples: GraphicsExample, PaintExample + * @see Sample code and further information */ public final class GC extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GCData.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GCData.java index f11880cd815..ac6d07e1318 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GCData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/GCData.java @@ -26,7 +26,7 @@ * within the packages provided by SWT. It is not available on all * platforms, and should never be called from application code. *

    - * @see Sample code and further information + * @see Sample code and further information * @noreference This class is not intended to be referenced by clients */ public final class GCData { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java index 8caa1fc49de..779b593ee2e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java @@ -74,9 +74,9 @@ * @see Color * @see ImageData * @see ImageLoader - * @see Image snippets - * @see SWT Examples: GraphicsExample, ImageAnalyzer - * @see Sample code and further information + * @see Image snippets + * @see SWT Examples: GraphicsExample, ImageAnalyzer + * @see Sample code and further information */ public final class Image extends Resource implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Path.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Path.java index d46035be097..a0f94d05ef1 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Path.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Path.java @@ -32,9 +32,9 @@ * which may not be available on some platforms. *

    * - * @see Path, Pattern snippets - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see Path, Pattern snippets + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Pattern.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Pattern.java index bffd556d1ba..6daea06f024 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Pattern.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Pattern.java @@ -29,9 +29,9 @@ * which may not be available on some platforms. *

    * - * @see Path, Pattern snippets - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see Path, Pattern snippets + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Region.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Region.java index 0e7efe4ad74..8eeb98c0a49 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Region.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Region.java @@ -28,8 +28,8 @@ * when those instances are no longer required. *

    * - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see SWT Example: GraphicsExample + * @see Sample code and further information */ public final class Region extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java index b2936f9ef25..6f8777f4894 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/TextLayout.java @@ -30,9 +30,9 @@ * when those instances are no longer required. *

    * - * @see TextLayout, TextStyle snippets - * @see SWT Example: CustomControlExample, StyledText tab - * @see Sample code and further information + * @see TextLayout, TextStyle snippets + * @see SWT Example: CustomControlExample, StyledText tab + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Transform.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Transform.java index 07e1bae0573..aa80c632d1b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Transform.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Transform.java @@ -29,8 +29,8 @@ * which may not be available on some platforms. *

    * - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java index 571b793a070..560a18778b1 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Button.java @@ -41,9 +41,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Button snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Button snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Button extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java index b94292dd21d..eb28bab7ed5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Canvas.java @@ -38,9 +38,9 @@ *

    * * @see Composite - * @see Canvas snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Canvas snippets + * @see SWT Example: ControlExample + * @see Sample code and further information */ public class Canvas extends Composite { Caret caret; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Caret.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Caret.java index 4ce9537975a..85d55f3438b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Caret.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Caret.java @@ -32,9 +32,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Caret snippets - * @see SWT Example: ControlExample, Canvas tab - * @see Sample code and further information + * @see Caret snippets + * @see SWT Example: ControlExample, Canvas tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Caret extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ColorDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ColorDialog.java index 0dde704bb09..d188c1862c9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ColorDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ColorDialog.java @@ -31,8 +31,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ColorDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java index ebff28ba0c5..863f407fdac 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Combo.java @@ -54,9 +54,9 @@ *

    * * @see List - * @see Combo snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Combo snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Combo extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java index bf95c2f0f3f..707279c3b46 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Composite.java @@ -47,8 +47,8 @@ *

    * * @see Canvas - * @see Composite snippets - * @see Sample code and further information + * @see Composite snippets + * @see Sample code and further information */ public class Composite extends Scrollable { Layout layout; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java index 425177b04da..71394755c45 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java @@ -41,9 +41,9 @@ * within the SWT implementation. *

    * - * @see Control snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Control snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public abstract class Control extends Widget implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java index 7ac1c917e72..fd19ffebca2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DateTime.java @@ -40,9 +40,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see DateTime snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see DateTime snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.3 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Decorations.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Decorations.java index e68d86157cf..1a87011313f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Decorations.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Decorations.java @@ -94,7 +94,7 @@ * @see #getMaximized * @see Shell * @see SWT - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Decorations extends Canvas { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java index 4df7269f17c..4bbfa7f584c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/DirectoryDialog.java @@ -34,9 +34,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see DirectoryDialog snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see DirectoryDialog snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DirectoryDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java index fcfef02be4e..3913a9c9abb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Display.java @@ -100,8 +100,8 @@ * @see #readAndDispatch * @see #sleep * @see Device#dispose - * @see Display snippets - * @see Sample code and further information + * @see Display snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Display extends Device implements Executor { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java index 2c232696323..d3a7e5fb4dc 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FileDialog.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see FileDialog snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see FileDialog snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class FileDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java index 14e9712cc86..dfe82d8ed36 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/FontDialog.java @@ -31,8 +31,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class FontDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java index 0ae7385c225..beedbf8218d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Group.java @@ -38,8 +38,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Group extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java index 64220dc8041..828000ae92e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/IME.java @@ -34,7 +34,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.4 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Label.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Label.java index a2b2a3ea413..eff0a442900 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Label.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Label.java @@ -44,9 +44,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Label snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Label snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Label extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java index 3e4a170635a..6d075f0136a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Link snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Link snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java index d85bc585a64..800fe783527 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/List.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see List snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see List snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class List extends Scrollable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Menu.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Menu.java index f71afede802..2bdf5da08c8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Menu.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Menu.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Menu snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Menu snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Menu extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java index f28172a8f9b..0c78c4046e5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MenuItem.java @@ -35,7 +35,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class MenuItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java index 8bafa2601ff..5782be7b471 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/MessageBox.java @@ -39,8 +39,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class MessageBox extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ProgressBar.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ProgressBar.java index 39b6836c02a..eac59b1a91f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ProgressBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ProgressBar.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ProgressBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ProgressBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ProgressBar extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Sash.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Sash.java index 029c2978521..e9792688bc5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Sash.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Sash.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sash snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Sash snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Sash extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java index 789b251c446..c15e4fa4d44 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scale.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Scale snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Scale snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Scale extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java index 8f4da019d25..ea25420fec6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ScrollBar.java @@ -82,8 +82,8 @@ * @see Scrollable * @see Scrollable#getHorizontalBar * @see Scrollable#getVerticalBar - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ScrollBar extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java index 40c78e40739..e6b82c1349c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Scrollable.java @@ -32,7 +32,7 @@ * within the SWT implementation. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public abstract class Scrollable extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java index ca5bb9dfd59..51e61b97ddf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Shell.java @@ -116,9 +116,9 @@ * * @see Decorations * @see SWT - * @see Shell snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Shell snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Shell extends Decorations { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Slider.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Slider.java index f1e6f4798cc..caf1fd2a67d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Slider.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Slider.java @@ -68,9 +68,9 @@ *

    * * @see ScrollBar - * @see Slider snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Slider snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Slider extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java index 3ebdcbef8b8..f11f14e2e28 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Spinner.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Spinner snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Spinner snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java index 66f6c975027..197214fb8b8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabFolder.java @@ -45,9 +45,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see TabFolder, TabItem snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see TabFolder, TabItem snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TabFolder extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java index ebaafb30163..903c4d29574 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TabItem.java @@ -31,8 +31,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see TabFolder, TabItem snippets - * @see Sample code and further information + * @see TabFolder, TabItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TabItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java index d61ab46ff39..117ece0ff36 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java @@ -63,9 +63,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Table extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java index 1660ebb1573..403e9fa5b50 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java @@ -33,8 +33,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TableColumn extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java index a535a9852ca..80b781d4e2c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableItem.java @@ -31,8 +31,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TableItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskBar.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskBar.java index 83a664a0fab..c552f191f8c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskBar.java @@ -27,7 +27,7 @@ * * * @see Display#getSystemTaskBar - * @see Sample code and further information + * @see Sample code and further information * * @since 3.6 * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java index 58440eac0ca..e753e7d8101 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TaskItem.java @@ -28,7 +28,7 @@ *
    (none)
    * * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.6 * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java index 4cd3d99b13a..e4b3e273d6c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Text.java @@ -54,9 +54,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Text snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Text snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Text extends Scrollable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java index 1242963479b..abeaee9b640 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolBar.java @@ -42,9 +42,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ToolBar, ToolItem snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ToolBar, ToolItem snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ToolBar extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java index ceab057b70b..a29e7efc099 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/ToolItem.java @@ -37,8 +37,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ToolBar, ToolItem snippets - * @see Sample code and further information + * @see ToolBar, ToolItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ToolItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java index bd7e6801325..2f96892de71 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tracker.java @@ -38,8 +38,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tracker snippets - * @see Sample code and further information + * @see Tracker snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Tracker extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TrayItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TrayItem.java index a864689679c..00b271bfdf7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TrayItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TrayItem.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tray, TrayItem snippets - * @see Sample code and further information + * @see Tray, TrayItem snippets + * @see Sample code and further information * * @since 3.0 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java index 5138181ffb9..c147e464d08 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Tree.java @@ -70,9 +70,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Tree extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java index 32925a776d5..1c70f01339b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeColumn.java @@ -33,8 +33,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java index f931c12d8fb..6374db37bc9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TreeItem.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TreeItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java index 4e42aa8920d..42a5c540b7b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java @@ -46,7 +46,7 @@ *

    * * @see #checkSubclass - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Widget { int style, state; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java index d5cfd22e530..bf4ebc4d6a8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWT.java @@ -37,7 +37,7 @@ * will not withdraw support for a HINT once it is made available. *

    * - * @see Sample code and further information + * @see Sample code and further information */ /* NOTE: diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTError.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTError.java index 03fc3534280..8d6d8f4c244 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTError.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTError.java @@ -37,7 +37,7 @@ * * @see SWTException * @see SWT#error(int) - * @see Sample code and further information + * @see Sample code and further information */ public class SWTError extends Error { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTException.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTException.java index 2c7ab43a2b9..815bb09b898 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTException.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/SWTException.java @@ -28,7 +28,7 @@ *

    * * @see SWTError - * @see Sample code and further information + * @see Sample code and further information */ public class SWTException extends RuntimeException { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ArmEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ArmEvent.java index 5c1650603b2..a0bbe6c4bc0 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ArmEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ArmEvent.java @@ -21,7 +21,7 @@ * a widget such as a menu item being armed. * * @see ArmListener - * @see Sample code and further information + * @see Sample code and further information */ public final class ArmEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlAdapter.java index f51fa5e6eb3..9dd06ecb354 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlAdapter.java @@ -32,7 +32,7 @@ * * @see ControlListener * @see ControlEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class ControlAdapter implements ControlListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlEvent.java index 3818e4dd570..370b1c75932 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ControlEvent.java @@ -21,7 +21,7 @@ * controls being moved or resized. * * @see ControlListener - * @see Sample code and further information + * @see Sample code and further information */ public final class ControlEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DisposeEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DisposeEvent.java index 3d3b49e3cd8..d96f2de69a4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DisposeEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DisposeEvent.java @@ -21,7 +21,7 @@ * widgets being disposed. * * @see DisposeListener - * @see Sample code and further information + * @see Sample code and further information */ public final class DisposeEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectEvent.java index 904b81cf525..d8d3a43a70e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectEvent.java @@ -20,7 +20,7 @@ * a drag gesture. * * @see DragDetectListener - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandAdapter.java index da64f5f8c94..fdd9e2637b0 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandAdapter.java @@ -31,7 +31,7 @@ * * @see ExpandListener * @see ExpandEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandEvent.java index 8c141181d74..dfb923dfdb9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ExpandEvent.java @@ -21,7 +21,7 @@ * ExpandItems being expanded or collapsed. * * @see ExpandListener - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusAdapter.java index d6d9e0a7390..acab5f68f7b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusAdapter.java @@ -25,7 +25,7 @@ * * @see FocusListener * @see FocusEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class FocusAdapter implements FocusListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusEvent.java index e89d02117d4..f4f42a5c24e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/FocusEvent.java @@ -21,7 +21,7 @@ * widgets gaining and losing focus. * * @see FocusListener - * @see Sample code and further information + * @see Sample code and further information */ public final class FocusEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/GestureEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/GestureEvent.java index 05837dab98f..65b2ed3deb2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/GestureEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/GestureEvent.java @@ -21,7 +21,7 @@ * touch-based gestures that are triggered by the user. * * @see GestureListener - * @see Sample code and further information + * @see Sample code and further information * * @since 3.7 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/HelpEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/HelpEvent.java index 44c5d65cad7..410de528a36 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/HelpEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/HelpEvent.java @@ -21,7 +21,7 @@ * help being requested for a widget. * * @see HelpListener - * @see Sample code and further information + * @see Sample code and further information */ public final class HelpEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyAdapter.java index c523b460806..d45010e1484 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyAdapter.java @@ -25,7 +25,7 @@ * * @see KeyListener * @see KeyEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class KeyAdapter implements KeyListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyEvent.java index 54cd6e74e50..8c6bd92c3a8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/KeyEvent.java @@ -34,7 +34,7 @@ * * @see KeyListener * @see TraverseListener - * @see Sample code and further information + * @see Sample code and further information */ public class KeyEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuAdapter.java index 450ce002fb2..151f385ecfd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuAdapter.java @@ -32,7 +32,7 @@ * * @see MenuListener * @see MenuEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class MenuAdapter implements MenuListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuDetectEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuDetectEvent.java index 99c5b7a9328..9ad3e7793ba 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuDetectEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuDetectEvent.java @@ -21,7 +21,7 @@ * specific trigger for showing a context menu is detected. * * @see MenuDetectListener - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuEvent.java index 179e8998e4c..abbe18d3dfa 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MenuEvent.java @@ -21,7 +21,7 @@ * menus being shown and hidden. * * @see MenuListener - * @see Sample code and further information + * @see Sample code and further information */ public final class MenuEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ModifyEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ModifyEvent.java index 7a59e891f2b..a5fd0880cbd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ModifyEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ModifyEvent.java @@ -21,7 +21,7 @@ * text being modified. * * @see ModifyListener - * @see Sample code and further information + * @see Sample code and further information */ public final class ModifyEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseAdapter.java index fb830b8ba6c..8ca610096bb 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseAdapter.java @@ -26,7 +26,7 @@ * * @see MouseListener * @see MouseEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class MouseAdapter implements MouseListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseEvent.java index 24a36df298a..b317da8641d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseEvent.java @@ -30,7 +30,7 @@ * @see MouseListener * @see MouseMoveListener * @see MouseTrackListener - * @see Sample code and further information + * @see Sample code and further information */ public class MouseEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseTrackAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseTrackAdapter.java index 52664798e82..a67ed7d1382 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseTrackAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/MouseTrackAdapter.java @@ -34,7 +34,7 @@ * * @see MouseTrackListener * @see MouseEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class MouseTrackAdapter implements MouseTrackListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/PaintEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/PaintEvent.java index ca808488114..e1b7f3fd9e7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/PaintEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/PaintEvent.java @@ -22,7 +22,7 @@ * visible areas of controls requiring re-painting. * * @see PaintListener - * @see Sample code and further information + * @see Sample code and further information */ public final class PaintEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionAdapter.java index 12452bead80..4bd6f9fafb6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionAdapter.java @@ -32,7 +32,7 @@ * * @see SelectionListener * @see SelectionEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class SelectionAdapter implements SelectionListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionEvent.java index aa6bc87a2ab..66f6a756d67 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/SelectionEvent.java @@ -24,7 +24,7 @@ *

    * * @see SelectionListener - * @see Sample code and further information + * @see Sample code and further information */ public class SelectionEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellAdapter.java index 7ac95a2469e..ae7f4373e02 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellAdapter.java @@ -29,7 +29,7 @@ * * @see ShellListener * @see ShellEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class ShellAdapter implements ShellListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellEvent.java index c726bf87937..9fa40be6ece 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/ShellEvent.java @@ -21,7 +21,7 @@ * operations being performed on shells. * * @see ShellListener - * @see Sample code and further information + * @see Sample code and further information */ public final class ShellEvent extends TypedEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TouchEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TouchEvent.java index b610271c9b4..cd46e10e065 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TouchEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TouchEvent.java @@ -21,7 +21,7 @@ * a touch-based input source being touched. * * @see TouchListener - * @see Sample code and further information + * @see Sample code and further information * * @since 3.7 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TraverseEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TraverseEvent.java index 3cdf7081065..bb7e55eab23 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TraverseEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TraverseEvent.java @@ -78,7 +78,7 @@ *

    * * @see TraverseListener - * @see Sample code and further information + * @see Sample code and further information */ public final class TraverseEvent extends KeyEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeAdapter.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeAdapter.java index 3b706428e66..e3c46637897 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeAdapter.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeAdapter.java @@ -32,7 +32,7 @@ * * @see TreeListener * @see TreeEvent - * @see Sample code and further information + * @see Sample code and further information */ public abstract class TreeAdapter implements TreeListener { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeEvent.java index 51f7afd06c5..da1c0118ed8 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TreeEvent.java @@ -21,7 +21,7 @@ * trees being expanded and collapsed. * * @see TreeListener - * @see Sample code and further information + * @see Sample code and further information */ public final class TreeEvent extends SelectionEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java index a87fabf86c5..752ad9401b4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/TypedEvent.java @@ -24,7 +24,7 @@ * applicable to the event occurrence. * * @see org.eclipse.swt.widgets.Event - * @see Sample code and further information + * @see Sample code and further information */ public class TypedEvent extends EventObject { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/VerifyEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/VerifyEvent.java index 4e2db421e22..57361e92876 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/VerifyEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/VerifyEvent.java @@ -21,7 +21,7 @@ * widgets handling keyboard events * * @see VerifyListener - * @see Sample code and further information + * @see Sample code and further information */ public final class VerifyEvent extends KeyEvent { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/GlyphMetrics.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/GlyphMetrics.java index 45da4ea1c72..7e94518a404 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/GlyphMetrics.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/GlyphMetrics.java @@ -31,7 +31,7 @@ * * @see TextStyle * @see TextLayout - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageData.java index 1cf1123faaa..8055d13bf83 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageData.java @@ -33,9 +33,9 @@ * * @see Image * @see ImageLoader - * @see ImageData snippets - * @see SWT Example: ImageAnalyzer - * @see Sample code and further information + * @see ImageData snippets + * @see SWT Example: ImageAnalyzer + * @see Sample code and further information */ public final class ImageData implements Cloneable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoader.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoader.java index a38042ae2a9..66e8e294f44 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoader.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoader.java @@ -50,8 +50,8 @@ * benefit from using one of the constructors provided by Image, as these * are implemented natively.

    * - * @see SWT Example: ImageAnalyzer - * @see Sample code and further information + * @see SWT Example: ImageAnalyzer + * @see Sample code and further information */ public class ImageLoader { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoaderEvent.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoaderEvent.java index 64a9fbe02e7..c91a8d58eb6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoaderEvent.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/ImageLoaderEvent.java @@ -32,7 +32,7 @@ * * @see ImageLoader * @see ImageLoaderListener - * @see Sample code and further information + * @see Sample code and further information */ public class ImageLoaderEvent extends EventObject { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java index 5ebfc087c74..ce67fd08cb3 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/LineAttributes.java @@ -26,7 +26,7 @@ * * @see GC#getLineAttributes() * @see GC#setLineAttributes(LineAttributes) - * @see Sample code and further information + * @see Sample code and further information * * @since 3.3 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PaletteData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PaletteData.java index faabb4e868c..8dd33426b3a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PaletteData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PaletteData.java @@ -54,7 +54,7 @@ * * @see Image * @see RGB - * @see Sample code and further information + * @see Sample code and further information */ public final class PaletteData { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PathData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PathData.java index c07dc0eb66e..7683852b9cf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PathData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/PathData.java @@ -18,7 +18,7 @@ * Instances of this class describe device-independent paths. * * @see Path - * @see Sample code and further information + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Point.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Point.java index 66bf7cb694f..cdb5c7dad7b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Point.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Point.java @@ -40,7 +40,7 @@ *

    * * @see Rectangle - * @see Sample code and further information + * @see Sample code and further information */ public sealed class Point implements Serializable, Cloneable permits Point.OfFloat { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java index bd62463c38d..58c0aacd83f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java @@ -38,8 +38,8 @@ *

    * * @see Color - * @see Color and RGB snippets - * @see Sample code and further information + * @see Color and RGB snippets + * @see Sample code and further information */ public final class RGB implements Serializable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGBA.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGBA.java index efb687c0050..2e170115049 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGBA.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGBA.java @@ -39,8 +39,8 @@ *

    * * @see Color - * @see Color and RGB snippets - * @see Sample code and further information + * @see Color and RGB snippets + * @see Sample code and further information * @since 3.104 */ public final class RGBA implements Serializable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Rectangle.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Rectangle.java index 24055b7bcba..12472b05a2f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Rectangle.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Rectangle.java @@ -43,7 +43,7 @@ *

    * * @see Point - * @see Sample code and further information + * @see Sample code and further information */ public sealed class Rectangle implements Serializable, Cloneable permits Rectangle.OfFloat { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Resource.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Resource.java index a45be4630cd..845acaa3d91 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Resource.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/Resource.java @@ -41,7 +41,7 @@ * * @see #dispose * @see #isDisposed - * @see Sample code and further information + * @see Sample code and further information * * @since 3.1 */ 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 0cf9ed1779c..d7ee3d6c829 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 @@ -33,8 +33,8 @@ * @see TextLayout * @see Font * @see Color - * @see TextLayout, TextStyle snippets - * @see Sample code and further information + * @see TextLayout, TextStyle snippets + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FillLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FillLayout.java index 9fc9f6963ed..016344e2265 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FillLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FillLayout.java @@ -44,8 +44,8 @@ * shell.setLayout(fillLayout); * * - * @see SWT Example: LayoutExample - * @see Sample code and further information + * @see SWT Example: LayoutExample + * @see Sample code and further information */ public final class FillLayout extends Layout { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java index c7bc0ef9180..82ae4e8f504 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormAttachment.java @@ -75,7 +75,7 @@ * * @see FormLayout * @see FormData - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormData.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormData.java index 56100f88c2a..23db55603dd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormData.java @@ -42,7 +42,7 @@ * * @see FormLayout * @see FormAttachment - * @see Sample code and further information + * @see Sample code and further information * * @since 2.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java index a375ca82c57..01d6a330800 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/FormLayout.java @@ -83,9 +83,9 @@ * * @see FormData * @see FormAttachment - * @see FormLayout snippets - * @see SWT Example: LayoutExample - * @see Sample code and further information + * @see FormLayout snippets + * @see SWT Example: LayoutExample + * @see Sample code and further information * * @since 2.0 */ 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 3ecff268ff1..96e61dd9dcd 100644 --- 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 @@ -53,7 +53,7 @@ * * @see GridLayout * @see Control#setLayoutData - * @see Sample code and further information + * @see Sample code and further information */ public final class GridData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java index d0bb2c6f422..f250928da91 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/GridLayout.java @@ -44,9 +44,9 @@ *

    * * @see GridData - * @see GridLayout snippets - * @see SWT Example: LayoutExample - * @see Sample code and further information + * @see GridLayout snippets + * @see SWT Example: LayoutExample + * @see Sample code and further information */ public final class GridLayout extends Layout { 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 755917f16eb..285310c99cb 100644 --- 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 @@ -34,7 +34,7 @@ * * * @see RowLayout - * @see Sample code and further information + * @see Sample code and further information */ public final class RowData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java index cb21fcd139a..1eefdcf3af7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/RowLayout.java @@ -53,9 +53,9 @@ * * * @see RowData - * @see RowLayout snippets - * @see SWT Example: LayoutExample - * @see Sample code and further information + * @see RowLayout snippets + * @see SWT Example: LayoutExample + * @see Sample code and further information */ public final class RowLayout extends Layout { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Dialog.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Dialog.java index 06be1659651..8d12b5490bd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Dialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Dialog.java @@ -75,8 +75,8 @@ *

    * * @see Shell - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information */ public abstract class Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java index 5e2fbe1f0f3..c3ba31d757a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Event.java @@ -28,8 +28,8 @@ * * @see Listener * @see org.eclipse.swt.events.TypedEvent - * @see SWT Example: ControlExample, Listeners - * @see Sample code and further information + * @see SWT Example: ControlExample, Listeners + * @see Sample code and further information */ public class Event { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Item.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Item.java index f76891011fe..fd33f71ca76 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Item.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Item.java @@ -29,7 +29,7 @@ *
    (none)
    * * - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Item extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Layout.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Layout.java index 980c701f454..e630c86cf49 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Layout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Layout.java @@ -23,7 +23,7 @@ * layouts. * * @see Composite#setLayout(Layout) - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Layout { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Monitor.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Monitor.java index b27a1b790dd..020064d83f6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Monitor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Monitor.java @@ -19,8 +19,8 @@ * Instances of this class are descriptions of monitors. * * @see Display - * @see Monitor snippets - * @see Sample code and further information + * @see Monitor snippets + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java index 18819ca2614..e811394a6a6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Synchronizer.java @@ -35,7 +35,7 @@ *

    * * @see Display#setSynchronizer - * @see Sample code and further information + * @see Sample code and further information */ public class Synchronizer { Display display; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java index f28d9a087ec..337a448c32d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Touch.java @@ -19,7 +19,7 @@ * in the touches field of an Event or TouchEvent. * * @see org.eclipse.swt.events.TouchEvent - * @see Sample code and further information + * @see Sample code and further information * * @since 3.7 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TouchSource.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TouchSource.java index d74cf171cee..81e407cb54f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TouchSource.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TouchSource.java @@ -36,7 +36,7 @@ * * * @see Touch - * @see Sample code and further information + * @see Sample code and further information * * @since 3.7 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Tray.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Tray.java index f1ceb44ace9..5d90b89b79f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Tray.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/Tray.java @@ -31,8 +31,8 @@ *

    * * @see Display#getSystemTray - * @see Tray, TrayItem snippets - * @see Sample code and further information + * @see Tray, TrayItem snippets + * @see Sample code and further information * * @since 3.0 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TypedListener.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TypedListener.java index 9ff388a435c..2d7a1f43acd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TypedListener.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/TypedListener.java @@ -32,7 +32,7 @@ *

    * * @see Listener - * @see Sample code and further information + * @see Sample code and further information * @noreference This class is not intended to be referenced by clients. * @noextend This class is not intended to be subclassed by clients. * @noinstantiate This class is not intended to be instantiated by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java index b546fd9795c..50e161e6f56 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolBar.java @@ -40,9 +40,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see CoolBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see CoolBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class CoolBar extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java index 5a4f5112de6..840558f733c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/coolbar/org/eclipse/swt/widgets/CoolItem.java @@ -32,7 +32,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class CoolItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandBar.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandBar.java index 659f6011b08..7287223c120 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandBar.java @@ -38,9 +38,9 @@ * @see ExpandEvent * @see ExpandListener * @see ExpandAdapter - * @see ExpandBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ExpandBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandItem.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandItem.java index f50b692eb1b..435b7b2013d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/expand/org/eclipse/swt/widgets/ExpandItem.java @@ -30,7 +30,7 @@ *

    * * @see ExpandBar - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskBar.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskBar.java index f37128e3b86..357a0f3e0ef 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskBar.java @@ -27,7 +27,7 @@ * * * @see Display#getSystemTaskBar - * @see Sample code and further information + * @see Sample code and further information * * @since 3.6 * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskItem.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskItem.java index 589ca8671ba..3a7679f105f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/taskbar/org/eclipse/swt/widgets/TaskItem.java @@ -27,7 +27,7 @@ *
    (none)
    * * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.6 * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/emulated/tooltip/org/eclipse/swt/widgets/ToolTip.java b/bundles/org.eclipse.swt/Eclipse SWT/emulated/tooltip/org/eclipse/swt/widgets/ToolTip.java index b424bf8e35c..a4a63316caf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/emulated/tooltip/org/eclipse/swt/widgets/ToolTip.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/emulated/tooltip/org/eclipse/swt/widgets/ToolTip.java @@ -34,9 +34,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tool Tips snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Tool Tips snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java index c9cbd1de6d9..27a950c938c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Color.java @@ -30,9 +30,9 @@ * @see RGB * @see RGBA * @see Device#getSystemColor - * @see Color and RGB snippets - * @see SWT Example: PaintExample - * @see Sample code and further information + * @see Color and RGB snippets + * @see SWT Example: PaintExample + * @see Sample code and further information */ public final class Color extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java index 1ef5479226f..b9b102e27a9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Cursor.java @@ -42,8 +42,8 @@ * Note: Only one of the above styles may be specified. *

    * - * @see Cursor snippets - * @see Sample code and further information + * @see Cursor snippets + * @see Sample code and further information */ public final class Cursor extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java index 02f4c26c4ac..da5f51830bd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Device.java @@ -30,7 +30,7 @@ * can have a graphics context (GC) created for them, and they * can be drawn on by sending messages to the associated GC. * - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Device implements Drawable { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Font.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Font.java index a394f1090ae..e46298e36ab 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Font.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Font.java @@ -30,9 +30,9 @@ *

    * * @see FontData - * @see Font snippets - * @see SWT Examples: GraphicsExample, PaintExample - * @see Sample code and further information + * @see Font snippets + * @see SWT Examples: GraphicsExample, PaintExample + * @see Sample code and further information */ public final class Font extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontData.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontData.java index d95defbbfe6..b43108f3ef5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontData.java @@ -39,7 +39,7 @@ * required, and thus no dispose() method is provided. * * @see Font - * @see Sample code and further information + * @see Sample code and further information */ public final class FontData { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontMetrics.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontMetrics.java index 3b762e9429f..836325ca747 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontMetrics.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/FontMetrics.java @@ -21,7 +21,7 @@ * using the getFontMetrics() method. * * @see GC#getFontMetrics - * @see Sample code and further information + * @see Sample code and further information */ public final class FontMetrics { int ascentInPoints, descentInPoints, averageCharWidthInPoints; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java index 9ce5b2b763b..5d358be4b18 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GC.java @@ -56,9 +56,9 @@ *

    * * @see org.eclipse.swt.events.PaintEvent - * @see GC snippets - * @see SWT Examples: GraphicsExample, PaintExample - * @see Sample code and further information + * @see GC snippets + * @see SWT Examples: GraphicsExample, PaintExample + * @see Sample code and further information */ public final class GC extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GCData.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GCData.java index ad4a198c4cb..ea84fd4f76f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GCData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/GCData.java @@ -26,7 +26,7 @@ * within the packages provided by SWT. It is not available on all * platforms, and should never be called from application code. *

    - * @see Sample code and further information + * @see Sample code and further information * @noreference This class is not intended to be referenced by clients */ public final class GCData { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java index fca8897a2b6..cbd3348943f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java @@ -73,9 +73,9 @@ * @see Color * @see ImageData * @see ImageLoader - * @see Image snippets - * @see SWT Examples: GraphicsExample, ImageAnalyzer - * @see Sample code and further information + * @see Image snippets + * @see SWT Examples: GraphicsExample, ImageAnalyzer + * @see Sample code and further information */ public final class Image extends Resource implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Region.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Region.java index d9ad3835b77..929e6435e14 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Region.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Region.java @@ -28,8 +28,8 @@ * when those instances are no longer required. *

    * - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see SWT Example: GraphicsExample + * @see Sample code and further information */ public final class Region extends Resource { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java index 67e6e9f024e..0cf16e2b58b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/TextLayout.java @@ -33,9 +33,9 @@ * when those instances are no longer required. *

    * - * @see TextLayout, TextStyle snippets - * @see SWT Example: CustomControlExample, StyledText tab - * @see Sample code and further information + * @see TextLayout, TextStyle snippets + * @see SWT Example: CustomControlExample, StyledText tab + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java index c84592e4273..3d03725768e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Button.java @@ -44,9 +44,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Button snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Button snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Button extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Canvas.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Canvas.java index ed63665a5f5..250818d83b6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Canvas.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Canvas.java @@ -37,9 +37,9 @@ *

    * * @see Composite - * @see Canvas snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Canvas snippets + * @see SWT Example: ControlExample + * @see Sample code and further information */ public class Canvas extends Composite { Caret caret; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Caret.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Caret.java index d2e7a96c3b2..70d98a23a11 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Caret.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Caret.java @@ -32,9 +32,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Caret snippets - * @see SWT Example: ControlExample, Canvas tab - * @see Sample code and further information + * @see Caret snippets + * @see SWT Example: ControlExample, Canvas tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Caret extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ColorDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ColorDialog.java index cd31c163d17..f886ac1e482 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ColorDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ColorDialog.java @@ -34,8 +34,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ColorDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java index 7cef5546c85..d58fed8720e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Combo.java @@ -56,9 +56,9 @@ *

    * * @see List - * @see Combo snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Combo snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Combo extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java index 4bd1395e575..0c1cebdd5a6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Composite.java @@ -51,8 +51,8 @@ *

    * * @see Canvas - * @see Composite snippets - * @see Sample code and further information + * @see Composite snippets + * @see Sample code and further information */ public class Composite extends Scrollable { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java index dc550606239..9e7c4f9eac2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Control.java @@ -46,9 +46,9 @@ * within the SWT implementation. *

    * - * @see Control snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Control snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public abstract class Control extends Widget implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java index 9eb47806fda..0abb93035b7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DateTime.java @@ -56,9 +56,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see DateTime snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see DateTime snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.3 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Decorations.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Decorations.java index a5c0d23a9d2..516a600858e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Decorations.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Decorations.java @@ -96,7 +96,7 @@ * @see #getMaximized * @see Shell * @see SWT - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Decorations extends Canvas { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java index 5bbf30ec8d8..81900252b8b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/DirectoryDialog.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see DirectoryDialog snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see DirectoryDialog snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DirectoryDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java index c94e0a0ce43..23b874a09e2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Display.java @@ -110,8 +110,8 @@ * @see #readAndDispatch * @see #sleep * @see Device#dispose - * @see Display snippets - * @see Sample code and further information + * @see Display snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Display extends Device implements Executor { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandBar.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandBar.java index 3fa26206995..65cccf57441 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandBar.java @@ -41,9 +41,9 @@ * @see ExpandEvent * @see ExpandListener * @see ExpandAdapter - * @see ExpandBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ExpandBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java index ed01f71aede..00316ae2b2a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ExpandItem.java @@ -34,7 +34,7 @@ *

    * * @see ExpandBar - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java index b4b0cd97c9a..34f0a0009f7 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FileDialog.java @@ -38,9 +38,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see FileDialog snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see FileDialog snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class FileDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FontDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FontDialog.java index dcffa7325a3..45b35ca6135 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FontDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/FontDialog.java @@ -34,8 +34,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class FontDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java index f963ffc1f63..29a48c7195b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Group.java @@ -41,8 +41,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Group extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java index 5d571e001f3..d2fda25ae37 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/IME.java @@ -36,7 +36,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.4 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java index d63b10d386a..730536e17e5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Label.java @@ -49,9 +49,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Label snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Label snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Label extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java index 90bb4f57134..664bc698f5a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Link.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Link snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Link snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java index 8361ea961cd..277eef8e05b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/List.java @@ -38,9 +38,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see List snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see List snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class List extends Scrollable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java index 8d094db726e..77bab4525db 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Menu.java @@ -40,9 +40,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Menu snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Menu snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Menu extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java index edc9eb543ee..ed6159fb22f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MenuItem.java @@ -39,7 +39,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class MenuItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java index 503859d4f56..1141e91757c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/MessageBox.java @@ -41,8 +41,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class MessageBox extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java index 90883931bba..298f68cf691 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ProgressBar.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ProgressBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ProgressBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ProgressBar extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java index c13e03c2671..0fb317b69ae 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Sash.java @@ -37,9 +37,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sash snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Sash snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Sash extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scale.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scale.java index c65bfd7367e..784e5dcb40d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scale.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scale.java @@ -37,9 +37,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Scale snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Scale snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Scale extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java index 18a0a901336..7a0891eada4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ScrollBar.java @@ -84,8 +84,8 @@ * @see Scrollable * @see Scrollable#getHorizontalBar * @see Scrollable#getVerticalBar - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ScrollBar extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scrollable.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scrollable.java index de4d87922b0..d513a674ed9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scrollable.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Scrollable.java @@ -34,7 +34,7 @@ * within the SWT implementation. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public abstract class Scrollable extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java index 0b087dfd3ba..92949657701 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java @@ -118,9 +118,9 @@ * * @see Decorations * @see SWT - * @see Shell snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Shell snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Shell extends Decorations { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Slider.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Slider.java index bf034dc2fd1..6ba64a0d29c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Slider.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Slider.java @@ -70,9 +70,9 @@ *

    * * @see ScrollBar - * @see Slider snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Slider snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Slider extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java index ebb3fd2cd49..95077da2d68 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Spinner.java @@ -40,9 +40,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Spinner snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Spinner snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java index 560a62cd0b8..b1baaa5d91e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabFolder.java @@ -47,9 +47,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see TabFolder, TabItem snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see TabFolder, TabItem snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TabFolder extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java index c93fe2b476e..48ad410737b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TabItem.java @@ -34,8 +34,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see TabFolder, TabItem snippets - * @see Sample code and further information + * @see TabFolder, TabItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TabItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java index 1a87b7746f0..139d83f6a05 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Table.java @@ -69,9 +69,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Table extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java index c8aeff5d792..526f64d0c02 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableColumn.java @@ -36,8 +36,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TableColumn extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java index cc2c8d8ca8c..6d990c8c6a4 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java @@ -35,8 +35,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TableItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java index 429847b7e28..afea5a15e9f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Text.java @@ -59,9 +59,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Text snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Text snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Text extends Scrollable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java index b39040115ea..172568fe86e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolBar.java @@ -46,9 +46,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ToolBar, ToolItem snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ToolBar, ToolItem snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ToolBar extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java index 52d3d75f4c4..83cdad2a622 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolItem.java @@ -41,8 +41,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ToolBar, ToolItem snippets - * @see Sample code and further information + * @see ToolBar, ToolItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ToolItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java index 2f3eb3c50de..31d83e12536 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ToolTip.java @@ -39,9 +39,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tool Tips snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Tool Tips snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java index 5a10d15152c..194e2fcce98 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tracker.java @@ -42,8 +42,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tracker snippets - * @see Sample code and further information + * @see Tracker snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Tracker extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java index 108b528ca43..a0b6cdef7b0 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TrayItem.java @@ -34,8 +34,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tray, TrayItem snippets - * @see Sample code and further information + * @see Tray, TrayItem snippets + * @see Sample code and further information * * @since 3.0 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java index ac7b1c992f6..419652ae627 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java @@ -77,9 +77,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Tree extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java index c19903eb559..23b4a70bd7d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeColumn.java @@ -36,8 +36,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java index 65def31550c..1a44f1d1494 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TreeItem.java @@ -35,8 +35,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TreeItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java index fc92dda44f8..58ea0487af1 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Widget.java @@ -49,7 +49,7 @@ *

    * * @see #checkSubclass - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Widget { /** diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Color.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Color.java index 319fef5ed2d..3f186afbe7e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Color.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Color.java @@ -29,9 +29,9 @@ * @see RGB * @see RGBA * @see Device#getSystemColor - * @see Color and RGB snippets - * @see SWT Example: PaintExample - * @see Sample code and further information + * @see Color and RGB snippets + * @see SWT Example: PaintExample + * @see Sample code and further information */ public final class Color extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java index e031f16d5ea..a406ea1ee90 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Cursor.java @@ -45,8 +45,8 @@ * Note: Only one of the above styles may be specified. *

    * - * @see Cursor snippets - * @see Sample code and further information + * @see Cursor snippets + * @see Sample code and further information */ public final class Cursor extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java index 4064b55a66e..203cc8e2b92 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Device.java @@ -30,7 +30,7 @@ * can have a graphics context (GC) created for them, and they * can be drawn on by sending messages to the associated GC. * - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Device implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Font.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Font.java index bfc17a166ed..784b362e64e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Font.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Font.java @@ -30,9 +30,9 @@ *

    * * @see FontData - * @see Font snippets - * @see SWT Examples: GraphicsExample, PaintExample - * @see Sample code and further information + * @see Font snippets + * @see SWT Examples: GraphicsExample, PaintExample + * @see Sample code and further information */ public final class Font extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java index 7d99865c643..ffdf3258308 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontData.java @@ -41,7 +41,7 @@ * required, and thus no dispose() method is provided. * * @see Font - * @see Sample code and further information + * @see Sample code and further information */ public final class FontData { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontMetrics.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontMetrics.java index f9250271b7e..457d3d8f029 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontMetrics.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/FontMetrics.java @@ -25,7 +25,7 @@ * using the getFontMetrics() method. * * @see GC#getFontMetrics - * @see Sample code and further information + * @see Sample code and further information */ public final class FontMetrics { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java index fa44dbe351f..85a110bb40d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GC.java @@ -59,9 +59,9 @@ *

    * * @see org.eclipse.swt.events.PaintEvent - * @see GC snippets - * @see SWT Examples: GraphicsExample, PaintExample - * @see Sample code and further information + * @see GC snippets + * @see SWT Examples: GraphicsExample, PaintExample + * @see Sample code and further information */ public final class GC extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GCData.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GCData.java index 9e22aab2a42..a8ccae520a9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GCData.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/GCData.java @@ -26,7 +26,7 @@ * within the packages provided by SWT. It is not available on all * platforms, and should never be called from application code. *

    - * @see Sample code and further information + * @see Sample code and further information * @noreference This class is not intended to be referenced by clients */ public final class GCData { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java index 55c984bf2a5..eed02b72093 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Image.java @@ -76,9 +76,9 @@ * @see Color * @see ImageData * @see ImageLoader - * @see Image snippets - * @see SWT Examples: GraphicsExample, ImageAnalyzer - * @see Sample code and further information + * @see Image snippets + * @see SWT Examples: GraphicsExample, ImageAnalyzer + * @see Sample code and further information */ public final class Image extends Resource implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Path.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Path.java index ce85a1ad877..022e4852033 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Path.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Path.java @@ -36,9 +36,9 @@ * which may not be available on some platforms. *

    * - * @see Path, Pattern snippets - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see Path, Pattern snippets + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Pattern.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Pattern.java index e6bf643fa7e..5afccb2f3b2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Pattern.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Pattern.java @@ -33,9 +33,9 @@ * which may not be available on some platforms. *

    * - * @see Path, Pattern snippets - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see Path, Pattern snippets + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Region.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Region.java index fd56b80abcb..8aa648f3787 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Region.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Region.java @@ -32,8 +32,8 @@ * when those instances are no longer required. *

    * - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see SWT Example: GraphicsExample + * @see Sample code and further information */ public final class Region extends Resource { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java index 2f9a3c776c0..0dd41a0f02b 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/TextLayout.java @@ -34,9 +34,9 @@ * when those instances are no longer required. *

    * - * @see TextLayout, TextStyle snippets - * @see SWT Example: CustomControlExample, StyledText tab - * @see Sample code and further information + * @see TextLayout, TextStyle snippets + * @see SWT Example: CustomControlExample, StyledText tab + * @see Sample code and further information * * @since 3.0 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Transform.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Transform.java index 7923f7509c2..c6deff5c450 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Transform.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/graphics/Transform.java @@ -33,8 +33,8 @@ * which may not be available on some platforms. *

    * - * @see SWT Example: GraphicsExample - * @see Sample code and further information + * @see SWT Example: GraphicsExample + * @see Sample code and further information * * @since 3.1 */ diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java index 5a4e7ca575b..8a72095b366 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Button.java @@ -44,9 +44,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Button snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Button snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Button extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java index c86893f3c75..cf4df92bc54 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java @@ -37,9 +37,9 @@ *

    * * @see Composite - * @see Canvas snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Canvas snippets + * @see SWT Example: ControlExample + * @see Sample code and further information */ public class Canvas extends Composite { Caret caret; diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Caret.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Caret.java index 8d5806dba02..dde6abb60ee 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Caret.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Caret.java @@ -34,9 +34,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Caret snippets - * @see SWT Example: ControlExample, Canvas tab - * @see Sample code and further information + * @see Caret snippets + * @see SWT Example: ControlExample, Canvas tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Caret extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ColorDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ColorDialog.java index 7eab272d362..900ac79db3e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ColorDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ColorDialog.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ColorDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java index f10bde00b24..7226e28d55d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Combo.java @@ -55,9 +55,9 @@ *

    * * @see List - * @see Combo snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Combo snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Combo extends Composite { 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 10646461f88..bda694137da 100644 --- 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 @@ -46,8 +46,8 @@ *

    * * @see Canvas - * @see Composite snippets - * @see Sample code and further information + * @see Composite snippets + * @see Sample code and further information */ public class Composite extends Scrollable { Layout layout; 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 7f6843c1cf8..15873a83b54 100644 --- 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 @@ -48,9 +48,9 @@ * within the SWT implementation. *

    * - * @see Control snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Control snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public abstract class Control extends Widget implements Drawable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolBar.java index 20dcb195146..afca95dca5f 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolBar.java @@ -42,9 +42,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see CoolBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see CoolBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class CoolBar extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolItem.java index f803a3985a5..477049453ec 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/CoolItem.java @@ -34,7 +34,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class CoolItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DateTime.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DateTime.java index cabeb3b5ea7..d469ad280a6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DateTime.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DateTime.java @@ -41,9 +41,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see DateTime snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see DateTime snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.3 * @noextend This class is not intended to be subclassed by clients. 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 0fb3d8a7b26..734a266b700 100644 --- 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 @@ -94,7 +94,7 @@ * @see #getMaximized * @see Shell * @see SWT - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Decorations extends Canvas { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java index 13701b11236..09d519a6c93 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/DirectoryDialog.java @@ -34,9 +34,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see DirectoryDialog snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see DirectoryDialog snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class DirectoryDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java index ec46824b186..8796d214a32 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java @@ -102,8 +102,8 @@ * @see #readAndDispatch * @see #sleep * @see Device#dispose - * @see Display snippets - * @see Sample code and further information + * @see Display snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Display extends Device implements Executor { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java index f8bb6a8588d..073afd3700e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandBar.java @@ -40,9 +40,9 @@ * @see ExpandEvent * @see ExpandListener * @see ExpandAdapter - * @see ExpandBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ExpandBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java index a510df48ce8..b55680d171d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ExpandItem.java @@ -32,7 +32,7 @@ *

    * * @see ExpandBar - * @see Sample code and further information + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java index f3b8c2beb90..3996c8f13f5 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FileDialog.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see FileDialog snippets - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see FileDialog snippets + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class FileDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FontDialog.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FontDialog.java index 2c564c19750..3e5b1ab091e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FontDialog.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/FontDialog.java @@ -31,8 +31,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class FontDialog extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Group.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Group.java index b322d254507..3872a19efb3 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Group.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Group.java @@ -39,8 +39,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Group extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java index 38ab4f874f7..dc5467b3451 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/IME.java @@ -36,7 +36,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.4 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java index d5903741a75..70c1835b706 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Label.java @@ -47,9 +47,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Label snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Label snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Label extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java index 0e20b8175d3..1c835c5ae32 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Link.java @@ -37,9 +37,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Link snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Link snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java index 65cce194f31..5e4971e9962 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/List.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see List snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see List snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class List extends Scrollable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java index 82b95c4729b..8c359cf8878 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Menu.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Menu snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Menu snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Menu extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java index 8bcf053eb0a..1f8daf090d9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MenuItem.java @@ -37,7 +37,7 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class MenuItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MessageBox.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MessageBox.java index d596cd10c7c..1b69bfa31c1 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MessageBox.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/MessageBox.java @@ -39,8 +39,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see SWT Example: ControlExample, Dialog tab - * @see Sample code and further information + * @see SWT Example: ControlExample, Dialog tab + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class MessageBox extends Dialog { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java index 18360ac352b..9a3d4f484e6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ProgressBar.java @@ -35,9 +35,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ProgressBar snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ProgressBar snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ProgressBar extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Sash.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Sash.java index e2d15f7d6df..c01d67b0d24 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Sash.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Sash.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Sash snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Sash snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Sash extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scale.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scale.java index 52a0d21ea97..ddee3e86926 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scale.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scale.java @@ -37,9 +37,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Scale snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Scale snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Scale extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java index a8a2b2bd288..32eec597493 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ScrollBar.java @@ -83,8 +83,8 @@ * @see Scrollable * @see Scrollable#getHorizontalBar * @see Scrollable#getVerticalBar - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ScrollBar extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scrollable.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scrollable.java index 17ce730c52f..e8f0669a3aa 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scrollable.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Scrollable.java @@ -33,7 +33,7 @@ * within the SWT implementation. *

    * - * @see Sample code and further information + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public abstract class Scrollable extends Control { 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 5f2427c6516..e0f3fa115f3 100644 --- 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 @@ -117,9 +117,9 @@ * * @see Decorations * @see SWT - * @see Shell snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Shell snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Shell extends Decorations { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java index bc48568193a..4b64c2a1766 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Slider.java @@ -69,9 +69,9 @@ *

    * * @see ScrollBar - * @see Slider snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Slider snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Slider extends Control { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Spinner.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Spinner.java index 20b18b54164..25a396fd424 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Spinner.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Spinner.java @@ -38,9 +38,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Spinner snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Spinner snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.java index 0f02cc380e3..61b30313ef9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabFolder.java @@ -45,9 +45,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see TabFolder, TabItem snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see TabFolder, TabItem snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TabFolder extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabItem.java index b4901f8bc3a..ed861a95f66 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TabItem.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see TabFolder, TabItem snippets - * @see Sample code and further information + * @see TabFolder, TabItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TabItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java index 41ad7b94a0c..635f9a969c2 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java @@ -69,9 +69,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Table extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java index f173046ab10..00d35c0f42a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java @@ -34,8 +34,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TableColumn extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java index bac7e17b942..156ee7be19a 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableItem.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Table, TableItem, TableColumn snippets - * @see Sample code and further information + * @see Table, TableItem, TableColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TableItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java index 95908c488f9..ce3a60796d1 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskBar.java @@ -34,7 +34,7 @@ * * * @see Display#getSystemTaskBar - * @see Sample code and further information + * @see Sample code and further information * * @since 3.6 * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskItem.java index 2f212b1fe10..2bc9fb0795d 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TaskItem.java @@ -29,7 +29,7 @@ *
    (none)
    * * - * @see Sample code and further information + * @see Sample code and further information * * @since 3.6 * diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java index ba5ae2b23a1..cc5b3069d6c 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java @@ -57,9 +57,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Text snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Text snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Text extends Scrollable { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java index 9cdb484cff4..c0e9186b6ca 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolBar.java @@ -44,9 +44,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ToolBar, ToolItem snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see ToolBar, ToolItem snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ToolBar extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java index 34cf05e7200..587b26f4135 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolItem.java @@ -36,8 +36,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see ToolBar, ToolItem snippets - * @see Sample code and further information + * @see ToolBar, ToolItem snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class ToolItem extends Item { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java index 9555b97868a..49705080807 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/ToolTip.java @@ -36,9 +36,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tool Tips snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Tool Tips snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * * @since 3.2 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java index 9554b24c8f4..14eefbb0809 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java @@ -39,8 +39,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tracker snippets - * @see Sample code and further information + * @see Tracker snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Tracker extends Widget { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java index 7c9286443fe..b6cd0393822 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TrayItem.java @@ -32,8 +32,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tray, TrayItem snippets - * @see Sample code and further information + * @see Tray, TrayItem snippets + * @see Sample code and further information * * @since 3.0 * @noextend This class is not intended to be subclassed by clients. 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 0d1ec4c998f..cd1dec42ca4 100644 --- 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 @@ -72,9 +72,9 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see SWT Example: ControlExample - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see SWT Example: ControlExample + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Tree extends Composite { diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeColumn.java index 6aeb611aa04..0d6924b81e9 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeColumn.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeColumn.java @@ -34,8 +34,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see Sample code and further information * * @since 3.1 * @noextend This class is not intended to be subclassed by clients. diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java index 6f96cf3b3a3..7fbeb06fe0e 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TreeItem.java @@ -33,8 +33,8 @@ * IMPORTANT: This class is not intended to be subclassed. *

    * - * @see Tree, TreeItem, TreeColumn snippets - * @see Sample code and further information + * @see Tree, TreeItem, TreeColumn snippets + * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class TreeItem extends Item { 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 3b4cd1da5a9..4e5197e3e91 100644 --- 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 @@ -48,7 +48,7 @@ *

    * * @see #checkSubclass - * @see Sample code and further information + * @see Sample code and further information */ public abstract class Widget { diff --git a/bundles/org.eclipse.swt/Readme.macOS.md b/bundles/org.eclipse.swt/Readme.macOS.md index bca36ba2007..04d5e7c02dc 100644 --- a/bundles/org.eclipse.swt/Readme.macOS.md +++ b/bundles/org.eclipse.swt/Readme.macOS.md @@ -78,7 +78,7 @@ because all is within the same Git repository. It should only break when things the reason why you should run it from within a second workspace with SWT consumed from a target platform. It modifies SWT *in* the same Git repo. If SWT is also in the same workspace, you will run into issues once some generation breaks SWT. -More information on how to use the generator is available [here](https://www.eclipse.org/swt/macgen.php). Volunteers wanted to convert +More information on how to use the generator is available [here](https://eclipse.dev/eclipse/swt/macgen.html). Volunteers wanted to convert this information into this readme. diff --git a/bundles/org.eclipse.swt/pom.xml b/bundles/org.eclipse.swt/pom.xml index 071ced2d967..58d7fd8112f 100644 --- a/bundles/org.eclipse.swt/pom.xml +++ b/bundles/org.eclipse.swt/pom.xml @@ -1,10 +1,10 @@