Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-07-29Bug 312397 - Run Configuration Command Line to ClipboardI20180731-0340I20180730-2240I20180730-2000I20180730-0800I20180729-2000Sarika Sinha4-20/+50
Change-Id: I19d054bed10f834c52bc00f0397255f870b4d6c8
2018-07-28Bug 312397 - Run Configuration Command Line to ClipboardI20180729-0800I20180728-1500I20180728-0805Sarika Sinha12-9/+269
Change-Id: I766655f94324002a8e67310e7882c1a63a706c5b
2018-07-24Bug 537330 - Breakpoints View NPE on perspective switch during debugI20180727-2000Simeon Andreev1-0/+4
The error log indicates that at the time of BreakpointsView.contextActivated, the Breakpoints View had no tree model viewer. This caused a NPE to be logged in the Error Log. This change adds a guard to the method, similar to the guard found in VariablesView.contextActivated. This avoids the logged NPE and does not alter behavior otherwise; the rest of BreakpointsView.contextActivated does nothing if there is no tree model. Change-Id: I070a2714c40636fb8796a963b7a3d4c147c04bf9
2018-07-24Bug 537322 - Improved logging in exception case of flushMarkerCacheY20180725-2200I20180726-2000I20180725-2000I20180724-2000Simeon Andreev1-1/+5
Whenever an exception occurs during marker attribute setting in BreakpointWorkingSetCache.flushMarkerCache, the logged error does not include information for the attributes which are to be set on the marker. When logged e.g. from tests, its difficult to understand where the logged error is coming from. This change adds some extra information to the logged error. Change-Id: I0b9a1aadb9310b26778f200df4004cdbb8756eef Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com>
2018-07-20Bug 465666: Fix bread crumb background in dark themeY20180723-0635Y20180723-0615I20180723-2000I20180722-2000I20180721-1500I20180720-2000Matthias Becker7-127/+66
Change-Id: Ifb6349ffd0af011933760e6ee8eef3f984209b8e Signed-off-by: Matthias Becker <ma.becker@sap.com>
2018-07-19Switch debug examples to Java 1.8 BREE.Y20180720-0300I20180719-2000Alexander Kurtakov12-21/+22
Change-Id: I99f265e74392bf2ffee4d4261944c00f4a14f42f Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-07-19Bug 521038 - [refactoring] Replace anonymous Runnable classes by lambdaAlexander Kurtakov79-2346/+1784
expression Changed some formatters to Eclipse so there is some formatting happening as the debug one is not clear where to get from and it's unrealistic to expect random contributors to do it. Change-Id: I731410854f9a4ac0c9fc18bcf3ad3dcf7d941c9a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-07-15Bug 535151 - Show only launch types with children in export dialogY20180718-2200I20180718-2000I20180718-0130I20180717-2000I20180717-0320I20180716-2000I20180716-0715I20180715-2000Michael Keppler1-5/+26
Since a typical Eclipse user will have a lot of empty launch config types (i.e. with no defined launch configs or prototypes), which we can hide from the export launch config dialog. Had to move some private members from the nested class to the top level class to use them in both. Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Also-by: Karsten Thoms <karsten.thoms@itemis.de> Change-Id: I04a0e52b5c9d4427e5221591b33ea0aaf67488e7 Bug:535151
2018-07-14Bug 535466 - Menus in export launch dialog should have ellipsisMichael Keppler1-2/+2
Change-Id: Id1fffba4c3976e7f3efbc0dba8468a6fd0382f51 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Bug:535466
2018-07-13Bug 536648 - Thread evaluation runs in parallel with thread label updateI20180714-1500I20180713-2000Simeon Andreev1-1/+1
When running an evaluation on a thread suspension, its possible that a label update of the Debug View runs in parallel. The label update can then retrieve the intermediate state of the evaluation. If no further label update is issued, the thread will be shown as running until the Debug View is refreshed. With this change, suspending a thread after an evaluation will also update the thread state in the Debug View. This avoids the wrong running icon of the thread. Change-Id: Id6ec6a9d48c041d0b2617adb8b7da91ba5140b15 Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com>
2018-07-11Bug 536681 - [ZipSlip] ArchiveSourceContainer can create ZipEntryStorageY20180712-0200I20180712-2000I20180711-2000Sarika Sinha1-11/+22
objects containing unintended entries Change-Id: I2aa47ef66f92852671fbf0330056ac5516116693
2018-07-05Bug 536677 - AbstractDebugView should release MessagePage instancesI20180710-2000I20180709-2000I20180708-2000I20180707-1500I20180706-2000I20180705-2000Andrey Loskutov1-16/+15
Not disposed MessagePage holds site -> serviceLocator -> services -> window reference of closed window. Change-Id: I0e5045d752e35b83f6463bb61114dda09f8bf994 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-20Bug 534298 - [quick fix] The New PreferenceY20180705-0105Y20180628-0525I20180704-2000I20180704-0805I20180704-0605I20180704-0545I20180703-2000I20180702-2000I20180702-0435I20180701-2000I20180630-1500I20180629-2000I20180629-0420I20180629-0400I20180628-2000I20180628-0230I20180627-2020I20180627-2000I20180625-1545I20180621-2000Kalyan Prasad Tatavarthi1-1/+15
"PREF_COMPLIANCE_COMPATIBLE_JRE_NOT_AVAILABLE" creates a new problem marker But does not provide Quick Fix for the problem marker Change-Id: Ie9e1697dc4f83c6e8251d8b68c254cf964e95262 Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
2018-06-19Added toString() to a Breakpoint for debugging debuggerAndrey Loskutov1-0/+12
Change-Id: I13f3064cd851efb05acd7435af03ce63f6d84661 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-14Bug 535686 - use one queue for scheduling async tasksI20180618-0800I20180615-0655I20180615-0300I20180614-2045I20180614-2000Andrey Loskutov1-9/+22
Queue async tasks coming from ChildrenUpdate's jobs via scheduleViewerUpdate() in the same queue with async tasks coming from modelChanged(), so that they all run in more predictable order. This allows us to run async UI updates triggered by ElementContentProvider jobs before we run next batch of model change events. Additionally this should further reduce the number of Display.asyncExec() tasks coming from debugger. Change-Id: I4a16e9cc79ab453b35d064c85440b726a4772442 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-14Bug 535686 - wait for pending ElementContentProvider jobsAndrey Loskutov1-1/+8
Before triggering another update round via doModelChanged(), wait for all previously scheduled ElementContentProvider jobs, so that they can read the model data before it changes again. Change-Id: I2534d140c295341f3a69793254b6f94d5e7ef04e Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-12Bug 535468 - Link with prototype does not set an initial selectionI20180613-0440I20180613-0300Michael Keppler1-0/+1
Set an initial selection in the dialog to indicate what is currently the linked prototype. Change-Id: I9414b8f020b7b80de95464db35cdc4d2481a94c3 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Bug:535468
2018-06-12Bug 535809 - ElementContentProvider jobs have no familyAndrey Loskutov1-15/+18
Added family to all jobs and cleaned up the code a bit. Change-Id: I777599bce7f347a07d0d2c7051fdd695204a9e46 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-12Bug 534681 - Remove redundant modifiers inKarsten Thoms1-1/+1
org.eclipse.debug.examples.core Change-Id: I26ef38e47d508e5544e22782d2e6fa1659c9d3b2 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.debug.testsKarsten Thoms1-26/+26
Change-Id: I1d275e99c6f3081d73d272b02dc9e9ffd0da11ea Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.ui.externaltoolsKarsten Thoms3-77/+48
Change-Id: I5397c0d2f06ce99ceb1844aea22e2b2128bac36a Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.ui.consoleKarsten Thoms15-103/+99
Change-Id: I4440110007ff79c48e1e99ce5cfaee0c00a37f97 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.core.variablesKarsten Thoms7-32/+32
Change-Id: I0c9032ce4a6ededdcb28d8e67e7c204cbd7fa5c2 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers inKarsten Thoms1-34/+33
org.eclipse.core.externaltools Change-Id: I89545a9c86a3dd2dd649289f0050d78393e489c3 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.debug.coreKarsten Thoms89-545/+539
Change-Id: I1c7eb444218819aa200fd8471ccfc99285bf5cd4 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-12Bug 534681 - Remove redundant modifiers in org.eclipse.debug.uiKarsten Thoms134-1082/+1056
Change-Id: I1d0b999ad8ead1bad88e9f23aa32fd34418c63aa Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
2018-06-08LaunchView cleanupAndrey Loskutov1-113/+6
Change-Id: Ic8081419430d04e55d593810e3ba4e21655eb8dc Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-08Bug 535707 - AssertionFailedException via LaunchView.showBreadcrumbPageAndrey Loskutov1-2/+7
DebugContextEvent expects a non-null context object. Change-Id: I6268e8cda92c619c2b900812be762ca86360c972 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-08Bug 535462 - NPE when closing second window during debugSimeon Andreev2-2/+19
The bug occurs while debugging, having two windows and a custom debug context provider. When closing the second window, DebugWindowContextService.notify is called with the selection of the custom debug context provider. If this selection is e.g. a stack frame, SourceLookupService asks SourceLookupFacility to open a source file. This throws a NPE, since the workbench page window is closing. With this change SourceLookupFacility checks if the active workbench window is closing. If so, the source is not opened, avoiding the NPE. Note: updated platform.ui version range to see re-export updated ui.workbench API. Change-Id: Ifb177c1211248b0cda17c6d14201a210d5fec8dc Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com> Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-07TreeModelContentProvider cleanupI20180607-2000Andrey Loskutov1-58/+37
Change-Id: I6e3b6faece08d4e4e52cd4a4c60d9c5b6ed09521 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-07ModelDelta cleanupAndrey Loskutov1-34/+8
Change-Id: I962d7c4043e4f50104119c6059cf368da2eb51ea Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
2018-06-05Bug 535318 - Update license to EPL-2.0 for platform.debug in about.htmlI20180606-1020Lars Vogel10-160/+240
Change-Id: Ide949707f61f88a56527c56610c1dfeb551a1db9 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-06-01Revert second update of org.eclipse.debug.ui for 4.9Lars Vogel2-2/+2
Change-Id: Ib1149da96d2e4e68127c09829ceb47e40b027328 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-06-01Bug 535454 - do not allow null context in DebugContextEvent constructorSimeon Andreev1-0/+2
In case of a null context passed to the constructor of DebugContextEvent, a NPE could be thrown later on when the event is being processed. This is the case since DebugContextEvent.getContext() makes no mention of possibly returning a null. E.g. some code in ToggleStepFiltersAction and LaunchView does not check if the returned context is null. At the point of throwing the NPE, its unclear where the null context actually came from. For issues which are difficult to reproduce, this information is vital. With this change, an exception is thrown if the passed context is null. Change-Id: If7a86500bc827bc6aa73ca971c9be79a714be81f Signed-off-by: Simeon Andreev <simeon.danailov.andreev@gmail.com>
2018-06-01Version 4.9 update in plaform.debug as prep for the EPL 2.0 updateI20180601-0915I20180601-0900Lars Vogel22-22/+22
Change-Id: I0780d35d66fd25b70bbf7618979672bcbd2a559e Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-06-01Bug 535148 - Export launch wizard confirmation dialog typoMichael Keppler3-4/+4
Add missing "to". Change-Id: I5f5ebd168a56d8fbe9bf21dc54c07fe957712236 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Bug: 535148
2018-05-30Bug 535191 - POM version change for 4.9 releaseI20180531-2125I20180531-2000I20180531-1245I20180531-0910Alexander Kurtakov12-13/+13
Change-Id: Ic421012d21e951ef7763a6be83c2f2a42eed5c15 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-05-28CLA -> ECADani Megert1-2/+2
2018-05-14Bug 517809 - Modes in Launches tab of Launch Group use mode namesS4_8_0_RC2S4_8_0_RC1I20180528-0800I20180527-2250I20180527-2000I20180527-0800I20180526-1500I20180526-0800I20180525-2000I20180524-0900I20180523-2000I20180523-0800I20180522-2000I20180522-0800I20180521-2000I20180521-0800I20180520-2000I20180520-0800I20180519-1500I20180519-0800I20180518-2000I20180516-2000I20180516-0800I20180515-2000I20180515-1755I20180515-1620I20180515-1440I20180515-1300I20180515-0950I20180515-0800I20180514-2000I20180514-0800Sarika Sinha2-70/+104
instead of labels Change-Id: I2e62b93ee3810b06f75278db08f423f08bf60b2d
2018-05-12Bug 534597 - Unanticipated comparator errors in I20180511-2000I20180513-2000I20180513-0800I20180512-1500I20180512-0830Sravan Kumar Lakkimsetti2-0/+2
Change-Id: Ie82f0677a530ab8077b14141b8658f6f838f14bf Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
2018-05-09Bug 534380 - Reset button is not working in New Configuration ->S4_8_0_M7I20180511-2000I20180509-2000Sarika Sinha1-1/+1
Prototype tab Change-Id: Ia43c51525afe9f6a1f0984abd8e01f3cf5545a57
2018-05-09Bug 533788 - Use StandardCharsetsI20180509-0800Alexander Kurtakov6-22/+15
Another bunch of such changes. Change-Id: I4012772607b8f7c165156b8d03fbd5bcbee4b581 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2018-05-07Bug 534379 - GVT48: English Strings are found in New Prototype ->I20180508-2000I20180508-0800I20180507-2205I20180507-2000I20180507-0810I20180507-0800Sarika Sinha3-4/+10
Prototype tab Change-Id: I1b47534b83d9927090b0b55646bccee0618c85ba
2018-05-03Bug 532602 - Remove all Breakpoints dialog should use verbsI20180506-2000I20180506-0800I20180505-1500I20180504-2000I20180503-2000Lars Vogel1-1/+1
Change-Id: I66a7035fa798e0f33cf808ed3c02a37dca121774 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-03Removes Non-Javadoc from RemoveAllBreakpointsActionLars Vogel1-29/+0
Change-Id: I64de6922580c1c0c0ec2606f24abce9e00a873f5 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-03Use StringBuilder instead of StringBuffer in debug examplesLars Vogel6-16/+16
Change-Id: I638c69c33868c22b89d4212ceaa764f99d516380 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-03Using StringBuilder instead of StringBuffer in org.eclipse.debug.coreLars Vogel10-23/+23
Change-Id: If82d175d5e2793cf3974a05980fa95f348bc97ed Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-03Using StringBuilder instead of StringBuffer inLars Vogel2-7/+7
org.eclipse.core.variables Change-Id: Ia9402af1c48a9914230a84ba076a69ab8834b742 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2018-05-03Bug 532602 - Remove all Breakpoints dialog should use verbsI20180503-0740Jonas Hungershausen3-18/+31
Change-Id: I9bdd8349a4116ca034cf78a2d2cc2a65289ec000 Signed-off-by: Jonas Hungershausen <jonas.hungershausen@vogella.com>
2018-04-26CopyrightI20180502-2000I20180502-0100I20180501-2000I20180430-2000I20180430-0715I20180429-2000I20180428-2020I20180428-1500I20180427-2000I20180426-2000I20180426-0500Sarika Sinha1-1/+1
Change-Id: I28a8c91e5eafc61156b3f59b50852fcebc57dafd

Back to the top