Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2019-10-17Move away of deprecated AbstractUIPlugin.getWorkbench.Alexander Kurtakov1-2/+3
Change-Id: Ib82a2e295e05f80244a21c898df180684d5a20df Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-08-21Bug 530393 - EPL 2.0 update for SWT for swt.example plug-insLars Vogel2-6/+12
This updates files to EPL 2.0. As this repo contains also LGPL code, I added only files containing 'Eclipse Public License 2.0' via: git grep --name-only 'Eclipse Public License 2.0' | xargs git add Regex used for replacement: find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i 's/Eclipse Public License v1.0/Eclipse Public License 2.0/g' {} + find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)http:\/\/www.eclipse.org\/legal\/epl-v10.html/\1\2https:\/\/www.eclipse.org\/legal\/epl-2.0\/\ \1\ \1\2SPDX-License-Identifier: EPL-2.0/' {} + # Get rid of the All rights reserved find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" ! -name "pom.xml" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)(All rights reserved. )/\1\n\1\2/' {} + Change-Id: Ifad89e954b50112a71c30842130e558d171631f6 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-06-01Version 4.9 update in plaform.set as prep for the EPL 2.0 updateI20180601-0900Lars Vogel1-1/+1
Change-Id: I3ad44261dffe9d6d9097eb2c66a49ed31a57df25 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2017-11-30Bug 527935 - Add Automatic-Module-Name to MANIFEST.MF in SWT repoAlexander Kurtakov1-0/+1
Change-Id: I7ac7f58b3c252b6baabaacae3ac4d3b197b76ba3 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2016-01-15Bug 485821 - Make examples/snippets use lambdasAlexander Kurtakov1-14/+8
Convert Display.syncExec/asyncExec. Change-Id: I9327a1bc93e1a0f2981162b8f15a814692a9635b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-09-03Bug 455399 - Update org.eclipse.swt.examples to Java 8Alexander Kurtakov3-5/+5
Bump BREE for all examples projects to Java 8. Change-Id: I5d2ffd451d9cfdd2cd2c542055e8a827efdf7a08 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-07-31Bug 474049 - Move examples to Java 1.7Alexander Kurtakov3-5/+5
Bump BREE, change compiler settings, remove redundant type parameters. Change-Id: I80e4b39465d8b3833b8d10219e4b4b75f7688488 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2014-02-21Add missing javacProjectSettings to watchdoe example.Alexander Kurtakov1-0/+1
Change-Id: Iac1833c7131b3e8eb0c60d1af741674d53356074 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2014-02-19Fix warnings in examples.watchdog.Alexander Kurtakov5-4/+108
* Bump BREE to Java 1.6 - Code is using Override on interface methods so was never compilable with Java 1.5. * Externalize strings in manifest. * Add plugin.xml to bin.includes. Change-Id: I6cf903c6181d0578ea8713e23807dc03c4b9305e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2013-09-10Review for Bug 360052 - New API for monitoring UI delaysforemans7-0/+483
New API for the SWT synchronizer to enable in-band monitoring of UI events. The instrumentation hooks are useful for collecting information related to UI responsiveness (freezes, sluggishness, stuttering, etc). Change-Id: I381ff82120c570e032a55bc7ad5585d9b4818dcc Signed-off-by: foremans <foremans@google.com>

    Back to the top