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]
240,381
Bug 240381 [Progress] NPE in org.eclipse.ui.workbench GroupInfo.java and JobTreeElement.java
Build ID: 3.4 Steps To Reproduce: I have not been able to find a consistent pattern but we get this NPE quite a few times: Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.progress.GroupInfo.compareTo(Unknown Source) at org.eclipse.ui.internal.progress.ProgressManagerUtil$1.compare(Unknown Source) at org.eclipse.jface.viewers.ViewerComparator$1.compare(Unknown Source) at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.sort(Unknown Source) at java.util.Arrays.sort(Unknown Source) at org.eclipse.jface.viewers.ViewerComparator.sort(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(Unknown Source) at org.eclipse.ui.internal.progress.ProgressCanvasViewer.internalRefresh(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer.internalRefresh(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer$8.run(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer.refresh(Unknown Source) at org.eclipse.jface.viewers.StructuredViewer.refresh(Unknown Source) at org.eclipse.ui.internal.progress.ProgressCanvasViewer.add(Unknown Source) at org.eclipse.ui.internal.progress.ProgressViewerContentProvider.add(Unknown Source) at org.eclipse.ui.internal.progress.ProgressViewUpdater$1.runInUIThread(Unknown Source) at org.eclipse.ui.progress.UIJob$1.run(Unknown Source) at org.eclipse.swt.widgets.RunnableLock.run(Unknown Source) ... 31 more We also get a similar NPE from the same method in JobTreeElement.java. Our product still runs fine with the NPEs but they result in an ugly message being shown to the user. We have patched it in our product by testing for nulls in these methods. More information:
verified fixed
3ca8066
["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/GroupInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/SubTaskInfo.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-28T14:36:32Z
2008-07-10T20:00:00Z
228,658
Bug 228658 [statushandling] Exception message is not displayed.
null
verified fixed
0a607a4
["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/StatusDialogManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-24T22:47:59Z
2008-04-24T12:26:40Z
241,277
Bug 241277 [ErrorHandling] DefaultDetailsArea and StackTraceSupportArea leak Clipboards
3.4 DefaultDetailsArea and StackTraceSupportArea leak Clipboards. Their #createCopyAction(Composite) create selection listeners which overwrite the field 'clipboard' every time they are invoked, without disposing the previous instance first. The best fix would be to remove the field 'clipboard' and the dispose listener, and to change the widgetSelected(..) method to: public void widgetSelected(SelectionEvent e) { Clipboard clipboard = new Clipboard(parent.getDisplay()); try { clipboard.setContents(new Object[] { prepareCopyString() }, new Transfer[] { TextTransfer.getInstance() }); } finally { clipboard.dispose(); } } There's no need to retain the clipboard after the copy operation has been executed
verified fixed
419cf93
["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/StackTraceSupportArea.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-24T21:59:20Z
2008-07-17T15:53:20Z
235,354
Bug 235354 [ErrorHandling] [StatusHandling] WorkbenchStatusDialogManager#setStatusListLabelProvider() does not work
null
verified fixed
70e3ada
["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/StatusDialogManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-17T15:42:26Z
2008-06-03T13:33:20Z
240,135
Bug 240135 [ErrorHandling] ErrorDialog#createDialogArea does not respect Dialog#createDialogArea contract
null
verified fixed
829259b
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-16T22:38:42Z
2008-07-09T10:40:00Z
240,363
Bug 240363 [Viewers] [open type] Problem with Open Type filtering
null
verified fixed
d6e1da7
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTableViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-15T16:00:44Z
2008-07-10T17:13:20Z
237,273
Bug 237273 [About] About dialog does not change about.mappings for dynamic product
Build ID: I20080613-2000 Steps To Reproduce: Our rcp application has an IProductProvider to create IProduct dynamically. In our product, IProduct.getDefiningBundle() returns different result per window. Problem: Once about.mapping is loaded, that mapping is always used, and never updated, even if IProdut.getDefiningBundle() returns a different bundle later.
verified fixed
0fdf803
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ProductProperties.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-10T15:22:47Z
2008-06-16T12:40:00Z
219,946
Bug 219946 [TabbedProperties] Tabbed property sheet tab titles can get truncated when selected
Build ID: M20070921-1145 Steps To Reproduce: 1.Contribute property tabs with labels that are similar lengths (but slightly different, say 2 or 3 characters) 2.Provide 16x16 pixel icons for the tabs. 3.When selected the label text tabs that are slightly longer is truncated because not enough room for the text and icon was allowed in the first place. More information: I have tracked this bug down to org.eclipse.ui.internal.views.properties.tabbed.view.TabbedPropertyList.setElements(). When it attempts to calculate the widest tab title item, it calculates the width of each tab title in turn and if the title has an icon it adds 16+5 pixels to the width. However, when checking this width against the current widest item, it only compares with the TEXT width of the current widest item. Therefore, unless the widest tab title text isn't at least 16+5 pixels wider than any other title text, it may not be considered to be the widest item. When checking if item is wider than current widest item, the code should take into account whether the current widest item has an icon and act accordingly. Regards Sid
resolved fixed
0e86f07
["bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-04T19:49:53Z
2008-02-22T14:20:00Z
226,867
Bug 226867 [Browser] Web browser preference change causes web browser editor error through open file
Build ID: M20080221-1800 Steps To Reproduce: 1.File->Open file...->A htm file 2.Open successfullly 3.Windows->Preferences...->Web browser->Change any setting(even later change back)->Apply 4.File->Open file...->Same htm file 5.Open failed. org.eclipse.ui.PartInitException: Could not open Web browser on abc.htm. Ensure that it is an uncompressed file. at org.eclipse.ui.internal.browser.WebBrowserEditor.init(WebBrowserEditor.java:225) More information: It seems that web browser preference change affects browser editor setings.When first open a htm file, the FileStoreEditorInput adapters a WebBrowserEditorInput. After change, the FileStoreEditorInput can adapters neither a IPathEditorInput or a WebBrowserEditorInput.A PartInitException ocurred.
resolved fixed
d7c64a5
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserEditor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-03T22:05:55Z
2008-04-14T05:13:20Z
239,523
Bug 239523 [TabbedProperties] Three JavaDoc warnings
I noticed there are three JavaDoc warnings in the org.eclipse.ui.views.properties.tabbed, there should be zero warnings and errors.
resolved fixed
3f6bad6
["bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/OverridableTabListContentProvider.java", "bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/SectionDescriptor.java", "bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-03T21:11:51Z
2008-07-03T21:20:00Z
239,300
Bug 239300 [TabbedProperties] underline missing from tab label when tab has focus
null
resolved fixed
325fdd3
["bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-03T17:35:51Z
2008-07-02T17:33:20Z
239,260
Bug 239260 [Mac] [KeyBindings] Keybindings wrong on Cocoa
Ctrl key is being used instead of Command when SWT.Platform returns "cocoa"
closed fixed
c35f7ea
["bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/keys/SWTKeyLookup.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/keys/formatting/NativeKeyFormatter.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeysPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NativeKeyFormatter.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/keys/ModifierKey.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-03T16:49:29Z
2008-07-02T14:46:40Z
237,163
Bug 237163 [DataBinding] UnmodifiableObservableValue should delegate the isStale() method to its wrapped value.
Build ID: Build id: I20080516-1333 Steps To Reproduce: 1. Create an IObservableValue which is stale 2. Wrap the IObservableValue into an UnmodifiableObservableValue 3. UnmodifiableObservableValue#isStale() returns false
verified fixed
892e07a
["bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/internal/databinding/observable/UnmodifiableObservableValue.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/UnmodifiableObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/observable/UnmodifiableObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-03T11:27:31Z
2008-06-13T20:46:40Z
236,666
Bug 236666 [DataBinding] Need snippet for two combo example
Here is my use case: Let's say we have two combo boxes, A and B A has a "Male" and "Female" in it B has a list of names If you make a selection in A, the list in B gets filtered based on the selection in A. So if you select Male in A, B will only display male names. I guess A doesn't have to be a combo, it could just be a set of radio buttons.
verified fixed
68c378d
["examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet022ComputedListCombo.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet023ConditionalVisibility.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-03T09:19:26Z
2008-06-11T16:00:00Z
239,015
Bug 239015 [Databinding] ObservableListTreeContentProvider adds the value passed to TreeViewer#setInput() to the known-elements
The input element is never shown in the viewer so it should no get part of the knownElements further more it restricts the usability of the content-provider because the input-element itself already has to provide the required Observable-Attribute(s).
verified fixed
10f34e8
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/viewers/ObservableCollectionTreeContentProvider.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/viewers/ObservableCollectionTreeContentProviderTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-02T18:00:43Z
2008-06-30T15:33:20Z
237,884
Bug 237884 [DataBinding] NPE in when disposing MultiValidator instance
Build ID: I20080502-0100 Steps To Reproduce: 1.Creating an instance of a subclass of MultiValidator e.g. MultiValidator myValidator = new MultiValidator() { validate() { return Status.OK; }} 2.Calling dispose before calling getValidationStatus() -> NPE in dispose() method (unmodifiableValidationStatus.dispose();) More information:
verified fixed
4ace1ca
["bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/internal/databinding/observable/UnmodifiableObservableValue.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/validation/MultiValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/observable/UnmodifiableObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/validation/MultiValidatorTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-02T17:57:07Z
2008-06-20T08:20:00Z
210,491
Bug 210491 [Mac] FilteredItemsSelectionDialog can use SWT.SEARCH attribute
Build ID: I20070625-1500 Steps To Reproduce: 1. Open any dialog box that extends FilteredItemsSelectionDialog (Open Resource, Open Type, ...) 2. The text box used to define the search pattern doesn't look like the platform's search field More information: Please see the screen shots
verified fixed
82fbd8d
["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
2008-06-18T18:52:24Z
2007-11-21T07:26:40Z
137,478
Bug 137478 [Preferences] ProjectReferencePage has too wide left margin
N20060418-0010 The implementation of ProjectReferencePage#createContents encapsulates the page widgets in a composite, but without setting the left margin of its GridLayout to 0.
verified fixed
b751ea7
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ProjectReferencePage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-18T18:39:04Z
2006-04-19T12:33:20Z
236,324
Bug 236324 [Forms] Eclipse 3.4 crashes / failes to repaint when "Close Others" is used with SharedHeaderFormEditor
null
resolved fixed
35b018a
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormImages.java", "tests/org.eclipse.ui.tests.forms/forms/org/eclipse/ui/tests/forms/util/FormImagesTests.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-11T15:58:18Z
2008-06-09T22:20:00Z
236,083
Bug 236083 [Doc] Copyright update
null
resolved fixed
a2a43e7
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTableViewer.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchPlugin.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/ResourceMgmtActionProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISaveablesLifecycleListener.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWindowListener.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/commands/ICommandImageService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/WorkingSetConfigurationBlock.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/WorkingSetGroup.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectActionContributor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/services/AbstractServiceFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/swt/IFocusService.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-06T16:50:53Z
2008-06-06T16:33:20Z
235,819
Bug 235819 [Services] [Doc] Small blurb for org.eclipse.ui.ISaveablesLifecycleListener
I need a small blurb for org.eclipse.ui.ISaveablesLifecycleListener to add to the isv doc. i.e. Is it a global service or hierarchical service, does it involve any cleanup, etc, and why you would get it (like a sentence). PW
resolved fixed
dc20de8
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISaveablesLifecycleListener.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-05T18:26:19Z
2008-06-05T12:46:40Z
235,613
Bug 235613 [DetachedView] Widget disposed exception when disposing ShellPool on shutdown
I20080602-2000 I've got 'a problem occurred' dialog when shutting down eclipse: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3777) at org.eclipse.swt.SWT.error(SWT.java:3695) at org.eclipse.swt.SWT.error(SWT.java:3666) 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.Widget.removeDisposeListener(Widget.java:972) at org.eclipse.ui.internal.ShellPool.dispose(ShellPool.java:129) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1603) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:722) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:698) at org.eclipse.ui.internal.WorkbenchWindow$3.run(WorkbenchWindow.java:814) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:812) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$16.run(Workbench.java:912) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:909) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:838) at org.eclipse.ui.internal.Workbench$23.run(Workbench.java:1082) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1080) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1052) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:719) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:698) at org.eclipse.ui.internal.WorkbenchWindow$3.run(WorkbenchWindow.java:814) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:812) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:741) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:687) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:92) 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.Decorations.closeWidget(Decorations.java:307) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1632) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3787) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:335) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1565) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1935) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4527) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2365) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:475) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3875) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:335) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1565) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1935) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4527) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2365) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:475) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3875) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:335) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1565) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1935) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4527) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2370) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3419) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) 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:382) 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.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30) I can not reproduce it.
verified fixed
7ccaedc
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShellPool.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-05T18:24:58Z
2008-06-04T14:33:20Z
235,845
Bug 235845 [Services] [Doc] Add documentation for org.eclipse.ui.services
Some documentation needs to be added to the Advanced section of the ISV guide. PW
resolved fixed
21cee79
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/swt/IFocusService.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-05T18:00:48Z
2008-06-05T15:33:20Z
228,956
Bug 228956 [RCP] [Doc] Document expression-based actitivies
The javadoc states: * Will also return <code>null</code> if the view descriptor exists, but * fails the Expressions check. This is really out of context as nobody really knows what "expressions" means in this context. Is this related to the authorization story? Javadoc should really be improved to link to the related topics.
resolved fixed
25fa50a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/views/IViewRegistry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-04T21:13:17Z
2008-04-25T21:46:40Z
235,179
Bug 235179 [GlobalActions] Help/Tips and Tricks menu is missing
I20080530-0100 Start Eclipe Open the Help Menu Expected Result: Tips and tricks is on the Help Menu Actual Result: Tips and tricks is missing This works fine in Eclipse 3.3.2, it seems to have been missing for some time in Eclipse 3.4. Note that Help/Tips and Tricks is initiated by TipsAndTricksAction from org.eclipse.ui.internal.ide (or was in 3.3). Testing tips and tricks is not part of the UA test plan which is why this was not detected earlier, I'm not sure which component owns this code but my guess is that something changed in org.eclipse.ui.ide to cause this menu to stop showing.
verified fixed
fe101f8
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchPlugin.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-03T18:18:03Z
2008-06-02T18:06:40Z
232,196
Bug 232196 Workspace chooser cancel button results in crash on Linux
Hitting cancel on the Workspace Launcher in the Linux Motif build, I get a crash (attaching logfile).
resolved fixed
0c391c2
["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEApplication.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-06-03T17:56:02Z
2008-05-14T21:20:00Z
218,249
Bug 218249 [Markers] Protect against invalid IMarker attribute values
Build ID: I20071213-1700 Steps To Reproduce: I don't have a testcase for this, but hopefully the backtrace provides enough information to debug the problem. 1. Create a managed makefile C/C++ project 2. Build project (with warnings in C/C++ files), watching the "Console" tab output. 3. Click on the "Problems" tab. Every so often I get a "Process resource updates" assert. If there is any more information I can provide, please let me know. More information: !SESSION 2008-02-07 10:36:57.591 -----------------------------------------------eclipse.buildId=I20071213-1700 java.version=1.6.0_03 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 -consolelog -debug !ENTRY org.eclipse.core.jobs 4 2 2008-02-07 12:37:31.465 !MESSAGE An internal error occurred during: "Process resource updates". !STACK 0 java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String at org.eclipse.ui.internal.provisional.views.markers.MarkerEntry.getLocation(MarkerEntry.java:207) at org.eclipse.ui.internal.provisional.views.markers.MarkerLocationField.getValue(MarkerLocationField.java:30) at org.eclipse.ui.internal.provisional.views.markers.api.MarkerField.compare(MarkerField.java:56) at org.eclipse.ui.internal.provisional.views.markers.MarkerComparator.compare(MarkerComparator.java:99) at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.sort(Unknown Source) at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder.sortAndMakeCategories(CachedMarkerBuilder.java:130) at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder.buildAllMarkers(CachedMarkerBuilder.java:114) at org.eclipse.ui.internal.provisional.views.markers.CachedMarkerBuilder$1.run(CachedMarkerBuilder.java:244) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
verified fixed
cc8867d
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerEntry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-30T16:10:41Z
2008-02-07T21:33:20Z
234,372
Bug 234372 [Contributions] objectContributions enablement needs org.eclipse.core.runtime.Platform
To allow the org.eclipse.core.runtime.bundleState property tester to work for objectContribution/enablement the org.eclipse.core.runtime.Platform class needs to be available to the objectContribution EvaluationContext. PW
resolved fixed
7eabbd8
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectActionContributor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-29T14:48:18Z
2008-05-28T13:06:40Z
232,489
Bug 232489 [Contributions] Switching editors updates TooItems updated due to calls to org.eclipse.ui.menus.CommandContributionItem.updateIcons()
I20080515-2000. When switching between two editors in 3.3 there were no calls to org.eclipse.ui.menus.CommandContributionItem.updateIcons(). Now in 3.4 this method is called 9 times due to CommandEvent/s being handled (call see stack below). This causes SWT ToolItems to be update/redrawn. This is responsible for 1/3 of the regression seen in JDT Text editor activation tests. On my machine this is 40-60 ms. Thread [main] (Suspended (breakpoint at line 303 in CommandContributionItem$2)) CommandContributionItem$2.commandChanged(CommandEvent) line: 303 Command$1.run() line: 511 SafeRunner.run(ISafeRunnable) line: 37 Command.fireCommandChanged(CommandEvent) line: 506 Command.setHandler(IHandler) line: 995 HandlerAuthority.updateCommand(String, IHandlerActivation) line: 457 HandlerAuthority.deactivateHandler(IHandlerActivation) line: 292 HandlerService.deactivateHandler(IHandlerActivation) line: 148 SlaveHandlerService.deactivateHandler(IHandlerActivation) line: 205 EditorActionBars(SubActionBars).setGlobalActionHandler(String, IAction) line: 523 TextEditorActionContributor.doSetActiveEditor(IEditorPart) line: 101 TextEditorActionContributor.setActiveEditor(IEditorPart) line: 143 EditorActionBars.partChanged(IWorkbenchPart) line: 335 WorkbenchPage$3.run() line: 628 SafeRunner.run(ISafeRunnable) line: 37 Platform.run(ISafeRunnable) line: 880 WorkbenchPage.activatePart(IWorkbenchPart) line: 617 WorkbenchPage.setActivePart(IWorkbenchPart) line: 3451 WorkbenchPage.requestActivation(IWorkbenchPart) line: 2998 EditorPane(PartPane).requestActivation() line: 272 EditorPane.requestActivation() line: 98 EditorPane(PartPane).setFocus() line: 318 EditorPane.setFocus() line: 127 EditorStack(PartStack).presentationSelectionChanged(IPresentablePart) line: 846 PartStack.access$1(PartStack, IPresentablePart) line: 829 PartStack$1.selectPart(IPresentablePart) line: 139 TabbedStackPresentation$1.handleEvent(TabFolderEvent) line: 133 DefaultTabFolder(AbstractTabFolder).fireEvent(TabFolderEvent) line: 267 DefaultTabFolder(AbstractTabFolder).fireEvent(int, AbstractTabItem) line: 276 DefaultTabFolder.access$1(DefaultTabFolder, int, AbstractTabItem) line: 1 DefaultTabFolder$2.handleEvent(Event) line: 87 EventTable.sendEvent(Event) line: 84 CTabFolder(Widget).sendEvent(Event) line: 1002 CTabFolder(Widget).sendEvent(int, Event, boolean) line: 1026 CTabFolder(Widget).sendEvent(int, Event) line: 1011 CTabFolder(Widget).notifyListeners(int, Event) line: 769 CTabFolder.setSelection(int, boolean) line: 3238 CTabFolder.onMouse(Event) line: 2013 CTabFolder$1.handleEvent(Event) line: 316 EventTable.sendEvent(Event) line: 84 CTabFolder(Widget).sendEvent(Event) line: 1002 Display.runDeferredEvents() line: 3801 Display.readAndDispatch() line: 3400 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 2387 Workbench.runUI() line: 2351 Workbench.access$4(Workbench) line: 2203 Workbench$5.run() line: 493 Realm.runWithDefault(Realm, Runnable) line: 288 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 488 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 IDEApplication.start(IApplicationContext) line: 112 EclipseAppHandle.run(Object) line: 193 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 379 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: 549 Main.basicRun(String[]) line: 504 Main.run(String[]) line: 1236 Main.main(String[]) line: 1212
resolved fixed
921193f
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/CommandContributionItem.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-29T14:45:18Z
2008-05-16T12:13:20Z
232,036
Bug 232036 [ErrorHandling] "Multiple Problems have occurred" dialog should not be modal
null
resolved fixed
17079d4
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/JFaceUtil.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-28T19:46:25Z
2008-05-14T10:13:20Z
223,976
Bug 223976 [Decorators] Content type decorator: Updating missing
20080325 - Create a file 'a.xml' - in the editor paste <project name="Eclipse Views" default="export" basedir=".."> </project> as content - observe that the file image is still the original image - close the editor and reopen the file - now the editor shows the 'ANT' image
verified fixed
71aa238
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/model/WorkbenchContentProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/WorkspaceActionGroup.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/ResourceMgmtActionProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-28T19:21:18Z
2008-03-25T21:20:00Z
227,721
Bug 227721 [Decorators] ContentTypeDecorator causes NPE in JFaceResources.getResources
I20080415-1646. Found in .log: !ENTRY org.eclipse.ui 4 4 2008-04-18 10:25:59.887 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jface.resource.JFaceResources.getResources(JFaceResources.java:205) at org.eclipse.jface.resource.ImageRegistry.<init>(ImageRegistry.java:151) at org.eclipse.jface.resource.ImageRegistry.<init>(ImageRegistry.java:123) at org.eclipse.ui.internal.WorkbenchImages.initializeImageRegistry(WorkbenchImages.java:570) at org.eclipse.ui.internal.WorkbenchImages.getDescriptors(WorkbenchImages.java:471) at org.eclipse.ui.internal.WorkbenchImages.getImageDescriptor(WorkbenchImages.java:501) at org.eclipse.ui.internal.registry.EditorRegistry.addSystemEditors(EditorRegistry.java:549) at org.eclipse.ui.internal.registry.EditorRegistry.initialIdToEditorMap(EditorRegistry.java:513) at org.eclipse.ui.internal.registry.EditorRegistry.<init>(EditorRegistry.java:134) at org.eclipse.ui.internal.WorkbenchPlugin.getEditorRegistry(WorkbenchPlugin.java:455) at org.eclipse.ui.internal.Workbench.getEditorRegistry(Workbench.java:1132) at org.eclipse.ui.internal.ide.ContentTypeDecorator.decorate(ContentTypeDecorator.java:49) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:269) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:72) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:356) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:338) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:374) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:334) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
verified fixed
20d42cc
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/ContentTypeDecorator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-28T14:43:34Z
2008-04-18T09:13:20Z
234,228
Bug 234228 [JavaDoc] [Viewers] AbstractTableViewer#replace(Object, int) JavaDoc misses description for arguments
- The arguments are not described - The description text is strange: ... Note that this method will create a TableItem for all of the elements provided. => There's only one element passed to this method!
verified fixed
ca7c8f0
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTableViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-28T12:51:53Z
2008-05-27T20:26:40Z
232,997
Bug 232997 [Commands][Mac] context menu submenus are disabled when selecting on OSX
I20080519-2000 This is somewhat difficult to reproduce, but I've seen it a couple of times happening now: 1. In the package explorer select an element 2. Right click to open its context menu 3. Right click it again 4. Select a sub menu entry in the context menu Is: The entry becomes disabled, this happens with most (i.e. New>) but not all submenus Should: Not disable and open the submenu As I said, it might be required to try that a couple of times until it happens. Another way to reproduce it quite reliable is to right click the element a couple of times, like 20 times, and then try to open a submenu. This happens in other views too, i.e. the markers view. This is major if not critical. Not sure if it is SWT or Platform. OSX Version 10.4.11, java.runtime.version=1.5.0_07-164
resolved fixed
1797648
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PopupMenuExtender.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-27T13:15:18Z
2008-05-20T16:13:20Z
232,048
Bug 232048 [Viewers] binary incompatibility (adding public fields) reported against jface.viewers
null
verified fixed
a328efa
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CellEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewerEditorDeactivationEvent.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-26T20:33:25Z
2008-05-14T10:13:20Z
233,285
Bug 233285 [TabbedProperties] Adopt API tooling
The tabbed properties plug-in is still not API tooling enabled.
resolved fixed
a7980ab
["bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/ISectionDescriptor.java", "bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/ITabSelectionListener.java", "bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/TabbedPropertySheetPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-21T20:13:34Z
2008-05-21T17:13:20Z
232,541
Bug 232541 [ViewMgmt] Reset Perspective ignores saveable parts
To Reproduce: Ensure that you have a dirty saveable view open in a Perspective Reset the perspective Result: No prompt to save, no chance to cancel...
verified fixed
82e8eb1
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-21T18:48:10Z
2008-05-16T17:46:40Z
232,851
Bug 232851 Performance regression: OpenCloseViewTest#showView:ResourceNavigator
3.4 HEAD: Elapsed : 624ms (95% in [621ms, 628ms]) Measurable effect: 6ms (0.4 SDs) CPU Time: 576ms (95% in [564ms, 589ms]) Measurable effect: 25ms (0.4 SDs)
verified fixed
062d40e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceNavigator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-21T18:40:57Z
2008-05-19T18:00:00Z
225,425
Bug 225425 [DataBinding] Load of known null value in CompositeMap
Found by FindBugs: line 232 The variable referenced at this point is known to be null due to an earlier check against null. Although this is valid, it might be a mistake (perhaps you intended to refer to a different variable, or perhaps the earlier check to see if the variable is null should have been a check to see if it was nonnull). I don't know what the proper fix would be at this point. We also have a bug in Snippet017TableViewerWithDerivedColumns, or in CompositeMap: - start Snippet017 - select "Della Duck" - change Mother to: "Downy O'Drake" expected: Grandmother column for Della Duck changes to "unknown" actual: Grandmother column for Della Duck remains "Downy O'Drake"
verified fixed
2aae5d7
["bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/map/CompositeMap.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/map/CompositeMap.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-21T18:36:03Z
2008-04-02T21:00:00Z
229,789
Bug 229789 [Examples] examples plugins create duplicate menus in menubar
null
verified fixed
14baf35
["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
2008-05-21T12:03:07Z
2008-05-01T13:53:20Z
199,179
Bug 199179 [DataBinding] WizardPageSupport does not report exceptions thrown in bindings
null
verified fixed
f1bd299
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/wizard/WizardPageSupport.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-15T23:19:43Z
2007-08-07T23:40:00Z
231,163
Bug 231163 [ErrorHandling] WorkbenchStatusDialogManager shouldn't hold onto parentShell
null
resolved fixed
997f5fd
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchErrorHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-15T22:14:07Z
2008-05-08T18:06:40Z
197,113
Bug 197113 Project Explorer drag and drop selection not working properly
Create a new java project. Open Project Explorer. Create 2 new classes - Test1 and Test2. Close the java code editors. Select Test1.java in the project explorer. Select Test2.java by doing a mouse down only (so Test1.java still appears highlighted) then drag Test2.java into the code editor area ()- Test1.java is displayed. This only occurs in the Project Explorer, the package explorer works fine.
resolved fixed
d3a6e4e
["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-15T19:02:10Z
2007-07-19T10:13:20Z
229,983
Bug 229983 [Markers] Order of Quick Fix entries should not be random
I20080502-0100 I am going through a number of problems reported by API tooling, specifically, missing @since tags. When invoking the quick fix from the Problems view, the order of suggested fixes is not deterministic for the same kind of problem (missing @since tag). Sometimes, the first suggested fix is adding the @since tag (which is what I want), and sometimes the suggested fix is to add a problem filter. The order of suggested fixes should be the same for each problem type, and the first suggested fix for any problem type (if possible) should be one that changes the code, not one that adds problem filters.
resolved fixed
ee9f3ca
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/registry/MarkerHelpRegistry.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/QuickFixHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-15T18:36:07Z
2008-05-02T14:53:20Z
157,506
Bug 157506 [CommonNavigator] Can't Drop an External File into Project Explorer (Mac and Linux)
Opened for IBM: This is a linux only issue that happens both in RedHat and SLES. Windows is fine. Problem: User can't drag and drop files into the Project Explorer view Expected results: User should be able to drag and drop files into the Project Explorer view Steps: Go to the j2ee perspective (or open the PE view) Create a new general project (note that this issue will happen with any project) Open the Linux File Browser and attempt to drag and drop any file (I'm using a simple text file) from your system into the newly created project in the workbench Result: The file is not added to the project. Doing the same in the Navigator view or Package Explorer view works fine.
verified fixed
15dce3e
["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonDropAdapter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-15T13:48:45Z
2006-09-15T17:06:40Z
230,365
Bug 230365 [StatusHandling] Status dialog buttons glued to bottom edge
null
resolved fixed
54a0d0c
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-14T23:13:23Z
2008-05-06T10:33:20Z
228,880
Bug 228880 [Themes] Running test suites in HighContrast crashes on launch
Build ID: I20080415-1646 Steps To Reproduce: Enable high contrast on Windows XP (Control Panel -> Accessibility ->Display ->Enable High Contrast). Eclipse should prompt to relaunch. Then run Eclipse Application with tests in the configuration. It will fail to launch.
verified fixed
a69b3a4
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeElementHelper.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-14T18:31:57Z
2008-04-25T13:26:40Z
231,358
Bug 231358 [Contributions] Provide a core expression to check for bundle activation
null
resolved fixed
e89d73d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/ExpressionAuthority.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/services/EvaluationServiceTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-14T18:23:11Z
2008-05-09T19:06:40Z
189,588
Bug 189588 [WorkingSets] ConcurrentModificationException in AbstractWorkingSetManager on startup
Build ID: I20070525-1350 Steps To Reproduce: 1. Start Eclipse 2. Sometimes error log view immediately shows two errors, first one with message "An unexpected runtime error has occurred.", second one with empty message. Stack trace: java.util.ConcurrentModificationException at java.util.TreeMap$PrivateEntryIterator.nextEntry(Unknown Source) at java.util.TreeMap$KeyIterator.next(Unknown Source) at org.eclipse.ui.internal.AbstractWorkingSetManager.getWorkingSetsForId(AbstractWorkingSetManager.java:640) at org.eclipse.ui.internal.AbstractWorkingSetManager.bundleChanged(AbstractWorkingSetManager.java:621) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:1210) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:195) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:297) More information: eclipse.buildId=I20070525-1350 java.version=1.6.0 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_DE This error could not be reproduced always, but if it happens, then only during startup process.
verified fixed
efe74fa
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AbstractWorkingSetManager.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
2008-05-14T17:11:06Z
2007-05-29T06:26:40Z
230,351
Bug 230351 [StatusHandling] The details area doesn't fit into the dialog
null
resolved fixed
627e39a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/DefaultDetailsArea.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-14T14:45:50Z
2008-05-06T10:33:20Z
231,016
Bug 231016 [Contributions] PopupMenuExtender causes CCE with GMF
null
resolved fixed
07097e8
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PopupMenuExtender.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-14T14:08:49Z
2008-05-07T22:40:00Z
231,341
Bug 231341 [Commands] Menu disappears when dialog pops up
When a dialog pops up, a main menu with a visibleWhen clause involving activeEditorId disappears. It can be reproduced with this code: WithExpression w = new WithExpression("activeEditorId"); EqualsExpression e = new EqualsExpression( "org.eclipse.ui.DefaultTextEditor"); w.add(e); IEvaluationReference ref = es.addEvaluationListener(w, listener, "foo"); WorkbenchWindowExpression wwe = new WorkbenchWindowExpression(getSite() .getPage().getWorkbenchWindow()); rs.addEvaluationListener(wwe, new RestrictionListener(ref), IRestrictionService.PROP_NOTIFYING); The active editor source is evaluated before the active shell source, so the foo property changes and then is restricted from posting changes. This will be a problem with all sources that change in uncontrolled orders, I'm not sure what to do here. PW
resolved fixed
969299a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DetachedWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.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/menus/ContributionRoot.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/InternalMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuServiceFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/SlaveMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimContributionManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/ActivePartSourceProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/ActiveShellSourceProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/CurrentSelectionSourceProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/EvaluationService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/IRestrictionService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/RestrictionListener.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/services/EvaluationServiceTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-13T18:39:23Z
2008-05-09T16:20:00Z
226,342
Bug 226342 [KeyBindings] Keys preference page conflict table is hard to read
The conflict table is hard to read as the entries are space separated. Minimally they should be tab separated or put in columns (no header is acceptable) PW
resolved fixed
2da8e3c
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-13T18:28:07Z
2008-04-09T19:40:00Z
231,636
Bug 231636 [DynamicUI] Installing releng tools dynamically results in preference page in the property dialog
3.4 M7 1) Open the properties dialog (ensuring the properties cache is established) 2) install the releng tools via P2 3) Open the properties dialog and note that the Copyright preference page is now there. 4) click on it and note the CCE. The problem is that the baseclass for the properties page reader (ObjectContributorManager) hooks a listener into the extension tracker without a filter. This means that any new extension that comes into the system will be handled by each of the subclases of this manager (causing no end of grief I would imagine). One particular type of grief is this bug. The property page manager responds to incoming extension from the releng bundle, discarding most except for the preference page extension. This extension has a syntax very similar to that of the property page and as a result we accept the copyright preference page as a property page(!). We should be adding the listener for each registry type with an appropriate filter to preclude extensions we aren't interested in.
verified fixed
94a03a0
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectActionContributorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectContributorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/LightweightDecoratorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyPageContributorManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-12T19:35:20Z
2008-05-12T19:20:00Z
231,182
Bug 231182 ProgressManagerUtil.getModalShellExcluding() should work for stacked dialogs
null
resolved fixed
3e294e3
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-09T18:56:35Z
2008-05-08T18:06:40Z
229,668
Bug 229668 [ErrorHandling] Error dialog has wrong parent when modal shell is up
null
resolved fixed
97706c6
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-09T17:35:58Z
2008-04-30T15:40:00Z
231,103
Bug 231103 [Markers] Remove marker preference page
Which is redundant due to the preferences being in the view.
verified fixed
278e72c
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkersPreferencePage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-09T17:05:06Z
2008-05-08T12:33:20Z
231,307
Bug 231307 [Themes] Colors and Fonts preference page: Tooltip blocks doubleclick
I20080508-2000 Colors and Fonts preference page: The custom tooltip blocks doubleclick on the items (to edit them).
verified fixed
b7229a5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorsAndFontsPreferencePage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-09T17:03:26Z
2008-05-09T13:33:20Z
231,175
Bug 231175 [Workbench] WorkbenchLabelProvider leaks
Every image allocated by WorkbenchLabelProvider is leaked. 1. The images are not disposed when the elements are no longer used by the viewer (fixing this would require a way for the viewer to tell the label provider when each element is no longer needed) 2. The images are not disposed when the label provider itself is disposed. Item 1 is a would-be-nice issue. Item 2 is more serious. The label provider should be using a LocalResourceManager to allocate its images, and it should dispose the resource manager when the label provider goes away. 6 Images 6 Images at: java.lang.Error at org.eclipse.swt.graphics.Device.new_Object(Device.java:708) at org.eclipse.swt.graphics.Image.<init>(Image.java:446) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:289) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.ui.model.WorkbenchLabelProvider.getImage(WorkbenchLabelProvider.java:157) at org.eclipse.jface.viewers.WrappedViewerLabelProvider.getImage(WrappedViewerLabelProvider.java:117) at org.eclipse.jface.viewers.WrappedViewerLabelProvider.update(WrappedViewerLabelProvider.java:165) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:135) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:911) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:97) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:991) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2026) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem(AbstractTreeViewer.java:806) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run(AbstractTreeViewer.java:781) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:755) at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:627) at org.eclipse.jface.viewers.AbstractTreeViewer.internalInitializeTree(AbstractTreeViewer.java:1463) at org.eclipse.jface.viewers.TreeViewer.internalInitializeTree(TreeViewer.java:816) at org.eclipse.jface.viewers.AbstractTreeViewer$5.run(AbstractTreeViewer.java:1446) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1368) at org.eclipse.jface.viewers.TreeViewer.preservingSelection(TreeViewer.java:390) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1330) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged(AbstractTreeViewer.java:1435) at org.eclipse.ui.dialogs.FilteredTree$NotifyingTreeViewer.inputChanged(FilteredTree.java:797) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:251) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1606) at org.eclipse.ui.internal.dialogs.NewWizardNewPage.createFilteredTree(NewWizardNewPage.java:332) at org.eclipse.ui.internal.dialogs.NewWizardNewPage.createControl(NewWizardNewPage.java:254) at org.eclipse.ui.internal.dialogs.NewWizardSelectionPage.createControl(NewWizardSelectionPage.java:88) at org.eclipse.jface.wizard.Wizard.createPageControls(Wizard.java:170) at org.eclipse.jface.wizard.WizardDialog.createPageControls(WizardDialog.java:669) at org.eclipse.jface.wizard.WizardDialog.createContents(WizardDialog.java:543) at org.eclipse.jface.window.Window.create(Window.java:426) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1083) at org.eclipse.ui.actions.NewProjectAction.run(NewProjectAction.java:108) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:546) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) 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.Display.runDeferredEvents(Display.java:3319) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2971) 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:169) 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:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447) at org.eclipse.equinox.launcher.Main.run(Main.java:1173) at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
resolved fixed
a224c33
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/util/SWTResourceUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/model/WorkbenchLabelProvider.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/manual/SaveablesView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-09T13:44:01Z
2008-05-08T18:06:40Z
227,317
Bug 227317 [Perspectives] [WorkbenchParts] Fast view on startup causes view ref count to be 2 instead of 1
null
verified fixed
7292609
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T21:45:19Z
2008-04-16T12:46:40Z
139,214
Bug 139214 [Keybindings] Stack overflow in keybindings
Unfortunately, I have no idea what I did to cause this, but here is the stack trace. (build I20060428-0010) ... at org.eclipse.jface.action.ExternalActionManager$CommandCallback.isAcceleratorInUse(ExternalActionManager.java:276) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:742) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuManager(Workbench.java:2518) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2480) at org.eclipse.ui.internal.Workbench$2.bindingManagerChanged(Workbench.java:2466) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(BindingManager.java:863) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingManager.java:2161) at org.eclipse.jface.bindings.BindingManager.recomputeBindings(BindingManager.java:1699) at org.eclipse.jface.bindings.BindingManager.getPrefixTable(BindingManager.java:1476) at org.eclipse.jface.bindings.BindingManager.isPartialMatch(BindingManager.java:1561) at org.eclipse.jface.action.ExternalActionManager$CommandCallback.isAcceleratorInUse(ExternalActionManager.java:276) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:742) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuManager(Workbench.java:2518) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2480) at org.eclipse.ui.internal.Workbench$2.bindingManagerChanged(Workbench.java:2466) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(BindingManager.java:863) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingManager.java:2161) at org.eclipse.jface.bindings.BindingManager.recomputeBindings(BindingManager.java:1699) at org.eclipse.jface.bindings.BindingManager.getPrefixTable(BindingManager.java:1476) at org.eclipse.jface.bindings.BindingManager.isPartialMatch(BindingManager.java:1561) at org.eclipse.jface.action.ExternalActionManager$CommandCallback.isAcceleratorInUse(ExternalActionManager.java:276) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:742) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuManager(Workbench.java:2518) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2480) at org.eclipse.ui.internal.Workbench$2.bindingManagerChanged(Workbench.java:2466) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(BindingManager.java:863) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingManager.java:2161) at org.eclipse.jface.bindings.BindingManager.recomputeBindings(BindingManager.java:1699) at org.eclipse.jface.bindings.BindingManager.getActiveBindingsByParameterizedCommand(BindingManager.java:908) at org.eclipse.jface.bindings.BindingManager.getActiveBindingsFor(BindingManager.java:1152) at org.eclipse.ui.internal.keys.BindingService.getActiveBindingsFor(BindingService.java:128) at org.eclipse.ui.internal.ide.actions.QuickMenuAction.getShortCutString(QuickMenuAction.java:111) at org.eclipse.ui.internal.ide.WorkbenchActionBuilder$6.getMenuText(WorkbenchActionBuilder.java:461) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:728) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:720) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuManager(Workbench.java:2518) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2480) at org.eclipse.ui.internal.Workbench$2.bindingManagerChanged(Workbench.java:2466) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(BindingManager.java:863) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingManager.java:2161) at org.eclipse.jface.bindings.BindingManager.clearSolution(BindingManager.java:435) at org.eclipse.jface.bindings.BindingManager.contextManagerChanged(BindingManager.java:652) at org.eclipse.core.commands.contexts.ContextManager.fireContextManagerChanged(ContextManager.java:120) at org.eclipse.core.commands.contexts.ContextManager.removeActiveContext(ContextManager.java:200) at org.eclipse.ui.internal.contexts.ContextAuthority.updateContext(ContextAuthority.java:746) at org.eclipse.ui.internal.contexts.ContextAuthority.deactivateContext(ContextAuthority.java:341) at org.eclipse.ui.internal.contexts.ContextAuthority.checkWindowType(ContextAuthority.java:222) at org.eclipse.ui.internal.contexts.ContextAuthority.updateEvaluationContext(ContextAuthority.java:779) at org.eclipse.ui.internal.services.ExpressionAuthority.sourceChanged(ExpressionAuthority.java:266) at org.eclipse.ui.AbstractSourceProvider.fireSourceChanged(AbstractSourceProvider.java:98) at org.eclipse.ui.internal.services.ActiveShellSourceProvider.access$4(ActiveShellSourceProvider.java:1) at org.eclipse.ui.internal.services.ActiveShellSourceProvider$1.handleEvent(ActiveShellSourceProvider.java:115) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:982) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:924) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:949) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:930) at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1576) at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:1714) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3244) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025) at org.eclipse.swt.internal.win32.OS.BringWindowToTop(Native Method) at org.eclipse.swt.widgets.Decorations.bringToTop(Decorations.java:183) at org.eclipse.swt.widgets.Shell.open(Shell.java:997) at org.eclipse.jface.window.Window.open(Window.java:792) at org.eclipse.ui.actions.ExportResourcesAction.run(ExportResourcesAction.java:180) at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:168) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) ....
resolved fixed
1deb5bd
["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Command.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T21:42:33Z
2006-04-28T16:00:00Z
227,982
Bug 227982 Open Resource dialog should support colored labels
I20080415-1646 Open Resource dialog should support colored labels.
verified fixed
17ab9cd
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/FilteredResourcesSelectionDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T21:15:22Z
2008-04-21T09:26:40Z
214,271
Bug 214271 [CommonNavigator] Undo/redo not enabled if nothing selected
null
resolved fixed
f1374ec
["bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/RefactorActionProvider.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/UndoRedoActionProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T21:09:52Z
2008-01-03T19:53:20Z
231,002
Bug 231002 Add Javadoc tags to UA projects for API Visibilities & Restrictions
null
resolved fixed
ac1467d
["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/HyperlinkSettings.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/IManagedForm.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/IMessageManager.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/Form.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/ScrolledForm.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T19:59:00Z
2008-05-07T22:40:00Z
224,921
Bug 224921 [IDE] BIDI3.4:HCG_Incorrect display of history in File menu in mirrored mode
Build ID: IES 3.4 Steps To Reproduce: 1. Run Eclipse with -nl iw -dir rtl command line options 2. Open several files 3. Observe how recently opened files appear in File submenu In non mirrored mode (LTR mode) the display is: # <file name> [<file path>] and it is aligned to the left In mirrored mode (RTL mode) the display is the same as in non-mirrored mode: # <file name> [<file path>] and it is aligned to the RIGHT. This is not acceptable. Expected result: ----------------- Any one of the following options is acceptable: Option 1: [<file path>] <file name> # alignment = right Option 2: <file name> [<file path>] # alignment = right Option 3: # <file name> [<file path>] alignment = left
closed fixed
748a002
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ReopenEditorMenu.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/internal/InternalTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/internal/ReopenMenuTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T18:54:47Z
2008-03-31T16:13:20Z
207,350
Bug 207350 [Trim] View disappears when perspective is switched while expanded, minimized view is opened
null
verified fixed
a0ef07a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T17:05:40Z
2007-10-24T18:20:00Z
210,083
Bug 210083 [Show View] Dialog creates all view parts upon node expansion
Build ID: I20070621-1340 Steps To Reproduce: 1. Open the "Show View" Dialog 2. Expand the nodes 3. Watch all previously unopened views to be created More information: The ViewLabelProvider tries to paint unopened views by a dimmed colour in the treeview of the dialog. To do so it has to check whether a view is currently open or not. It uses IWorkbenchPage.findView to query opened views. However if the workbench contains views that have not been activated by the user yet (by clicking on the views tab) those views are "opened" now in the background by the findView method. This behaviour seems like a bug to me and findView should not call "createPart" in any way. Only openView should actually create view part controls.
resolved fixed
a8f4f04
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ViewLabelProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T16:00:13Z
2007-11-16T10:46:40Z
230,472
Bug 230472 [ActivityMgmt] Expression controlled Activities aren't correctly synchronized with the internal enabled list when they are persisted and reloaded
null
verified fixed
2cbe9b4
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActivityPersistanceHelper.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T13:25:33Z
2008-05-06T18:53:20Z
231,119
Bug 231119 [GlobalActions] RefreshAction markes as @noextend but should be
3.4 Javadoc says: * This class may be instantiated; it may also subclass to extend: * .... The tag * @noextend This class is not intended to be subclassed by clients. got added, which is different. In JDT we subclass RefreshAction to add extra operations to refresh.
resolved fixed
df6b5c7
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/RefreshAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-08T13:04:26Z
2008-05-08T12:33:20Z
230,970
Bug 230970 [ViewMgmt] NPE in view code should not prevent closing it
Found this while investigating a performance test failure with the following stack trace (partial, the NPE happened further up in some Debug view): at org.eclipse.swt.widgets.Widget.dispose(Widget.java:440) at org.eclipse.ui.internal.PartPane.dispose(PartPane.java:176) at org.eclipse.ui.internal.ViewPane.dispose(ViewPane.java:192) at org.eclipse.ui.internal.WorkbenchPartReference.dispose(WorkbenchPartReference.java:678) at org.eclipse.ui.internal.WorkbenchPage.disposePart(WorkbenchPage.java:1646) at org.eclipse.ui.internal.WorkbenchPage.partRemoved(WorkbenchPage.java:1638) at org.eclipse.ui.internal.ViewFactory.releaseView(ViewFactory.java:256) at org.eclipse.ui.internal.Perspective.dispose(Perspective.java:281) at org.eclipse.ui.internal.WorkbenchPage.dispose(WorkbenchPage.java:1717) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages(WorkbenchWindow.java:843) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1579) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:716) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:692) at org.eclipse.ui.internal.WorkbenchWindow$3.run(WorkbenchWindow.java:808) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:806)
verified fixed
50473d3
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartPane.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T19:38:35Z
2008-05-07T19:53:20Z
230,179
Bug 230179 [JFace] Configure Columns dialog does not use dialog font
I20080502-0100 Configure Columns dialog does not use dialog font (in Problems view and maybe elsewhere too).
verified fixed
53a7fbf
["bundles/org.eclipse.jface/src/org/eclipse/jface/internal/ConfigureColumnsDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T17:45:32Z
2008-05-05T12:20:00Z
227,107
Bug 227107 [MPE] Next/Previous Page commands: Popup for multi-page editors dislocated
I20080410-1022 The popup list opened by the new 'Next Page' / 'Previous Page' commands is usually centered on the current view. This does not work for multi-page editors, e.g. PDE's plug-in editor. There, the popup is only centered when the editor area is at the left edge of the workbench window. When the editor area is in the right half of the window, the popup even appears outside of the editor.
verified fixed
ecf55e6
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/CyclePageHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T15:43:07Z
2008-04-15T11:46:40Z
224,357
Bug 224357 BIDI3.4:HCG Incomplete mirroring of the Outline view
null
closed fixed
7d593f5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/PaneFolder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T15:40:25Z
2008-03-27T12:13:20Z
228,616
Bug 228616 [KeyBindings] Show View Menu command should not open view menu when dialog is up
I20080422-0800 (already occurs in 3.3.2) The 'Show View Menu' command should not open view menu when a dialog is up. Steps: - Give focus to a view that has a view menu (check by pressing Ctrl+F10) - Window > Preferences - Ctrl+F10 => Expected: Does nothing (or opens the new preferences menu in HEAD) => Was: Opens view menu in workbench window When fixing this, make sure you don't break Ctrl+F10 in other dialogs such as Open Type and Quick Outline.
resolved fixed
786e70b
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T15:18:48Z
2008-04-24T09:40:00Z
228,717
Bug 228717 [KeyBindings] "Alt + Enter" does not open breakpoint properties
The "Alt + Enter" key combo is not opening the breakpoint properties for Java breakpoints. The action is invoked, but it has no "active" breakpoint. It appears the action is not getting selection change notifications.
resolved fixed
811c5a1
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ActionDelegateHandlerProxy.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T15:15:54Z
2008-04-24T18:00:00Z
227,983
Bug 227983 [Viewers] FilteredItemsSelectionDialog should obey colored labels preference
I20080415-1646 The FilteredItemsSelectionDialog should obey the colored labels preference. Currently, labels are always colored. Javadoc of FilteredItemsSelectionDialog.setListLabelProvider(ILabelProvider) should then also tell that styles will only be used if enabled.
verified fixed
77a3ffb
["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
2008-05-07T13:01:11Z
2008-04-21T09:26:40Z
230,879
Bug 230879 Bad test in PlatformUITest
3.4M7 There's a typo in testWithoutDisplayAccess_async - we test RCPTestWorkbenchAdvisor.syncWithoutDisplayAccess instead of RCPTestWorkbenchAdvisor.asyncWithoutDisplayAccess.
verified fixed
f4f1ec2
["tests/org.eclipse.ui.tests.rcp/Eclipse", "RCP", "Tests/org/eclipse/ui/tests/rcp/PlatformUITest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-07T12:59:43Z
2008-05-07T11:33:20Z
228,017
Bug 228017 StyledCellLabelProvider wastes CPU in TableItem#getBounds(..) even if owner draw disabled
null
resolved fixed
6daf1a2
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/DelegatingStyledCellLabelProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-06T21:01:32Z
2008-04-21T15:00:00Z
230,420
Bug 230420 [ActivityMgmt] The ignoring of default enabling expression enabled activities should be logged
null
verified fixed
ef1e887
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ExtensionActivityRegistry.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-06T20:01:58Z
2008-05-06T16:06:40Z
228,890
Bug 228890 [Commands] WidgetMethodHandler should not use obsolete Swing API any when possible
null
resolved fixed
33984d5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/WidgetMethodHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-06T19:31:58Z
2008-04-25T16:13:20Z
230,218
Bug 230218 [JFace] Test failures in PresentationsTestSuite and RCP Tests
null
verified fixed
2a2ea39
["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ColorRegistry.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPreferenceInitializer.java", "bundles/org.eclipse.ui/src/org/eclipse/ui/internal/UIPreferenceInitializer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-06T19:06:59Z
2008-05-05T15:06:40Z
228,197
Bug 228197 [StatusHandling] IAE in WorkbenchStatusDialogManager.refreshSingleStatusArea
I20080415-1646 Got this in the log: Caused by: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:3757) at org.eclipse.swt.SWT.error(SWT.java:3691) at org.eclipse.swt.SWT.error(SWT.java:3662) at org.eclipse.swt.widgets.Widget.error(Widget.java:462) at org.eclipse.swt.widgets.Label.setImage(Label.java:333) at org.eclipse.ui.statushandlers.WorkbenchStatusDialogManager.refreshSingleStatusArea(WorkbenchStatusDialogManager.java:1947) at org.eclipse.ui.statushandlers.WorkbenchStatusDialogManager.updateTitleArea(WorkbenchStatusDialogManager.java:2198) at org.eclipse.ui.statushandlers.WorkbenchStatusDialogManager.refresh(WorkbenchStatusDialogManager.java:1930) at org.eclipse.ui.statushandlers.WorkbenchStatusDialogManager.access$32(WorkbenchStatusDialogManager.java:1923) at org.eclipse.ui.statushandlers.WorkbenchStatusDialogManager$5.run(WorkbenchStatusDialogManager.java:1070) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:132) ... 24 more Sorry, no steps...
resolved fixed
a122c50
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-06T09:04:08Z
2008-04-22T13:13:20Z
94,825
Bug 94825 [WorkingSets] possible problem in shutdown sequence
null
resolved fixed
cb56a5c
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-05T18:02:04Z
2005-05-11T19:33:20Z
229,684
Bug 229684 [Progress] Potential bug in ProgressManagerUtil#getModalShellExcluding
The method getModalShellExcluding allows the client to pass in a shell that should be excluded from the search. However, the body of the method actually does this: if (shells[i].equals(shell)) { break; } This completely aborts the search for a modal shell if the excluded shell is encountered. If there is another modal shell that comes after the excluded shell in the shell array, it won't be returned. I'm assuming this is a bug, since it means the result of the method is somewhat random depending on whether there is a modal shell before versus after the excluded shell in the array. I suspect it should be: if (shells[i].equals(shell)) { continue; }
verified fixed
14f5966
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-05T13:05:37Z
2008-04-30T18:26:40Z
225,754
Bug 225754 [Import/Export] Project name should not be same as the folder name
The problem has been detected when I import Eclipse 3.3.2 projects into Eclipse 3.4M6. My projects are organized like this: myproject/common/util myproject/common/test myproject/classworking/asm myproject/classworking/reflect ... the corresponding names of these projects are: myproject-common-util myproject-common-test myproject-classworking-asm myproject-classworking-reflect ... But in 3.4M6, when I import those projects, it appears as: util test asm reflect ... this prevents me from import projects with same dirname (but in other sub-directories)
verified fixed
7b46d20
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-05T13:02:51Z
2008-04-04T14:40:00Z
229,864
Bug 229864 Table columns dialog list selection length looks odd
3.4 M7 0501-0100 The accessibility dialog for table columns widths has an odd selection look: you can see that the there is a right hand justification where selection just ends, prior to the right edge of the list. We tend to have two selection behaviours for lists, either the entire line is highlighted, or only the text itself is highlighted.
resolved fixed
c1d4ec7
["bundles/org.eclipse.jface/src/org/eclipse/jface/internal/ConfigureColumnsDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-01T22:00:39Z
2008-05-01T19:26:40Z
229,807
Bug 229807 [JFace] ConfigureColumnsDialog does not work correctly with reordered columns
The logic for dealing with column order is backwards. Should be columnObjects[i] = cObjects[columnOrder[i]]; instead of columnObjects[columnOrder[i]] = cObjects[i];
verified fixed
49aba33
["bundles/org.eclipse.jface/src/org/eclipse/jface/internal/ConfigureColumnsDialog.java", "bundles/org.eclipse.ui.views/src/org/eclipse/ui/internal/views/properties/PropertiesMessages.java", "bundles/org.eclipse.ui.views/src/org/eclipse/ui/views/properties/PropertySheetPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-01T16:24:04Z
2008-05-01T16:40:00Z
229,719
Bug 229719 JFace's default collator not using ICU when running IDE
null
verified fixed
84bf472
["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-01T14:01:17Z
2008-04-30T21:13:20Z
229,779
Bug 229779 NPE in performance tests
There are several NPEs within the UI session tests that prevent them from running. They all are due to calls to setDegredationComment() within the constructor of the tests. This should instead be called from within the test method itself - the test object does not exist when the constructor is invoked and this method will NPE.
verified fixed
26b8142
["tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/OpenMultipleEditorTest.java", "tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/PerspectiveSwitchTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-05-01T13:57:57Z
2008-05-01T13:53:20Z
229,440
Bug 229440 [Commands] Ctrl-C not working in marker properties dialog
I20080429-0100 - right click on a problem in the problems view and click "Properties". Select the description text and try copying using Ctrl-C. Using "Copy" from the context menu does work.
verified fixed
8577bab
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/ActivePartSourceProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T22:22:40Z
2008-04-29T20:13:20Z
229,473
Bug 229473 [Contributions] ShowInMenu dispose is attempting to get a service after the workbench has disposed it
I20080429-0100 I got this by quitting Eclipse via the Eclipse->Quit menu item. It does not happen if you invoke the keybinding. java.lang.NullPointerException at org.eclipse.ui.internal.menus.MenuServiceFactory.create(MenuServiceFactory.java:46) at org.eclipse.ui.internal.services.WorkbenchServiceRegistry.getService(WorkbenchServiceRegistry.java:102) at org.eclipse.ui.internal.services.ServiceLocator.getService(ServiceLocator.java:171) at org.eclipse.ui.internal.WorkbenchWindow.getService(WorkbenchWindow.java:3877) at org.eclipse.ui.internal.ShowInMenu.dispose(ShowInMenu.java:353) at org.eclipse.jface.action.MenuManager.dispose(MenuManager.java:234) at org.eclipse.jface.action.MenuManager.dispose(MenuManager.java:234) at org.eclipse.jface.action.MenuManager.dispose(MenuManager.java:234) at org.eclipse.jface.window.ApplicationWindow.close(ApplicationWindow.java:308) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1620) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:716) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:692) at org.eclipse.ui.internal.WorkbenchWindow$3.run(WorkbenchWindow.java:808) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:806) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$16.run(Workbench.java:913) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:910) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:839) at org.eclipse.ui.internal.Workbench$23.run(Workbench.java:1083) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1081) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1053) at org.eclipse.ui.internal.Workbench$56.handleEvent(Workbench.java:2265) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:3567) at org.eclipse.swt.widgets.Display.coreEventProc(Display.java:865) at org.eclipse.swt.internal.carbon.OS.MenuSelect(Native Method) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2877) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3033) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2380) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2344) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2210) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:494) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:489) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) 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:379) 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.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
verified fixed
5ab33f5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/ServiceLocator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T19:56:47Z
2008-04-29T20:13:20Z
229,623
Bug 229623 [Commands] ShowViewAction no longer respects the 'makeFast' parameter
Clicking on the FVB and selecting a view from the resulting -menu- (i.e. not opening the dialog) now results in the view being opened in the perspective instead of as a fast view.
verified fixed
fd40890
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowViewMenu.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T19:48:45Z
2008-04-30T12:53:20Z
229,351
Bug 229351 [Contributions] Customize Perspective dialog removes menu entires
I20080429-0100. (works in 3.4 M6a) 1. start fresh workspace 2. verify that the 'Edit' menu contains, e.g. Cut, Copy, Paste 3. Window > Customize Perspective... 4. click 'Cancel' (alternatively you can go and edit, then click 'OK') 5. observe: menu entries are gone from the 'Edit' menu The user has to restart in order to get the menu working again.
verified fixed
f9fbbc6
["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
2008-04-30T19:12:40Z
2008-04-29T14:40:00Z
229,386
Bug 229386 [ActivityMgmt] Expression Activities show up like normal activities in the preference page
I20080429-0100 Define an expression activity with a category binding Go into the pref page and note that you can see (and toggle) the enablement of this activity. This activity should either be removed from the tree entirely or at least be made un-toggleable.
verified fixed
f4cbaa4
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/ActivityCategoryPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/InternalActivityHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/ActivityCategoryContentProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/ActivityEnabler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T16:38:24Z
2008-04-29T17:26:40Z
229,180
Bug 229180 WorkbenchPreferenceNode swallows exceptions
If an IWorkbenchPreferencePage is defined without a no-arg constructor, WorkbenchPreferenceNode.createPage() will swallow the exception. The symptom will be a generic "This preference page could not be created" error, with no stack trace available anywhere (nor even the class of the exception).
verified fixed
22bd698
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceNode.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T15:02:44Z
2008-04-28T22:00:00Z
169,997
Bug 169997 [CellEditors] TableViewer doesn't activate TextCellEditor consistently
A TextCellEditor is not activated consistently in a TableViewer if the cell clicked is not in the currently selected row. Running the sample application in a debugger, the bounds reported for the table item appears to be incorrect for the column when the row is not selected. This behaviour can be observed by setting a breakpoint at TableEditorImpl.java line 135 (the if statement doesn't return true unless the row is selected due to the bounds being incorrect): if (bounds.contains(event.x, event.y)) {
verified fixed
912daa0
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerColumn.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T13:38:53Z
2007-01-09T19:13:20Z
185,216
Bug 185216 [CellEditors] Double click behavior on editable cells for tables happens regardless of the button used to execute the second click.
This happens with an editable CellEditor in a table. 1. The user single clicks (with button 1) the text cell editor to activate the cell. The text inside the cell automatically highlights. 2. The user clicks again (with button 2 and within the defined double click time) to activate the popup menu (perhaps they wish to paste a new value over the highlighted text). The text cell editor will then become un-activated and the double click behavior for the table will be run. I believe that this could be fixed by ensuring that for a double click action to happen, both mouse clicks are from button 1. I looked at the code in 3.2.2 and this is would involve modifying the code in both the TableEditorImpl.activateCellEditor() (lines 98-110 where it adds the mouse listener) and in TreeEditorImpl.activateCellEditor() (also lines 98-110). In 3.3, it appears that those classes were replaced. I did find, however, the same code in ColumnViewerEditor.activateCellEditor() (lines 181-193) and TableTreeViewer.TableTreeEditorImpl.activateCellEditor (lines 152-164).
verified fixed
af2b1ff
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewerEditor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-30T13:27:07Z
2007-05-02T21:06:40Z
188,674
Bug 188674 [ViewMgmt] Bad page layout when there are many views in a perspective
Build ID: 3.2.2 Steps To Reproduce: Create a perspective and add 15 or more views to the page layout (not a folder layout) to the right of the editor area with ".3f" ratio. Results: The views do not fit and the layout is unusable. Sorry if this has already been reported. I searched and couldn't find anything. More information:
verified fixed
2e555ff
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSashContainer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-29T19:50:11Z
2007-05-23T17:06:40Z
229,084
Bug 229084 [About] up/down buttons don't enable for About->Plug-in Details->Columns
The Columns dialog in About->Plug-in Details->Columns has an up and a down button. They don't enable when a list item is selected.
verified fixed
fcb517f
["bundles/org.eclipse.jface/src/org/eclipse/jface/internal/ConfigureColumnsDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-29T17:08:43Z
2008-04-28T16:26:40Z
229,240
Bug 229240 CachedMarkerBuilder writes to console
I20080429-0100. CachedMarkerBuilder writes to console.
verified fixed
0fb6b4c
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/CachedMarkerBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-04-29T11:21:01Z
2008-04-29T09:06:40Z