issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
timestamp[us, tz=UTC] | report_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
301,193 | Bug 301193 Restoring editor with inputURI from deltas.xml leads to an NPE in XMLModelReconciler.getValue() | Build Identifier: as of 2010-01-27 I have an MEditor instance configured with a valid inputURI. But running the app again leads to an NPE (below). The problem is that XMLModelReconciler.getStructuralFeature() for an EditorImpl and attributeName "inputURI" returns null. As I wasn't sure how the long list was populated, I hacked the getStructuralFeature() to do EMF introspection. I'm sure this isn't efficient, but it works for now. === modified file 'bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java' --- bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java 2010-01-25 18:42:27 +0000 +++ bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java 2010-01-28 23:10:38 +0000 @@ -214,6 +214,12 @@ return MApplicationPackage.eINSTANCE.getPartDescriptor_AllowMultiple(); } else if (featureName.equals(PARTDESCRIPTOR_CATEGORY_ATTNAME)) { return MApplicationPackage.eINSTANCE.getPartDescriptor_Category(); + } else { + for (EStructuralFeature sf : object.eClass().getEAllStructuralFeatures()) { + if (sf.getName().equals(featureName)) { + return sf; + } + } } return null; } Exception is as follows: Daemon Thread [Thread-0] (Suspended (exception NullPointerException)) XMLModelReconciler.getValue(EStructuralFeature, String) line: 222 XMLModelReconciler.createObject(Collection<ModelDelta>, String, Element, List<Object>) line: 673 XMLModelReconciler.createObject(Collection<ModelDelta>, Element, List<Object>) line: 685 XMLModelReconciler.createMultiReferenceDelta(Collection<ModelDelta>, List<Object>, EObject, EStructuralFeature, Element) line: 535 XMLModelReconciler.constructObjectDeltas(Collection<ModelDelta>, List<Object>, EObject, Element) line: 337 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 251 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Object, Object) line: 129 ResourceHandler.loadMostRecentModel() line: 168 E4Application.loadApplicationModel(IApplicationContext, IEclipseContext) line: 176 E4Application.start(IApplicationContext) line: 72 EclipseAppHandle.run(Object) line: 194 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 367 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 597 Main.invokeFramework(String[], URL[]) line: 611 Main.basicRun(String[]) line: 566 Main.run(String[]) line: 1363 Main.main(String[]) line: 1339 Reproducible: Always Steps to Reproduce: 1. Setup an MEditor with an inputURI 2. Quit the app 3. Restart the app. | resolved fixed | f086bb1 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-02-01T17:02:05Z | 2010-01-28T23:06:40Z |
300,862 | Bug 300862 Change buttons order in PathVariableDialog | IMHO more intuitive order for buttons in PathVariableDialog would be [File...][Folder...][Variable...] instead of [File...][Variable...][Folder...]. I can provide a patch if the swap makes sense to you too ;) | verified fixed | 9a3d18e | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariableDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-02-01T14:50:39Z | 2010-01-26T15:33:20Z |
243,742 | Bug 243742 [Contributions] Registering a PRIVATE popup menu | Build ID: I20080617-2000 Steps To Reproduce: This is an enhancement request. The "org.eclipse.ui.popup.any" allows to add a menuitem to ALL registered popup menus in the system. Some plugins (debug, team) misuse this possibility and register actions which are too wide and appear everywhere. This leads to popup menu pollution. More information: It would be great to be able to register a popup menu privately in a way that only the menuitems directly specifing the id woul only be added to it (but not those that specify org.eclipse.ui.popup.any) For example, contributions to a menu with an ID: org.example.editor.popup#private would be added only if the contributor specifies exactly the ID (org.example.editor.popup#private). Contributions specifying the org.eclipse.ui.popup.any would be ignored for this popup. | verified fixed | b340bcc | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuAdditionCacheEntry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/menus/MenuPopulationTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-02-01T09:08:29Z | 2008-08-11T13:06:40Z |
301,362 | Bug 301362 ReflectionContributionFactory is not reusable | There are several "private" methods in the class ReflectionContributionFactory, such as getBundle() and createFromBundle(). They prevent to reuse this class in e4 Designer. We need just to change them to protected | resolved fixed | 4e972f7 | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ReflectionContributionFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-31T18:24:40Z | 2010-01-31T17:46:40Z |
300,173 | Bug 300173 Reorder of items in ToolBar and Menu doesn't reflect in Renderer | When we DnD of ToolItem or MenuItem in outline of e4 Designer, the designer refreshes with a wrong result. For example, if we have two items: Open and Save in order. When we change the order to Save and Open by moving Save, in Renderer we have only Open. | resolved fixed | 425ffcf | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SWTPartRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolBarRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolItemRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-28T19:21:30Z | 2010-01-20T12:20:00Z |
301,101 | Bug 301101 TrimmedPartLayout does not respect origin of client area | Currently the TrimmedPartLayout only respects width and height of the client area to layout the composites. The layout cannot expect that the client area is always located at 0,0 (even though in SWT most of the time it is). We should respect the location of the clientarea while computing the layout. | verified fixed | 9446b65 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/TrimmedPartLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-28T16:16:23Z | 2010-01-28T09:13:20Z |
300,899 | Bug 300899 Endless OpenDoc events | When we changed the code to send OpenDoc instead of post it, it seems that we broke carbon. If you open an associated file Eclipse becomes unusable because of many OpenDoc events. | verified fixed | b0435fe | ["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/DelayedEventsProcessor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDE.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-27T22:06:19Z | 2010-01-26T18:20:00Z |
298,835 | Bug 298835 Merge e4 Project Path Variable back into the 3.6 stream | The virtual folder and filters changes are already in 3.6, the project path variable changes in e4 still remains to be merged. | verified fixed | 967371b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariableDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariablesGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-26T10:32:33Z | 2010-01-05T11:13:20Z |
295,250 | Bug 295250 ContributedPartRenderer eagerly activates constructed parts in createWidget | I was wondering why my part was becoming active when I noticed the two lines of code below in CPR... parentContext.set(IContextConstants.ACTIVE_CHILD, localContext); activate(element); This eager activation is in direct conflict with the 3.x IWorkbenchPage's showView method with a IWorkbenchPage.VIEW_CREATE mode passed in. | resolved fixed | 24666a1 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ContributedPartRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-25T18:39:30Z | 2009-11-16T14:00:00Z |
4,922 | Bug 4922 [EditorMgmt] Need ability to open a file in eclipse from the command line | We need to be able to register eclipse as the default editor for a file type with the OS. This will allow double clicking on a file and opening it in eclipse. This is important for being able to view a .java file in a zip etc. I don't think it should be a problem to get the file name from the command line through to the workbech application which will be able to determine what editor to use. The question is where to put it in the workspace. I think the easiest answer is to just create a "miscellaneous" project mapped to the file's location. Remember this is not a project for "real work", its just a way of allowing the file to be viewed/edited using an eclipse editor. | verified fixed | 0193c20 | ["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/DelayedEventsProcessor.java", "bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEApplication.java", "bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-22T20:10:55Z | 2001-10-12T12:33:20Z |
299,152 | Bug 299152 [Forms] FormEditor isDirty() should consider FormEditor pages | Build Identifier: M20090917-0800 FormEditor's isDirty() method checks all of the IFormPage children and returns dirty if any of them are dirty. Since a FormEditor can contain other FormEditors as pages the isDirty method should return dirty if a child FormEditor is dirty. Reproducible: Always | resolved fixed | 55ebe35 | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/editor/FormEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-21T20:44:14Z | 2010-01-08T17:00:00Z |
291,069 | Bug 291069 [Commands] IWorkbenchCommandConstants should also define command parameter ids | HEAD IWorkbenchCommandConstants should also define the parameter ids that are used by commands. E.g. the NAVIGATE_SHOW_IN command defines a <commandParameter> with id 'org.eclipse.ui.navigate.showIn.targetId' in the plugin.xml, but I didn't find a constant for that (only two internal constants: ShowInHandler.TARGET_ID, ShowInMenu.SHOW_IN_PARM_ID). | verified fixed | 8e5acc5 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchCommandConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/ShowPerspectiveHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/ShowViewHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ChangeToPerspectiveMenu.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowInHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowInMenu.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowViewMenu.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ClosePerspectiveHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ShowPreferencePageHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/WizardHandler.java", "tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/OpenClosePerspectiveTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/dynamicplugins/BindingsExtensionDynamicTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/stress/OpenCloseTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-21T20:07:43Z | 2009-10-01T18:00:00Z |
288,624 | Bug 288624 [EditorMgmt] Mac: Error when browsing to external editor and then launching | User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.11) Gecko/2009060214 Firefox/3.0.11 Build Identifier: 3.5 Launch an external editor from the Project Explorer as follows. Reproducible: Always Steps to Reproduce: 1.Right click on the file in Project Explorer 2.Select Open With --> Other... 3.In the Editor selection dialog that opens up, select external editors radio button. 4.Instead of selecting the application from the list here, browse to the application using the Browse button, click on open 5.Click on OK in the Editor Selection dialog. Error dialog shows up with the message "Unable to open external editor". Note that selecting the application from the list doesn't works fine. The error, because the code to open the ExternalEditor tries to execute(exec) the .app and not the executable. It is reproducible in both Carbon and Cocoa. | verified fixed | 2917fc9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/ExternalEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-21T12:41:09Z | 2009-09-04T10:26:40Z |
296,466 | Bug 296466 [GlobalActions] Can't remove 'Build All' from toolbar | R3.5.1 and I20091125-2200. There's no way (e.g. via Customize Perspective) to remove the 'Build All' action from the toolbar. | verified fixed | 18c9869 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEActionFactory.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-20T18:13:37Z | 2009-11-30T14:06:40Z |
296,691 | Bug 296691 Change new Groups API to Virtual Resource API | If we decide that 'virtual' is the right naming for new resources concept, I will make the following changes. Add IResource#VIRTUAL flag to use in #create methods Add IResource#isVirtual indicating that a resource is virtual Remove IResource#isGroup Remove IFolder#createGroup | resolved fixed | b475298 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/ResourceDescription.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/WorkspaceUndoUtil.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/LinkedResourceDecorator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/VirtualResourceDecorator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/GroupDescription.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/NavigatorDropAdapter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ImportOperation.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/ResourceDropAdapterAssistant.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-20T17:02:31Z | 2009-12-02T13:20:00Z |
300,032 | Bug 300032 [Markers] NPE in MarkerFieldFilterGroup.selectByScope | I20100115-1100 I had a Java editor open and dirty. The Problems view was NOT visible (topmost in that view stack was Progress). I pressed 'Alt+Shift+W, P, Return' to reveal the file in the Package Explorer. The stored file had no compile problems, but the the working copy in the editor had a problem which I fixed shortly before I started the Show In action. java.lang.NullPointerException at org.eclipse.ui.internal.views.markers.MarkerFieldFilterGroup.selectByScope(MarkerFieldFilterGroup.java:693) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.select(MarkerContentGenerator.java:781) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.internalGatherMarkers(MarkerContentGenerator.java:1073) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.gatherMarkers(MarkerContentGenerator.java:1013) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.generateMarkerEntries(MarkerContentGenerator.java:991) at org.eclipse.ui.internal.views.markers.MarkerUpdateJob.clean(MarkerUpdateJob.java:117) at org.eclipse.ui.internal.views.markers.MarkerUpdateJob.buildMarkers(MarkerUpdateJob.java:77) at org.eclipse.ui.internal.views.markers.MarkerUpdateJob.run(MarkerUpdateJob.java:57) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) | closed fixed | 920e82d | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-20T09:58:32Z | 2010-01-19T08:33:20Z |
299,335 | Bug 299335 [Progress] Finished Tasks Still Show In Progress View | null | verified fixed | 5277aba | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/BlockedJobsDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/GroupInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobTreeElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/SubTaskInfo.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/progress/ProgressContantsTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/progress/ProgressTestCase.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/progress/ProgressTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/progress/ProgressViewTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-20T07:33:05Z | 2010-01-12T04:20:00Z |
296,728 | Bug 296728 [CommonNavigator] Problem with enablement on navigatorContent extension point | If I use the enablement node with the expression "WITH", no variable was found because no real context is given. example : <extension point="org.eclipse.ui.navigator.navigatorContent"> <commonWizard type="new" wizardId="com.mywizard"> <enablement> <with variable="activeWorkbenchWindow.activePerspective"> <equals value="com.myperpective"> </equals> </with> </enablement> </commonWizard> make this error : org.eclipse.core.runtime.CoreException: The variable activeWorkbenchWindow.activePerspective is not defined at org.eclipse.core.internal.expressions.WithExpression.evaluate(WithExpression.java:65) at org.eclipse.core.internal.expressions.CompositeExpression.evaluateAnd(CompositeExpression.java:53) at org.eclipse.core.internal.expressions.EnablementExpression.evaluate(EnablementExpression.java:53) at org.eclipse.ui.internal.navigator.wizards.CommonWizardDescriptor.isEnabledFor(CommonWizardDescriptor.java:145) at org.eclipse.ui.internal.navigator.wizards.CommonWizardDescriptorManager.getEnabledCommonWizardDescriptors(CommonWizardDescriptorManager.java:158) at org.eclipse.ui.navigator.WizardActionGroup.setContext(WizardActionGroup.java:193) at org.eclipse.ui.internal.navigator.resources.actions.NewActionProvider.fillContextMenu(NewActionProvider.java:107) You could do use the currentState of the IEvaluationService. (see WorkbenchWindow line 3035) | resolved fixed | af460a2 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPlugin.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/CommonActionProviderDescriptor.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/dnd/CommonDropAdapterDescriptor.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/LinkHelperDescriptor.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptor.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/filters/CoreExpressionFilter.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/sorters/CommonSorterDescriptor.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/wizards/CommonWizardDescriptor.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-20T00:01:32Z | 2009-12-02T18:53:20Z |
295,803 | Bug 295803 [CommonNavigator] Source of Contribution set to lowest priority NCE, not the NCE providing the children | If two NCEs are triggered on the same object they are processed in order of priority, both NCEs are asked to contribute children for a given parent. In the case where they both contribute the same object, the second one will be recorded as the "source of contribution" for the object. This happens for example for a resource where there are two NCEs defined, the resource (or perhaps Java NCE that overrides the resource NCE) and another one possibly related to an RCP app. The source of the contribution is important because it is used first to determine which NCE is going to be selected to provide the label. The first NCE that provides a label wins. In 3.4 the behavior was the opposite, the higher priority NCE provided the label. There was no mechanism for overriding the label provider in 3.4, and the label was also not provided with regard to the source of contribution, it just picked the highest priority NCE to start with (which is what you would expect, in the absence of overrides). There is a benefit of using the source of contribution to provide the label, but then the source of contribution should be set to the NCE that actually provide the objects, not a subsequent NCE. We should consider fixing this for 3.5.2, and of course we need to make sure and test all of the usual things that depend on the CNF. (DTP, WST, CDT) | resolved fixed | 6ff93ff | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/ContributorTrackingSet.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentService.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceContentProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPipelineService.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentExtension.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/SafeDelegateTreeContentProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/StructuredViewerManager.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-19T22:57:41Z | 2009-11-22T08:53:20Z |
299,438 | Bug 299438 [CommonNavigator] CNF viewer state non properly reset when NCEs are activated or deactivated | The map of the objects to the NCEs should be reset whenever the NCEs associated with the viewer to change to avoid having stale label information. This has shown up when looking at the CNF tests that change the viewer. | resolved fixed | da50d1f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentService.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/StructuredViewerManager.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-19T18:40:35Z | 2010-01-12T21:00:00Z |
298,747 | Bug 298747 [EditorMgmt] Bidi Incorrect file type direction in mirrored "Editor Selection" dialog | null | verified fixed | 2ee9402 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/EditorSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-19T17:24:11Z | 2010-01-04T13:00:00Z |
296,748 | Bug 296748 [FieldAssist] remove the deprecated SimpleContentProposal | null | verified fixed | bf4e6b9 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/SimpleContentProposal.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-19T16:46:53Z | 2009-12-02T21:40:00Z |
94,796 | Bug 94796 [EditorMgmt] 'Save All Modified Resources' job is unnamed | null | verified fixed | f0d6531 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/SaveablesList.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-19T14:03:56Z | 2005-05-11T16:46:40Z |
300,012 | Bug 300012 [CommonNavigator] CNF test improvements | Various improvements and corrections. | resolved fixed | 7b9fb7f | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/M12Tests.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineChainTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestPipelineProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M1ContentProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M2ContentProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2Resource.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/ResourceWrapper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-19T03:01:06Z | 2010-01-19T03:00:00Z |
299,990 | Bug 299990 Example project for an Eclipse 4 Editor | null | resolved fixed | b1962a9 | ["examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/AddNoteHandler.java", "examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/ExifTable.java", "examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/NoteEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-18T21:33:57Z | 2010-01-18T21:26:40Z |
299,685 | Bug 299685 Empty iconURI's cause 'MalformedURLException' failures rather than being ignored | One of the issues Lars' found is that if you fill in a field (i.e. iconURI) and subsequently clear it you don't end up in the same model state. Once the value has been set in the editor it will never be 'null' again, clearing the field just sets it to an empty string. | resolved fixed | 722b24d | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SWTPartRenderer.java", "bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java", "bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/ResourceUtility.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-14T19:28:07Z | 2010-01-14T20:13:20Z |
299,588 | Bug 299588 [Forms] Widget disposed exception when closing shell from a FormText selection | null | resolved fixed | 7d76a8f | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormText.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-14T19:27:05Z | 2010-01-14T00:46:40Z |
299,680 | Bug 299680 Loading model deltas should properly process exception and fallback to the base model | null | resolved fixed | 11be391 | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/Workbench.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-14T19:26:48Z | 2010-01-14T20:13:20Z |
280,665 | Bug 280665 [Forms] Widget is disposed exception caused by FormToolkit$KeyboardHandler.keyPressed(FormToolki t.java:179) | I have a PopupDialog with a form inside it. The form holds a FormText control with a link in it. The link handler does some stuff and then closes the dialog. When I activate the link with a mouse, there is no problem. When I activate the link with keyboard, I see the following exception in the log. It looks like the key listener registered by the form toolkit is not checking if the widget has already been disposed by the time that listener is called. I put in a temporary workaround which involves calling asyncExec inside my link handler, but I would like to see this fixed. Should be pretty trivial. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3884) at org.eclipse.swt.SWT.error(SWT.java:3799) at org.eclipse.swt.SWT.error(SWT.java:3770) at org.eclipse.swt.widgets.Widget.error(Widget.java:463) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:336) at org.eclipse.swt.widgets.Control.getParent(Control.java:1355) at org.eclipse.ui.internal.forms.widgets.FormUtil.getScrolledComposite(FormUtil.j ava:204) at org.eclipse.ui.internal.forms.widgets.FormUtil.processKey(FormUtil.java:377) at org.eclipse.ui.forms.widgets.FormToolkit$KeyboardHandler.keyPressed(FormToolki t.java:179) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:155) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1040) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1368) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:4053) at org.eclipse.swt.widgets.Canvas.WM_CHAR(Canvas.java:346) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3946) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:342) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4589) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2409) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3471) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.ja va:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:19 4) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ec lipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppL auncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.j ava:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) at org.eclipse.equinox.launcher.Main.main(Main.java:1287) | verified fixed | c6b1ac7 | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-14T19:18:45Z | 2009-06-17T20:20:00Z |
299,624 | Bug 299624 CCE in testCreateView in I20100113-2100 | A test error in last night's integration build. org.eclipse.swt.widgets.Composite incompatible with org.eclipse.e4.ui.widgets.ETabFolder java.lang.ClassCastException: org.eclipse.swt.widgets.Composite incompatible with org.eclipse.e4.ui.widgets.ETabFolder at org.eclipse.e4.ui.tests.workbench.MWindowTest.testCreateView(MWindowTest.java:181) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35) at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:586) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) at org.eclipse.core.launcher.Main.main(Main.java:34) | resolved fixed | 45e9467 | ["tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartTest.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MSaveablePartTest.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MWindowTest.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/NewMWindowTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-14T16:23:18Z | 2010-01-14T11:53:20Z |
299,083 | Bug 299083 Renderer does not do layout after a child view has been added | null | resolved fixed | 03f9d09 | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-14T02:55:24Z | 2010-01-07T21:33:20Z |
299,410 | Bug 299410 Keybinding is interfering with character input | To Reproduce: Runt the contacts demo, select a person and try adding an '(' to any field in the Details view. I'm getting the following stack (and no character): java.lang.IllegalArgumentException: unexpected InvalidSyntaxException: Invalid value at "()" at org.osgi.util.tracker.ServiceTracker.<init>(ServiceTracker.java:207) at org.eclipse.e4.internal.core.services.osgi.OSGiContextStrategy.lookup(OSGiContextStrategy.java:121) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:347) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.get(EclipseContext.java:316) at org.eclipse.e4.ui.bindings.internal.BindingPrefixLookupFunction.compute(BindingPrefixLookupFunction.java:42) at org.eclipse.e4.core.services.internal.context.ValueComputation.get(ValueComputation.java:134) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:339) at org.eclipse.e4.core.services.internal.context.EclipseContext.get(EclipseContext.java:320) at org.eclipse.e4.ui.bindings.internal.BindingServiceImpl.isPartialMatch(BindingServiceImpl.java:274) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.isPartialMatch(KeyBindingDispatcher.java:420) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:442) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:499) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:333) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:279) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:68) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1240) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1049) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1059) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1100) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:1427) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1096) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1505) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:4060) at org.eclipse.swt.widgets.Text.WM_CHAR(Text.java:2175) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3952) at org.eclipse.swt.widgets.Text.windowProc(Text.java:2170) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4678) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2437) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3522) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$4.run(PartRenderingEngine.java:555) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:478) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:81) at org.eclipse.e4.ui.workbench.swt.internal.E4Application.start(E4Application.java:103) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:615) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) Caused by: org.osgi.framework.InvalidSyntaxException: Invalid value at "()" at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_substring(FilterImpl.java:1560) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_item(FilterImpl.java:1467) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_filtercomp(FilterImpl.java:1373) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_filter(FilterImpl.java:1339) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse(FilterImpl.java:1318) at org.eclipse.osgi.framework.internal.core.FilterImpl.newInstance(FilterImpl.java:142) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.createFilter(BundleContextImpl.java:991) at org.osgi.util.tracker.ServiceTracker.<init>(ServiceTracker.java:200) ... 53 more | resolved fixed | 6becae0 | ["tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-13T23:16:33Z | 2010-01-12T18:13:20Z |
299,554 | Bug 299554 Application.xmi without Window | null | resolved fixed | 9a60041 | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-13T20:33:25Z | 2010-01-13T19:13:20Z |
299,435 | Bug 299435 NPE closing contacts demo with a dirty part | null | resolved fixed | befb11a | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-12T21:35:41Z | 2010-01-12T21:00:00Z |
299,340 | Bug 299340 [CommonNavigator] Enable new CNF tests | Enable the contributed CNF tests, make minor test improvements. | resolved fixed | a325a1e | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/FirstClassM1Tests.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/M12Tests.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestSuite.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineChainTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-12T06:34:58Z | 2010-01-12T07:06:40Z |
299,331 | Bug 299331 [CommonNavigator] Compile errors in new CNF tests | null | resolved fixed | 6f5608c | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestPipelineProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-12T02:44:54Z | 2010-01-12T01:33:20Z |
299,326 | Bug 299326 [CommonNavigator] Add new test for CNF pipelining | null | resolved fixed | 02a5c36 | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineChainTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T23:03:14Z | 2010-01-11T22:46:40Z |
299,325 | Bug 299325 [CommonNavigator] Add plugin.xml configuration for new pipeline tests | null | resolved fixed | 31de14e | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestEmptyContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T22:57:55Z | 2010-01-11T22:46:40Z |
299,324 | Bug 299324 [CommonNavigator] Add new test Pipeline content provider | null | resolved fixed | 48f870c | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestPipelineProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/ResourceWrapperContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T22:54:04Z | 2010-01-11T22:46:40Z |
299,322 | Bug 299322 [CommonNavigator] Test contribution for CNF | null | resolved fixed | def22bb | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/FirstClassM1Tests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T22:31:22Z | 2010-01-11T22:46:40Z |
298,851 | Bug 298851 The change on containerData doesn't reflect on UI | During the development of e4 designer on the part layout, we have noticed a problem of synchronizatin of EMF with SWT. The change of containerData via API is not reflected on UI. I suppose it is in working progress. | resolved fixed | c991780 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SashRenderer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T20:08:28Z | 2010-01-05T14:00:00Z |
299,304 | Bug 299304 [CommonNavigator] Test contribution for CNF | null | resolved fixed | 8e85922 | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/M12Tests.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T19:21:19Z | 2010-01-11T17:13:20Z |
299,272 | Bug 299272 Renderer cannot handle an MPart with a null label | java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:4049) at org.eclipse.swt.SWT.error(SWT.java:3983) at org.eclipse.swt.SWT.error(SWT.java:3954) at org.eclipse.e4.ui.widgets.CTabItem.setText(CTabItem.java:1013) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showChild(StackRenderer.java:296) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.processContents(LazyStackRenderer.java:92) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:54) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:54) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:369) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$4.run(PartRenderingEngine.java:510) | resolved fixed | 21c5e1a | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T13:17:36Z | 2010-01-11T14:26:40Z |
299,255 | Bug 299255 [CommonNavigator] Hook new CNF tests to plugin.xml | null | resolved fixed | 1fa9ceb | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M1AdapterFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T10:20:16Z | 2010-01-11T08:53:20Z |
299,249 | Bug 299249 [CommonNavigator] Add ResourceWrapperContent/Label provider for new CNF tests | null | resolved fixed | 2d67e0d | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M1ContentProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M2ContentProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/ResourceWrapperContentProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/ResourceWrapperLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T09:58:57Z | 2010-01-11T08:53:20Z |
299,246 | Bug 299246 [CommonNavigator] Add model objects for new CNF tests | null | resolved fixed | 0cfed52 | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Container.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Core.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1File.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Folder.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Project.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Resource.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2Core.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2File.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2Resource.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/ResourceWrapper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-11T09:38:54Z | 2010-01-11T08:53:20Z |
299,210 | Bug 299210 [CommonNavigator] Test improvements | null | resolved fixed | 81dff57 | ["tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestContentProviderPipelined.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestLabelProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/jst/JstPipelineTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-10T10:58:17Z | 2010-01-10T10:40:00Z |
299,209 | Bug 299209 [CommonNavigator] Clean up error reporting for pipelined extensions | A catch block was missing for one of them, and the error report does not provide the extension Id that had the problem. | resolved fixed | 52d9eef | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorMessages.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPipelineService.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-10T10:53:47Z | 2010-01-10T10:40:00Z |
299,208 | Bug 299208 [CommonNavigator] More helpful error message when an invalid suppressedExtensionId is referenced | The current error message does not show the if of the NCE that had the bad reference. | resolved fixed | fec5cbf | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-10T10:43:43Z | 2010-01-10T10:40:00Z |
299,207 | Bug 299207 [CommonNavigator] Refactor NavigatorContentServiceContentProvider | There are a number of things about this code that make it less clear that it needs to be: 1) The internalGetChildren() and getElements() are largely duplicated. 2) The pipelinedChildren() private method returns the localSet which is never modified. 3) A ContributorTrackingSet is used in internalGetChildren() and getElements() when it is not necessary (setContribution() is never called on this, it should be just a LinkedHashSet) 4) The synchronization of methods is inconsistent 5) There are obsolete and unnecessary Javadoc comments 6) The order of the methods makes it hard to understand This refactoring (to be attached) cleans up these issues making the code easier to understand. No functionality change nor bug fix is intended here (except possibly by making the synchronization consistent). | resolved fixed | e1ba6c6 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-10T09:20:20Z | 2010-01-10T07:53:20Z |
299,172 | Bug 299172 e4.ui.services dependency on org.eclipse.core.runtime | The bundle org.eclipse.e4.ui.services uses the core.runtime bundle and the Platform class. This is a global singleton so it should be avoided. | resolved fixed | 0970810 | ["bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/internal/services/Activator.java", "bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-08T22:43:49Z | 2010-01-08T22:33:20Z |
299,166 | Bug 299166 Remove the dependency on core.runtime from e4.ui.workbench.swt | org.eclipse.e4.ui.workbench.swt This bundle uses org.eclipse.core.runtime to get IProduct. This can easily be replaced by using the IApplicationContext. I will attach a patch. | resolved fixed | 3134e48 | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-08T22:09:36Z | 2010-01-08T19:46:40Z |
296,253 | Bug 296253 [CommonNavigator] An empty label is not properly shown when it is the only contributed label | null | resolved fixed | b01cb60 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceLabelProvider.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-08T09:02:45Z | 2009-11-26T15:40:00Z |
199,923 | Bug 199923 [Contributions] Widget disposed too early! | Happens when I start Eclipse -- Error Log -- Date: Tue Aug 14 10:44:36 PDT 2007 Message: Widget disposed too early! Severity: Error Plugin ID: org.eclipse.ui.workbench Stack Trace: java.lang.RuntimeException: Widget disposed too early! at org.eclipse.ui.internal.WorkbenchPartReference$1.widgetDisposed(WorkbenchPartReference.java:169) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:116) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1125) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1106) at org.eclipse.swt.widgets.Widget.release(Widget.java:970) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:1098) at org.eclipse.swt.widgets.Widget.release(Widget.java:973) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:1098) at org.eclipse.swt.widgets.Widget.release(Widget.java:973) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:1098) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:162) at org.eclipse.swt.widgets.Decorations.releaseChildren(Decorations.java:465) at org.eclipse.swt.widgets.Shell.releaseChildren(Shell.java:1704) at org.eclipse.swt.widgets.Widget.release(Widget.java:973) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:434) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:1649) at org.eclipse.jface.window.Window.close(Window.java:330) at org.eclipse.jface.window.ApplicationWindow.close(ApplicationWindow.java:306) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1600) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:699) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:675) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:790) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:788) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$15.run(Workbench.java:908) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:905) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:834) at org.eclipse.ui.internal.Workbench$22.run(Workbench.java:1078) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1076) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1048) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:696) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:675) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:790) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:788) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:736) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:682) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1125) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1110) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:542) at org.eclipse.swt.widgets.Shell.gtk_delete_event(Shell.java:922) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1478) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4234) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3973) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:5593) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1192) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2969) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144) | resolved fixed | 4b7de9a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-06T08:54:29Z | 2007-08-14T16:46:40Z |
298,900 | Bug 298900 Renderer cannot handle an MMenuItem with a null label | java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:4049) at org.eclipse.swt.SWT.error(SWT.java:3983) at org.eclipse.swt.SWT.error(SWT.java:3954) at org.eclipse.swt.widgets.Widget.error(Widget.java:467) at org.eclipse.swt.widgets.MenuItem.setText(MenuItem.java:1023) at org.eclipse.e4.workbench.ui.renderers.swt.MenuItemRenderer.setItemText(MenuItemRenderer.java:132) at org.eclipse.e4.workbench.ui.renderers.swt.MenuItemRenderer.createWidget(MenuItemRenderer.java:108) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createWidget(PartRenderingEngine.java:406) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:272) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:54) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:375) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) | resolved fixed | ca0a6b3 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MMenuItemTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-05T21:02:05Z | 2010-01-05T19:33:20Z |
298,850 | Bug 298850 [ErrorHandling] 1 error/9 failures in StatusHandlingTestSuite | When I run the UITestSuite or the StatusHandlingTestSuite by itself I get 1 error and 9 failures. We need to get this fixed, we didn't submit to the I build this week. StatusHandlingTestSuite org.eclipse.ui.tests.statushandlers.StatusHandlingTestSuite org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest testModalitySwitch2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNotNull(Assert.java:217) at junit.framework.Assert.assertNotNull(Assert.java:210) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testModalitySwitch2(StatusDialogManagerTest.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testModalitySwitch4(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Label should be disposed when the dialog is closed. at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testModalitySwitch4(StatusDialogManagerTest.java:234) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testWithStatusAdapter2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNull(Assert.java:230) at junit.framework.Assert.assertNull(Assert.java:223) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testWithStatusAdapter2(StatusDialogManagerTest.java:319) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testDetails1(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.ComparisonFailure: expected:<[&Details >>]> but was:<[OK]> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testDetails1(StatusDialogManagerTest.java:453) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testList2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNotNull(Assert.java:217) at junit.framework.Assert.assertNotNull(Assert.java:210) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testList2(StatusDialogManagerTest.java:566) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_1(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_1(StatusDialogManagerTest.java:781) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_2(StatusDialogManagerTest.java:800) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_3(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_3(StatusDialogManagerTest.java:819) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_4(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_4(StatusDialogManagerTest.java:836) at sun.reflect.NativeMethodAccessorImpl.invoke0 | resolved fixed | 8b83fbb | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-05T19:36:24Z | 2010-01-05T14:00:00Z |
298,857 | Bug 298857 Change on the property horizontal of PartSashContainer has no effect | The modification of property horizontal in PartSashContainer by API is not synchronized with SWT/JFace. | resolved fixed | 3b9669b | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SashRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartSashContainerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-05T18:06:30Z | 2010-01-05T14:00:00Z |
298,848 | Bug 298848 Reusability of the class PartRenderingEngine is limited by the FactoryId | null | resolved fixed | 17cf7ab | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-05T13:44:06Z | 2010-01-05T14:00:00Z |
298,748 | Bug 298748 [ErrorHandling] Support tray should be visible only if there is something to display | null | resolved fixed | c742264 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/IStatusDialogConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/StackTraceSupportArea.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/SupportTray.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/AbstractStatusAreaProvider.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/SupportTrayTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2010-01-04T12:10:01Z | 2010-01-04T13:00:00Z |
298,415 | Bug 298415 StackRenderer assumes the shell has not been disposed when forcing a re-layout | null | resolved fixed | c5ae162 | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-29T17:46:36Z | 2009-12-22T16:40:00Z |
255,629 | Bug 255629 [StatusHandling]WorkbenchStatusDialog needs refactoring | Currently the dialog is first displayed, and then populated with values. It is necessary to set all UI controls before displaying the dialog. | resolved fixed | feae74d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/DefaultDetailsArea.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/DetailsAreaManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/IStatusDialogConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/LabelProviderWrapper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/SupportTray.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/LabelProviderWrapperTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/StatusHandlingTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/SupportTrayTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/WorkbenchStatusDialogManagerImplTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-28T14:59:30Z | 2008-11-18T12:06:40Z |
297,728 | Bug 297728 [Filters] IFileInfoMatcherDescription and FileInfoMatcherDescription cleanup | Users should not be allowed to modify matcher descriptions once they are used in any resource filter. Right now IFileInfoMatcherDescription has setters what is not right, since setting new id or arguments on the matcher doesn't affect the filter. We can either create kind of a factory for creating IFileInfoMatcherDescription objects, remove setters from IFileInfoMatcherDescription and make the default implementation FileInfoMatcherDescription non-API, or get rid of IFileInfoMatcherDescription and use immutable FileInfoMatcherDescription objects (initialization in constructor and getters only). | resolved fixed | f782014 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceFilterGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/UIResourceFilterDescription.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-21T10:38:00Z | 2009-12-14T14:13:20Z |
271,530 | Bug 271530 [Wizards] Wizard progress label not cleared between runnables | I have a wizard that has multiple p2 IUs in a list, and when the user selects one I need to call p2 to get a provisioning plan (a semi-long-running operation) to determine if Finish should be disabled. To do this, I call WizardPage.getContainer().run() and fork an IRunnableWithProgress to call a p2 method with a progress monitor. I noticed several times that when I made a selection in the list the progress monitor label would flash before progress would start to appear. I clicked quickly several times and was able to read that the label was actually an error message from p2. I then set a breakpoint, and found that the error is visible *before* entry into my IRunnableWithProgress. It was actually a failure from the last time that p2 was called, i.e. in a separate runnable the last time I clicked. I tried to narrow this down, but the best I could find is that the wizard dialog never calls through to ProgressMonitorPart.updateLabel() before running - so when a new runnable starts, the monitor will display text from the previous monitor before calling the new one. If the new monitor isn't updated immediately, the old text will appear until the new monitor does something. You can reproduce with the following code. The second time you call it, the progress label will say "Testing!" immediately even though the monitor hasn't been called yet. getContainer().run(true, true, new IRunnableWithProgress() { public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { try { Thread.sleep(5000); } catch (Exception e) { // ignore } monitor.beginTask("Testing!", 100); } }); | verified fixed | 75ff174 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/ProgressMonitorPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/wizards/WizardProgressMonitorTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/wizards/WizardTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-21T07:44:07Z | 2009-04-07T21:33:20Z |
158,642 | Bug 158642 [Workbench] Hide toolbar not persisted | Build: 3.2 M2 1) Window > Hide Toolbar 2) Shutdown and restart the workbench -> The toolbar is back. This should be persisted as part of my workbench state. | verified fixed | d988d97 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IPreferenceConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPreferenceInitializer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindowConfigurer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-18T19:51:54Z | 2006-09-25T18:46:40Z |
298,130 | Bug 298130 Cannot add parameters to commands through Ecore editor | Build Identifier: I20091210-2100 [Apologies for mangling terminology: I'm not very familiar with EMF.] The definitions in UIElements.ecore of HandledItems and KeyBinding don't mark their "parameters" field as being contained. Since there's no other container for parameters, you cannot define parameters from the Ecore editor. Reproducible: Always Steps to Reproduce: 1. Open up an Application.xmi 2. Create a command that takes a parameter. 3. Add a handled item (e.g., a toolbar item). Set its command to to the command defined in step #2. 4. Right click on the handled item and ask to add a child. See that Command Parameter does not appear. | resolved fixed | 4e6428e | ["bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MApplicationPackage.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MHandledItem.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MKeyBinding.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ApplicationPackageImpl.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/HandledItemImpl.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/HandledMenuItemImpl.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/HandledToolItemImpl.java", "bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/KeyBindingImpl.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-18T16:26:54Z | 2009-12-17T22:46:40Z |
243,381 | Bug 243381 [Markers] Problems list needs a tooltip for description field | null | verified fixed | 8b9c007 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkersPropertyPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-17T09:54:14Z | 2008-08-07T06:20:00Z |
259,955 | Bug 259955 [Commands] Can't add "Save All" command to main toolbar | Build ID: 3.4 Steps To Reproduce: It doesn't seem possible to add the Save All command to the main toolbar. Window > Customize Perspective > Commands doesn't appear to show the command; it would be good if Save, Save All, Print, behaved like other ISV contributed commands. | verified fixed | 027f4be | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-17T07:37:25Z | 2009-01-05T15:40:00Z |
297,486 | Bug 297486 [Progress] Uncompleted monitor in class DummyJob | null | verified fixed | af820c8 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/progress/DummyJob.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-16T17:52:49Z | 2009-12-10T15:46:40Z |
296,159 | Bug 296159 [Progress] WorkbenchSiteProgressService keeps showing CURSOR_APPSTARTING when Job canceled before it is started | I20091124-0800 - new workspace - check out a project from CVS - open a .java file - choose context menu > Team > Show Annotation - confirm using CV as quick diff provider => in the end, the History view still shows the CURSOR_APPSTARTING cursor. I can reproduce when I close the History view (must be closed in all perspectives) and choose 'Revisions > Hide Revision Information' from the change ruler context menu. | resolved fixed | 8e8e4f3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/WorkbenchSiteProgressService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-15T19:35:06Z | 2009-11-25T17:26:40Z |
297,608 | Bug 297608 [UI] testCreateMenu fails | The 'testCreateMenu' test in the UI Test suite is now failing because of a regression introduced by the ui model refactoring. | resolved fixed | 222fcb8 | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-11T18:15:46Z | 2009-12-11T19:33:20Z |
297,400 | Bug 297400 Create an E4 base application | null | resolved fixed | 064a3ac | ["bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ModelExtensionProcessor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-10T19:35:09Z | 2009-12-09T20:20:00Z |
297,459 | Bug 297459 Properties dialog for Virtual Folder shows Type: Group | The dialog should show Type: Virtual Folder. | verified fixed | d1f594c | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-10T11:21:23Z | 2009-12-10T10:13:20Z |
297,440 | Bug 297440 NLS warnings logged on startup | I20091209-1800. !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupMainPage_groupName in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupMainPage_groupLabel in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupMainPage_description in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_progress in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_errorTitle in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_internalErrorTitle in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_title in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroup_internalError in: org.eclipse.ui.internal.ide.messages | verified fixed | 142e240 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/newresource/ResourceMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-10T09:11:27Z | 2009-12-10T07:26:40Z |
296,565 | Bug 296565 Make group creation an advanced option in the folder | null | verified fixed | d1054b3 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewGroupMainPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/CreateGroupOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/newresource/BasicNewGroupResourceWizard.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-09T22:14:59Z | 2009-12-01T12:20:00Z |
296,646 | Bug 296646 Creating regular file under group gives wrong warning in wizard | Build id: I20091125-2200 1) Create a new group folder 2) Select the group, and do File > New > File 3) Type "a.txt" The wizard now says: 'a.' is an invalid name on this platform It looks like the error message is not being updated correctly as the user types. | verified fixed | 2804c1c | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-08T13:33:08Z | 2009-12-01T20:40:00Z |
229,340 | Bug 229340 [forms] TextSegment wrapping issue | null | resolved fixed | 5f3967a | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TextSegment.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-03T22:12:21Z | 2008-04-29T14:40:00Z |
296,822 | Bug 296822 NullProgressMonitor is not thread safe for expected usage | NullProgressMonitor.setCanceled and isCanceled access the cancelled field, but there's no synchronization. The expected use is that setCanceled is called from a thread other than the one doing the work, which polls isCanceled(), so this needs to be thread safe. Could either make these two methods synchronized or make the field volatile. Should check other progress monitor implementations too. | resolved fixed | a4254f6 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLine.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ProgressMonitorDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/ProgressMonitorPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-03T19:20:35Z | 2009-12-03T17:06:40Z |
296,796 | Bug 296796 MWindow name changes are not reflected in a shell | null | resolved fixed | 2954eae | ["bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MWindowTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-03T12:56:37Z | 2009-12-03T11:33:20Z |
296,695 | Bug 296695 [Markers] Problems view does not update on selection change | I20091201-1600 Problems view does not update any more on selection change. I have a 'Warnings on Selection' filter, but I always see the same warnings, even after I opened an editor or selected something in the Package Explorer. | verified fixed | ce5f718 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-03T11:55:56Z | 2009-12-02T13:20:00Z |
284,265 | Bug 284265 [JFace] DialogSettings.save() silently ignores IOException | Build ID: M20090211-1700 (Problem still in HEAD) STEPS TO REPRODUCE Call DialogSettings.save() on a Writer that produced a IOException or with a file which causes trouble during output (e.g. full drive). EXPECTED The original exception thrown by the underlying output should be propagated to the caller -- as "save() throws IOException" suggests. ACTUAL The IOException is silently ignored. ANALYSIS The internal DialogSettings.XMLWriter is based in a java.io.PrintWriter, which catches all IOExceptions. | verified fixed | afc0034 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/dialogs/DialogSettingsTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-02T22:35:20Z | 2009-07-22T13:40:00Z |
293,658 | Bug 293658 [About] About dialog's installation details does not honour dialog font settings | Build id: I20091028-0100 1. Window > Preferences > General > Appearance > Colors and Fonts 2. Basic > Dialog Font > Edit... 3. Increase the font size a bit. 4. Click 'OK'. 5. Help > About Eclipse SDK 6. So far so good. Click the 'Installation Details' button. 7. The 'Close' button is the correct size but other buttons are not. The tabs are not right and the tabs' contents are not right. Strangely enough, the 'Configuration' tab's buttons are right. The font for that tab's content should stay since that's a "log". | verified fixed | 493c7a8 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/about/InstallationDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-02T21:45:29Z | 2009-10-29T12:40:00Z |
295,386 | Bug 295386 [FieldAssist] ControlDecoration#showHoverText doesn't check if the widget is visible | null | verified fixed | 4d0e0ac | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/fieldassist/AbstractFieldAssistWindow.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/fieldassist/ControlDecorationTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/fieldassist/FieldAssistTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-02T19:50:55Z | 2009-11-17T20:33:20Z |
296,473 | Bug 296473 [Filters] Replace #getProject and #getPath with #getResource in IResourceFilterDescription | I think that just #getResource method is fine. Javadoc has to state that only IFolder and IProject objects can be returned. | resolved fixed | ca60199 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/UIResourceFilterDescription.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-02T09:38:27Z | 2009-11-30T14:06:40Z |
294,462 | Bug 294462 [FieldAssist] ControlDecoration#showHoverText doesn't check if the widget is visible | If the HOVER-Text is set on decoration of a widget which is invisible the Hover-Shell is still poping up because it doesn't check if the control is invisible make the Hover appearing somewhere on the screen. | verified fixed | f9d3e49 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-12-01T20:14:05Z | 2009-11-06T15:06:40Z |
296,364 | Bug 296364 [context] The constructors used by the injection mechanism should have @Inject | null | resolved fixed | 68011a0 | ["bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java", "examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/DetailComposite.java", "examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/DetailsView.java", "examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/ListView.java", "examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Library.java", "examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Location.java", "examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Preview.java", "examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Thumbnails.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/SampleView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-27T18:50:23Z | 2009-11-27T19:26:40Z |
296,356 | Bug 296356 We shouldn't create more than one e4 OSGi context per BundleContext | null | resolved fixed | 589364e | ["bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java", "bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/WorkbenchApplication.java", "tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/TestActivator.java", "tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/Activator.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessStartupTest.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/RenderingTestCase.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/RunApplicationTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-27T16:25:49Z | 2009-11-27T16:40:00Z |
295,391 | Bug 295391 [UI] EventBroker should clean up listeners that were subscribed to it | It would be really handy if the IEventBroker that exists in the appContext could cache up all the currently subscribed listeners and unsubscribe them when the appContext goes away. While you can say that the person who subscribed should be responsible for unsubscribing this is a fragile way to do it (i.e. Users don't RTFM and the unsubscribe pattern is not obvious). If it's not managed properly the OSGI context gets polluted with stale subscriptions which may cause very odd defects (hard to track down). Perhaps we should be looking to see if we can create these types of services using DI (so that they can have @PreDestroy injection). I also hope to do this with the SWT ResourceManager service, allowing it to clear its caches when its 'owning' appContext gets disposed. | resolved fixed | 5ba3578 | ["bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/events/EventBrokerFactory.java", "bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java", "bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java", "bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/WorkbenchApplication.java", "bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/Workbench.java", "tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessStartupTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-27T15:19:05Z | 2009-11-17T20:33:20Z |
292,322 | Bug 292322 [Viewers] Tree view is removing + indicator when one of multiple children is removed. | null | resolved fixed | 4ebedca | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-26T19:44:35Z | 2009-10-14T22:40:00Z |
126,705 | Bug 126705 [Preferences] FileFieldEditor does not call doCheckState | org.eclipse.jface.preference.FileFieldEditor does not call doCheckSate() during checkState() which makes it difficult to subclass this editor to perform additional checks like it is possible with StringFieldEditor | verified fixed | e7ea6c7 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FileFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-26T18:59:03Z | 2006-02-07T11:00:00Z |
296,056 | Bug 296056 Deadlock between syncExec and IJobManager.beginRule | The following case now produces a deadlock (since N20091120-2000): 1) The UI is waiting to begin a scheduling rule 2) The thread that owns the scheduling rule attempts to perform a syncExec. | resolved fixed | 4ecf6b2 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/concurrency/ConcurrencyTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/concurrency/SyncExecWhileUIThreadWaitsForRuleTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-25T20:41:04Z | 2009-11-24T22:00:00Z |
253,232 | Bug 253232 [Trim] locationURI "before" and "after" don't work for status trim | I would like to position a toolbar on the far left of the status trim. From the documentation, "toolbar:org.eclipse.ui.trim.status?before=org.eclipse.jface.action.StatusLineManager" should put it before the status line manager. However, the queries have no effect and my toolbar is always added at the end. Test case is attached. TrimContributionManager#update(boolean, boolean) does not seem to read the query part of my location when it reads my contribution. Is this handled somewhere else? I am attaching a test case. | verified fixed | c254491 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimContributionManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-25T18:56:08Z | 2008-11-03T16:33:20Z |
294,790 | Bug 294790 [KeyBindings] LegacyActionTools should support SWT.F13 - F20 | null | verified fixed | bf32b1f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/LegacyActionTools.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingPersistence.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-25T17:09:00Z | 2009-11-10T19:06:40Z |
292,091 | Bug 292091 [KeyBindings] Set extension point "org.eclipse.ui.bindings" 's element 'sequenceModifier' becomes disabled key bindings. | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/3.0.195.25 Safari/532.0 Build Identifier: 20090619-0625 If set "sequenceModifier" elements and found binding keys, they are disabled on linux platform.(I checked at prefenence page.[General->keys]) I'm tested like example below. <extension point="org.eclipse.ui.bindings"> <sequenceModifier find="M1+M2" replace="M2+M3" platforms="cocoa,carbon" /> <key sequence="M2+F5" commandId="example.commandId" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration" contextId="org.eclipse.ui.contexts.dialog" /> <key sequence="M1+M2+8" commandId="another.example.commandId" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration" contextId="org.eclipse.ui.contexts.window" /> <key sequence="M2+F7" commandId="other.commandId" schemeId="default.id" contextId="org.eclipse.ui.contexts.dialog" /> <scheme name="Default" description="Default shortcuts for Eclipse" id="default.id" /> </extension> Reproducible: Always | verified fixed | 6ec985a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingPersistence.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/BindingPersistenceTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-25T15:55:45Z | 2009-10-13T02:13:20Z |
294,210 | Bug 294210 [Contributions] 'Customize Perspective > Tool Bar Visibility' breaks with Separator | I20091103-0941 - enable Preferences > General Editors > Close editors automatically - open an editor - open Customize Perspective dialog - expand 'Navigate' => second to last item is empty (it's the separator in front of the 'Pin' action) - hover over the empty item => log entry below The separator should either not be shown (like in Menu Visibility), or it should be rendered with a label and a proper hover. !ENTRY org.eclipse.ui 4 0 2009-11-04 16:28:09.730 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:4012) at org.eclipse.swt.SWT.error(SWT.java:3946) at org.eclipse.swt.SWT.error(SWT.java:3917) at org.eclipse.swt.widgets.Widget.error(Widget.java:463) at org.eclipse.swt.widgets.Label.setText(Label.java:388) at org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog$NameAndDescriptionToolTip.createEntry(CustomizePerspectiveDialog.java:758) at org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog$NameAndDescriptionToolTip.createToolTipContentArea(CustomizePerspectiveDialog.ja va:708) at org.eclipse.jface.window.ToolTip.toolTipShow(ToolTip.java:363) at org.eclipse.jface.window.ToolTip.toolTipOpen(ToolTip.java:530) at org.eclipse.jface.window.ToolTip.toolTipCreate(ToolTip.java:352) at org.eclipse.jface.window.ToolTip.access$2(ToolTip.java:346) at org.eclipse.jface.window.ToolTip$ToolTipOwnerControlListener.handleEvent(ToolTip.java:678) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3917) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3510) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.WorkbenchPage.editActionSets(WorkbenchPage.java:1875) at org.eclipse.ui.internal.handlers.EditActionSetsHandler.execute(EditActionSetsHandler.java:41) ... | verified fixed | 0fcd2e2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-25T13:19:07Z | 2009-11-04T15:53:20Z |
270,092 | Bug 270092 [CellEditors] [cell editors] TextCellEditor should not specify minimum size | null | verified fixed | 4afefa8 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TextCellEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-24T20:54:09Z | 2009-03-26T09:33:20Z |
294,796 | Bug 294796 [Contributions] API request: LegacyActionTools#escapeMnemonics(String) | null | verified fixed | 4d68f0f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/LegacyActionTools.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLine.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLineContributionItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-24T19:35:58Z | 2009-11-10T19:06:40Z |
293,512 | Bug 293512 [Workbench] Make IWorkbench into an OSGi service | User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 Build Identifier: I would like to be when the IWorkbench is available for use. I am currently being started before the IWorkbench is ready and it is causing severe problems. If IWorkbench was a OSGi service, then I could use a ServiceTracker to acquire the initialized IWorkbench when it is available. Reproducible: Always | verified fixed | 26a795f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java", "tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/UITestCase.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-24T19:26:47Z | 2009-10-27T21:46:40Z |
257,185 | Bug 257185 [Contributions] Some submenus are still visible | Usually, if all children are hidden, the menu will automatically be hidden (i.e. the above isVisible call will return false). In some cases, unfortunately, this is not the case, so we must calculate it ourself. | verified fixed | 8578b24 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-24T18:03:33Z | 2008-12-02T12:13:20Z |
294,303 | Bug 294303 [Markers] 'Queuing Viewer Updates' in Problems view | null | resolved fixed | d5ddffb | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerCategory.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerUpdateJob.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkersChangeListener.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/UIUpdateJob.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-24T15:42:38Z | 2009-11-05T11:20:00Z |
283,898 | Bug 283898 [DnD] EditorSiteDragAndDropServiceImpl should remove MergedDropTarget as listener when control gets disposed | Build ID: I20090611-1540 Steps To Reproduce: 1. Create a new Plug-in Project with the template "Plug-in with a multi-page editor" 2. Edit the file MultiPageEditor.java: - In method createPage1, replace the fontButton's SelectionAdapter's implementation of method widgetSelected: from: setFont(); to: removePage(0); createPage0(); - (optionally, change the fontButton's text to "Reload") - In method createPage0, force the page to index 0 by changing: from: int index = addPage(editor, getEditorInput()); setPageText(index, editor.getTitle()); to: addPage(0, editor, getEditorInput()); setPageText(0, editor.getTitle()); 3. Launch the project with Run As -> Eclipse Application 4. In the new workbench, create a new General Project 5. In the context menu for the new project, select New -> Other... -> Sample Wizards -> Multi-page Editor file 6. In the "new_file.mpe" tab, edit the text to create a huge document (ex: ~5MB) and Save it 7. In the "Properties" tab, click the Reload button (or Change Font... if it wasn't renamed) many times 8. The replaced editor in page 0 stays in memory and leaks heap (ex: ~10MB) every time the button is pressed More information: When the AbstractTextEditor method createPartControl is called, an instance of MergedDropTarget is added to the DragAndDropService (EditorSiteDragAndDropServiceImpl) tied to the site. The MergedDropTarget holds a reference to a DropTargetListener which is an inner class (DropTargetAdapter) of the AbstractTextEditor. When the AbstractTextEditor is disposed, it does not remove its MergedDropTarget from the DragAndDropService. Normally the DragAndDropService is disposed at the same time as the editor part is closed. But in the case of an AbstractTextEditor added to a MultiPageEditorSite of a MultiPageEditorPart, the AbstractTextEditor can be disposed through a call to removePage on the MultiPageEditorPart, while the DragAndDropService (EditorSiteDragAndDropServiceImpl) remains in memory since there is a single common instance of it tied to the parent MultiPageEditorPart. As a result, since the EditorSiteDragAndDropServiceImpl keeps in its addedListeners table the MergedDropTarget which contains a reference to the AbstractTextEditor's DropTargetAdapter, the removed AbstractTextEditor can not be garbage collected and remains in memory until the whole MultiPageEditorPart is disposed. The proposed solution is to call the method uninstallTextDragAndDrop from within AbstractTextEditor's dispose method. Note 1 (MultiPageEditorPart patch): To remove the MergedDropTarget from the DragAndDropService, the current implementation of AbstractTextEditor's uninstallTextDragAndDrop method needs a reference to the SourceViewer's TextWidget (of class StyledText). In the removePage method of MultiPageEditorPart, the pageControl is disposed before the editor. Consequently, when the AbstractTextEditor's dispose method is called, the SourceViewer's TextWidget has already been disposed and it can no longer be used to remove the MergedDropTarget. The proposed solution is to change the order in the removePage method so that the editor is disposed before the pageControl, which ensures that the TextWidget (StyledText) is still available at that moment. Note 2 (EditorSiteDragAndDropServiceImpl patch): When the MergedDropTarget is created, it creates an internal instance of the class DropTarget and stores it the "realDropTarget" member variable. This instance is also stored in the control's data (the instance of class StyledText) with the DROP_TARGET_KEY. The MergedDropTarget is then added to the listeners of the EditorSiteDragAndDropServiceImpl instance. But when the method removeMergedDropTarget is called with the StyledText control as a parameter, the "realDropTarget" instance of DropTarget is retrieved from the control with the DROP_TARGET_KEY. This DropTarget instance is then attempted to be removed from the listeners of EditorSiteDragAndDropServiceImpl, but since it is the owner MergedDropTarget instance which is stored in the listener table, this remove fails. Also, only the DropTarget instance is disposed. The proposed solution is to loop through all the MergedDropTarget instances in the listener table, and remove and dispose each of them for which the "realDropTarget" is equal to the StyledText control's DropTarget. The DropTarget is then also disposed. | verified fixed | 9ff35e3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorSiteDragAndDropServiceImpl.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2009-11-24T14:37:03Z | 2009-07-17T19:46:40Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.