Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2020-08-03Bug 564863 - Add cause to thrown IAEY20200805-1200Y20200804-1200I20200805-1800I20200805-0750I20200805-0630I20200804-1800I20200803-1800Karsten Thoms1-2/+2
4.17 version update for org.eclipse.jface.text Change-Id: I410a18ff93ccb72608cfca089129b0d7f60dd99f Signed-off-by: Karsten Thoms <karsten.thoms@karakun.com>
2020-07-31Bug 565208: Remove calls to Color.disposeY20200801-1200I20200803-0210I20200801-1800I20200801-0010I20200731-2040I20200731-1800Lars Vogel1-11/+3
As these calls are no longer needed, remove the calls and related code around such dispose that is also now redundant. Change-Id: Ifd82694346e546185768256eba526027f5bd9f4f
2020-01-17Use lambdas where possibleY20200120-0020I20200120-0445I20200120-0355I20200120-0115I20200119-2330I20200119-1800I20200118-1800I20200117-1800Lars Vogel3-39/+17
Using the batch cleanup operation via Source -> Cleanup -> "Use lambdas where possible" from standard JDT. Change-Id: I609127e1d7267230c8741a155b81e4b004d7ee15 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2019-11-16Bug 553125 - Reduce calls to Document.getLineOfOffset inI20191120-2335I20191120-1800I20191120-0840I20191120-0600I20191119-2200I20191119-1800I20191119-1250I20191119-1235I20191119-1215I20191119-1155I20191119-0850I20191119-0725I20191119-0510I20191119-0315I20191119-0020I20191118-2230I20191118-1800Paul Pazderski1-17/+19
ProjectionRulerColumn Change-Id: I0be673a16d6916b5fce74fd0e7146f906470bbc7 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
2019-11-16Bug 347628 - [projection] unfolding doesn't work if caption is last linePaul Pazderski1-1/+6
in document Change-Id: Ic837b9cb21e1cd00a55764251531e134ebeb5672 Signed-off-by: Paul Pazderski <paul-eclipse@ppazderski.de>
2019-06-14Use isEmpty() instead of length() to check if collection is emptyI20190615-1800I20190614-1800Lars Vogel2-3/+3
Change-Id: I0106dd0c2ddfa318375877d4562068d82aa9ac5f Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2019-06-13Use jdk 5 for-each loopI20190614-0330I20190613-1800Carsten Hammer4-24/+29
Replace simple uses of Iterator with a corresponding for-each loop. Also add missing braces on loops as necessary. Change-Id: Ibde37d56a7962f432ed771f4a215f5903161bde0 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
2019-06-12Use isEmpty() instead of size()==0 where possibleI20190613-0210I20190612-1800Carsten Hammer3-4/+4
Change-Id: Ib6c59f4c9cea396c98196d23ff9ea917e2ef4114 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
2019-02-18Bug 543933 - Build javadocs with Java 11Alexander Kurtakov1-2/+2
Fix javadoc warnings catched by Java 11 tool with XDoclint:html. Change-Id: I361b79bda124f98380dec2c87ca41b09f4098643 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-08-22Bug 530393 - EPL 2.0 update for platform.text plug-ins - Part 1Lars Vogel11-33/+66
Changes genericeditor and genericeditor.examples copyright format to be the same as the rest of the platform files Update all sources files except .exsd files, Java pref files and pom files Regex used: git checkout master git reset --hard origin/master git pull 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: I368ef7a7265b2c5e3db28ded634557bba2b70c48 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-07-18More deprecated getAverageCharWidth fixes.Alexander Kurtakov2-8/+8
Change-Id: I5a696c6973a78339afaf0323fd081e2b370d0a52 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-07-18Lambda conversions.Alexander Kurtakov1-22/+19
Converting Runnable to lambda and whatever the quick fix picked in the file too. Change-Id: I0cbd8ef4a7cab89dced199b44a5be3b32b6f8195 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-04-30Improve some constructs for performanceMickael Istria1-4/+4
Issues reported by SonarQube: * iterating on keySet() instead of entrySet() or values() * String += in a loop Change-Id: I3dec0e683305ab3382605168c0505d5ce2bcc35e Signed-off-by: Mickael Istria <mistria@redhat.com>
2018-03-22Bug 531876: Improve expanded/collapsed icons for the dark themeI20180322-0645Matthias Becker4-0/+0
Improve the expanded / collapsed icons of JFace's projection viewer. Change-Id: Ib881c3ed0b809d0f7efb2d6310578ade3b87c7f9 Signed-off-by: Matthias Becker <ma.becker@sap.com>
2017-01-11Bug 510313 - Remove unnecessary whitespace from org.eclipse.jface.textY20170112-1300Y20170112-1000I20170116-2000I20170115-2000I20170114-2000I20170113-2000I20170112-2000I20170112-0245I20170112-0200I20170111-2000Lars Vogel2-5/+5
Change-Id: I19139e6aba0aaa20eb06882a4b721298cdfe138b Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2016-09-09Bug 501116 Replace gif files in org.eclipse.jface.text with png filesI20160914-0800I20160914-0430I20160914-0030I20160913-2000I20160913-0800I20160912-2000I20160912-1005I20160912-0800I20160912-0430I20160912-0225I20160912-0140I20160911-2015Matthias Becker6-0/+0
Replace gif with png files and also add high resolution png files Change-Id: I2c48207328017f9fbf70c902754051e5367f1042 Signed-off-by: Matthias Becker <ma.becker@sap.com>
2016-09-09Revert "Bug 501116 Replace gif files in org.eclipse.jface.text with png files"Lars Vogel6-0/+0
This reverts commit 797b6837d8bf09a59a3bba06ebfd319ef39976e9. Change-Id: I07d5d04e5c0262df4c2f06bf93e83a6fffe9c39e
2016-09-09Bug 501116 Replace gif files in org.eclipse.jface.text with png filesMatthias Becker6-0/+0
Replace gif with png files and also add high resolution png files Change-Id: I30648d60a9f343e85c41a37913606ba4d5538c36 Signed-off-by: Matthias Becker <ma.becker@sap.com>
2015-12-01Bug 478673: generify codeI20151201-1100I20151201-0800Markus Keller7-71/+74
2015-12-01Bug 478673: added @Override/@Deprecated and removed non-Javadoc boilerplateMarkus Keller7-225/+82
2014-09-23Bug 444831: [projection] Selection lost when trying to cut folded textI20140930-0800Markus Keller1-1/+1
2014-08-07Removed unused methodI20140812-0800Dani Megert1-6/+0
2014-08-04Fixed bug 410359: [projection] ↵I20140805-0800I20140804-2000Pawel Pogorzelski1-4/+4
ProjectionViewer.computeCollapsedNestedAnnotations unnecessary slow Signed-off-by: Pawel Pogorzelski <pawel.pogorzelski1@gmail.com>
2012-04-18workaround for Bug 377109: Discrepancy between StyledText#getLineHeight() ↵v20120418-1702Markus Keller1-2/+2
and FontMetrics#getHeight()
2012-01-27Fixed bug 369844: Potential NPEsv20120127-1415Dani Megert1-4/+5
2011-10-12Fixed bug 340570: [rulers][api] Pull up #addVerticalRulerColumn andv20111018-0800Dani Megert1-28/+0
#removeVerticalRulerColumn from ProjectionViewer to SourceViewer
2011-10-10Fixed bug 359931: Projection Viewer invokes AutoEditStrategies twiceDani Megert1-1/+2
when in Block Selection Mode
2010-08-09Fixed bug 69289: [implementation] AnnotationModel not thread-safev20100810-0800Dani Megert1-42/+16
2010-06-25fixed wrong usages of affect* & effect*Markus Keller1-1/+1
2010-05-20Bug 312966: [hovering] Some text in Javadoc hover/view not visible using ↵v20100520-0800Markus Keller1-4/+42
Ubuntu 10.04
2010-02-23Committed Anton's patch to fix bug 178203: [projection] Eclipse is too eager ↵Dani Megert1-2/+3
to unfold code
2009-09-24Fixed bug 276719: [projection] Code folding +/- icon has white jaggiesDani Megert3-2/+2
2009-09-22Adopted SWT.MouseVerticalWheel.Dani Megert1-2/+1
2009-03-30Fixed bug 62712: [projection] Folding ruler doesn't take over java editor ↵v20090331-0800Dani Megert1-4/+1
background color
2009-03-05bug 260921 [block selection][typing] undo does not fold events in block ↵v20090308teicher1-0/+7
selection mode bug 265267 [block selection][projection] Edits in folded regions have unexpected results
2009-02-26Bug 262538 [block selection][projection] The block selection in Java editor ↵v20090303-0800teicher1-2/+5
does not deselect area after cut operation
2009-02-26Fixed bug 266269: [projection] Folding should only be toggled if mouse up ↵Dani Megert1-0/+16
happens at mouse down location
2009-02-26Fixed bug 192222: [projection] collapse unfolded region on double click in ↵Dani Megert1-2/+16
projection ruler
2009-01-14Updated copyright.Dani Megert1-1/+1
2009-01-13Bug 19771: [typing] Add column based editing capabilities to textual editorsteicher1-34/+34
2008-12-31copyright updatesDani Megert1-1/+1
2008-10-02Fixed bug 249456: Line with class definition disapears on save if format on ↵Dani Megert1-37/+0
save is enabled
2008-09-30Fixed bug 67500 (try 2): [projection] Unfolding code eats first keystrokev20080930-0800Dani Megert1-5/+8
2008-09-24Use h2 for package specification element.Dani Megert1-1/+1
2008-09-22Fixed bug 67500: [projection] Unfolding code eats first keystrokeDani Megert1-3/+11
2008-09-11Removed trailing whitespace and organized the importsv20080909-ascuDani Megert7-40/+40
2008-08-12Fixed bug 243635: Code folding turning itself onv20080812-0800Dani Megert1-3/+3
2008-08-12Fixed bug 243635: Code folding turning itself onDani Megert1-5/+10
2008-07-31Fixed bug 190810: [projection] Format operation is slow on big file when ↵Dani Megert1-0/+36
Folding is enabled
2008-07-16Fixed compiler warnings.Dani Megert1-2/+2

Back to the top