Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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://www.eclipse.org/swt/fixbugs.php>
- https://eclipse.dev/eclipse/swt/

Information regarding source code management, builds, coding standards, and more can be found under the following link.

Expand All @@ -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).

- <http://www.eclipse.org/legal/CLA.php>
- https://www.eclipse.org/legal/eca/

## Contact

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="http://www.eclipse.org/swt/snippets/#awt">Swing/AWT snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#awt">Swing/AWT snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="http://www.eclipse.org/swt/snippets/#awt">Swing/AWT snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#awt">Swing/AWT snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="http://www.eclipse.org/swt/snippets/#awt">Swing/AWT snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#awt">Swing/AWT snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
* @see AccessibleEvent
* @see AccessibleControlListener
* @see AccessibleControlEvent
* @see <a href="http://www.eclipse.org/swt/snippets/#accessibility">Accessibility snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#accessibility">Accessibility snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* Class ACC contains all the constants used in defining an
* Accessible object.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @see AccessibleListener
* @see AccessibleEvent
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
* @see AccessibleControlListener
* @see AccessibleControlEvent
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @see AccessibleControlListener
* @see AccessibleControlAdapter
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @see AccessibleListener
* @see AccessibleAdapter
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*
* @see AccessibleTextListener
* @see AccessibleTextEvent
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @see AccessibleTextListener
* @see AccessibleTextAdapter
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
* @see AccessibleEvent
* @see AccessibleControlListener
* @see AccessibleControlEvent
* @see <a href="http://www.eclipse.org/swt/snippets/#accessibility">Accessibility snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#accessibility">Accessibility snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
* @see AccessibleEvent
* @see AccessibleControlListener
* @see AccessibleControlEvent
* @see <a href="http://www.eclipse.org/swt/snippets/#accessibility">Accessibility snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#accessibility">Accessibility snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 2.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/snippets/#browser">Browser snippets</a>
* @see <a href="http://www.eclipse.org/swt/examples.php">SWT Examples: ControlExample, BrowserExample</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#browser">Browser snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/examples.html">SWT Examples: ControlExample, BrowserExample</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
* @noextend This class is not intended to be subclassed by clients.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* which accept a lambda expression or a method reference that implements the event consumer.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* {@link Browser#setUrl(String)} or when the user activates a
* hyperlink.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* which accept a lambda expression or a method reference that implements the event consumer.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* loading of the current URL or when the loading of the current
* URL has been completed.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* The status text is typically displayed in the status bar of
* a browser application.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* {@link TitleListener}'s when the title of the current document
* is available or when it is modified.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* which accept a lambda expression or a method reference that implements the event consumer.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
* @see CloseWindowListener
* @see OpenWindowListener
* @see VisibilityWindowListener
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* <dt><b>Styles:</b><dd>VERTICAL, HORIZONTAL, BORDER
* </dl>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
@Deprecated
public class AnimatedProgress extends Canvas {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
* <li>elements must not exceed the line length
* </ul>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
public class BidiSegmentEvent extends SegmentEvent {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* </p>
*
* @see StyledText#setLineBullet(int, int, Bullet)
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.2
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
/**
* Support for showing a Busy Cursor during a long running process.
*
* @see <a href="http://www.eclipse.org/swt/snippets/#busyindicator">BusyIndicator snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#busyindicator">BusyIndicator snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
public class BusyIndicator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
* @noextend This class is not intended to be subclassed by clients.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
* <dd>DefaultSelection, Modify, Selection, Verify</dd>
* </dl>
*
* @see <a href="http://www.eclipse.org/swt/snippets/#ccombo">CCombo snippets</a>
* @see <a href="http://www.eclipse.org/swt/examples.php">SWT Example: CustomControlExample</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#ccombo">CCombo snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/examples.html">SWT Example: CustomControlExample</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
public class CCombo extends Composite {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
* shortening algorithm that is implemented in method <code>shortenText()</code>.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/examples.php">SWT Example: CustomControlExample</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/examples.html">SWT Example: CustomControlExample</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
* @see CLabel#shortenText(GC, String, int)
*/
public class CLabel extends Canvas {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/snippets/#ctabfolder">CTabFolder, CTabItem snippets</a>
* @see <a href="http://www.eclipse.org/swt/examples.php">SWT Example: CustomControlExample</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#ctabfolder">CTabFolder, CTabItem snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/examples.html">SWT Example: CustomControlExample</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
* @noextend This class is not intended to be subclassed by clients.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @see CTabFolder2Listener
* @see CTabFolderEvent
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*
* @see CTabFolderListener
* @see CTabFolderEvent
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
public class CTabFolderAdapter implements CTabFolderListener {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* This event is sent when an event is generated in the CTabFolder.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
public class CTabFolderEvent extends TypedEvent {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* required by <code>CTabFolder</code>. This class can be subclassed in order to
* customize the look of a CTabFolder.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
* @since 3.6
*/
public class CTabFolderRenderer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
* IMPORTANT: This class is <em>not</em> intended to be subclassed.
* </p>
*
* @see <a href="http://www.eclipse.org/swt/snippets/#ctabfolder">CTabFolder, CTabItem snippets</a>
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/snippets/#ctabfolder">CTabFolder, CTabItem snippets</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
* @noextend This class is not intended to be subclassed by clients.
*/
public class CTabItem extends Item {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* This event is sent when the caret offset changes.
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*
* @since 3.5
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
* editor.setEditor (button);
* </code></pre>
*
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
* @see <a href="https://eclipse.dev/eclipse/swt/">Sample code and further information</a>
*/
public class ControlEditor {

Expand Down
Loading
Loading