id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
830
333,589
Bug 333589 [Compatibility] Selection retrieved from ISelectionService doesn't match the active part's selection provider's selection
In 4.x, we implement getSelection() by asking the context for the selection. In 3.x, the selection is retrieved directly from the active selection provider. This discrepancy causes problems when working with the visual ecore editor.
2011-01-05 13:15:37
1,294,250,000
verified fixed
b83889b
1,294,250,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/SelectionService.java
Eclipse_Platform_UI
831
331,621
Bug 331621 Workbench throws NPE's on initial startup after install when bundles are started programmatically in earlyStartup()
Build Identifier: M20091008-1320 Our application runs on top of the Eclipse IDE, and we're seeing NullPointerExceptions in the error log file when the it starts for the first time after installation (or with the -clean option). Besides the exceptions, there seems to be no ill effects, and the exceptions do not occur in subsequent startups. The problem seems to the related to starting bundles programmatically in our application's earlyStartup(IStartup). Our application is starting the following bundles in earlyStartup(): org.mortbay.jetty, org.eclipse.equinox.http.jetty, org.eclipse.equinox.http.registry, com.ibm.nex.3rdparty.spring (spring lib), org.springframework.bundle.osgi.core, org.springframework.bundle.osgi.web, org.springframework.bundle.osgi.extender, org.springframework.bundle.osgi.io, org.eclipse.equinox.servletbridge. This is the exception we're getting in the Error Log: java.lang.NullPointerException at org.eclipse.ui.internal.Workbench.getWorkbenchWindows(Unknown Source) at org.eclipse.ui.internal.ExtensionEventHandler.registryChanged(Unknown Source) at org.eclipse.core.internal.registry.ExtensionRegistry$2.run(Unknown Source) at org.eclipse.core.runtime.SafeRunner.run(Unknown Source) at org.eclipse.core.internal.registry.ExtensionRegistry.processChangeEvent(Unknown Source) at org.eclipse.core.runtime.spi.RegistryStrategy.processChangeEvent(Unknown Source) at org.eclipse.core.internal.registry.osgi.ExtensionEventDispatcherJob.run(Unknown Source) at org.eclipse.core.internal.jobs.Worker.run(Unknown Source) It seems that windowManager is null when the getWorkbenchWindows() function gets called. public IWorkbenchWindow[] getWorkbenchWindows() { Window[] windows = windowManager.getWindows(); IWorkbenchWindow[] dwindows = new IWorkbenchWindow[windows.length]; System.arraycopy(windows, 0, dwindows, 0, windows.length); return dwindows; } Reproducible: Always
2010-12-01 18:40:11
1,291,250,000
verified fixed
c749731
1,294,250,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ExtensionEventHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
832
333,577
Bug 333577 [Win32] WindowXP command "Close Group" can not close all the Eclipse window that in one group
null
2011-01-05 10:56:38
1,294,240,000
verified fixed
1cf26be
1,294,240,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
Eclipse_Platform_UI
833
333,489
Bug 333489 PartSashContainers prevent re-rendering a previously-opened window
BuildId: e4 4.1M4 Attempting to re-open a window with a PartSashContainer fails as the contents of the PartSashContainers are not re-created. The direct problem is that the PartSashContainer elements don't have their widget fields nulled out on close. Thus the widgets are not re-rendered during the IPresentationEngine/PartRenderingEngine.createGui(). The widget field actually contains a Rectangle instance. The field isn't nulled out as SashRenderer inherits bindWidget from SWTPartRenderer, which only installs the unbindWidget-on-dispose (and thus null the widget field) when the widget actually is a control.
2011-01-04 11:03:53
1,294,160,000
resolved fixed
397428d
1,294,170,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/SashRenderer.java
Eclipse_Platform_UI
834
332,035
Bug 332035 [Compatibility] Duplicated editor does not indicate its dirty state
I20101207-0250 1. Open a file. 2. Make it dirty. 3. Window > New Editor 4. The new editor doesn't have the asterisk in its tab item's text.
2010-12-07 10:42:17
1,291,740,000
verified fixed
7218319
1,294,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java
Eclipse_Platform_UI
835
332,305
Bug 332305 [Compatibility] IWorkbenchPartReference's getTitle() doesn't return underlying part's title
I20101209-0255 When using Ctrl+F7, you should see 'Problems (0 items)' instead of just 'Problems'. The label doesn't contain the view's content description.
2010-12-10 08:30:00
1,291,990,000
verified fixed
a24e463
1,294,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPartReference.java
Eclipse_Platform_UI
836
332,443
Bug 332443 Logged exceptions from IPresentationEngine's removeGui(MUIElement) should include information about the element being unrendered
null
2010-12-13 09:47:53
1,292,250,000
verified fixed
7eecc5b
1,294,170,000
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
Eclipse_Platform_UI
837
332,461
Bug 332461 [Compatibility] NPE thrown when restoring workbench with an editor in a detached window
Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.PartSite.getTopLevelModelWindow(PartSite.java:403) at org.eclipse.ui.internal.PartSite.setWindow(PartSite.java:200) at org.eclipse.ui.internal.PartSite.<init>(PartSite.java:177) at org.eclipse.ui.internal.EditorSite.<init>(EditorSite.java:44) at org.eclipse.ui.internal.EditorReference.initialize(EditorReference.java:325) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) ... 57 more
2010-12-13 13:29:50
1,292,260,000
verified fixed
b22996f
1,294,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java
Eclipse_Platform_UI
838
332,140
Bug 332140 [Compatibility] Part site returns null for getShell() if called during part disposal
Caused by PartSite's getShell() method returning null. java.lang.NullPointerException at org.eclipse.mat.ui.internal.views.NotesView.dispose(NotesView.java:380) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.invalidate(CompatibilityPart.java:120) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.destroy(CompatibilityPart.java:227) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:828) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:808) at org.eclipse.e4.core.internal.di.InjectorImpl.uninject(InjectorImpl.java:167) at org.eclipse.e4.core.internal.di.Requestor.uninject(Requestor.java:122) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextInjectionListener.update(ContextObjectSupplier.java:69) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:88) at org.eclipse.e4.core.internal.contexts.EclipseContext.removeListenersTo(EclipseContext.java:439) at org.eclipse.e4.core.contexts.ContextInjectionFactory.uninject(ContextInjectionFactory.java:135) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:657) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$1(PartRenderingEngine.java:611) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run(PartRenderingEngine.java:606) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:592) at org.eclipse.e4.ui.workbench.renderers.swt.ElementReferenceRenderer.disposeWidget(ElementReferenceRenderer.java:108) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:648) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$1(PartRenderingEngine.java:611) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$5.run(PartRenderingEngine.java:606) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:592) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$1.handleEvent(PartRenderingEngine.java:133) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:73) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:380) at org.eclipse.e4.ui.model.application.ui.impl.UIElementImpl.setToBeRendered(UIElementImpl.java:288) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.hidePart(PartServiceImpl.java:977) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.hidePart(PartServiceImpl.java:921) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.closePart(StackRenderer.java:490) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.access$5(StackRenderer.java:475) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$5.close(StackRenderer.java:458) at org.eclipse.e4.ui.widgets.CTabFolder.onMouse(CTabFolder.java:1637)
2010-12-08 10:31:32
1,291,820,000
verified fixed
f0c0629
1,294,160,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java
Eclipse_Platform_UI
839
332,458
Bug 332458 [Compatibility] PartInitException must be thrown if parts are not initialized with their part site correctly
We need to assert this to ensure that clients have their implementations setup properly.
2010-12-13 12:54:14
1,292,260,000
verified fixed
0dafa58
1,294,160,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewReference.java
Eclipse_Platform_UI
840
333,101
Bug 333101 [Preferences] Redundant preferences node creation in LineDelimiterEditor
null
2010-12-22 11:07:25
1,293,030,000
verified fixed
89ca5dc
1,293,130,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/LineDelimiterEditor.java
Eclipse_Platform_UI
841
332,930
Bug 332930 Simplify code from bug 207510
There is a listener added to ProjectPreferences that will never be removed. Try to simplify the code to get rid of this listener.
2010-12-20 05:53:59
1,292,840,000
verified fixed
b7507e7
1,292,870,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/ResourceEncodingFieldEditor.java
Eclipse_Platform_UI
842
325,852
Bug 325852 Add description attribute to MPartDescriptor/MPart
Adding this new attribute we could e.g. show additional informations about a Part in Show View-Dialog, ...
2010-09-21 09:44:23
1,285,080,000
resolved fixed
5cb0e5b
1,292,660,000
bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/descriptor/basic/MPartDescriptor.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/descriptor/basic/impl/BasicPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/descriptor/basic/impl/PartDescriptorImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/MPart.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/BasicPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/PartImpl.java
Eclipse_Platform_UI
843
320,788
Bug 320788 [Model] The model misses the possibility to define mnemonics for Menu-Elements
It looks like we forgot to add mnemonics to the Menu-Element like we have one in the MenuItem
2010-07-24 04:28:33
1,279,960,000
resolved fixed
59b7308
1,292,660,000
bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/MMenuElement.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/MMenuItem.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/impl/MenuElementImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/impl/MenuItemImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/impl/MenuPackageImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/modeling/ModelReconciler.java
Eclipse_Platform_UI
844
323,444
Bug 323444 [Undo] [Commands] java.util.ConcurrentModificationException when trying to get the undo history from a source viewer
I got the following exception once when attempting to get the undo history from a source viewer in my code. Looking at the implementation of this method, I cannot seem to see how this could occur since all access to this list in DefaultOperationHistory are synchronized. Maybe it is the creation of the iterator outside of the synchronized block? Note that I have been unable to reproduce this since I first saw it since it seems to be a rare race condition. Exception Stack Trace: java.util.ConcurrentModificationException at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:372) at java.util.AbstractList$Itr.next(AbstractList.java:343) at org.eclipse.core.commands.operations.DefaultOperationHistory.filter(DefaultOperationHistory.java:558) at org.eclipse.core.commands.operations.DefaultOperationHistory.getUndoHistory(DefaultOperationHistory.java:843)
2010-08-23 17:28:32
1,282,600,000
verified fixed
bb5223b
1,292,540,000
bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/DefaultOperationHistory.java
Eclipse_Platform_UI
845
293,159
Bug 293159 [Browser] Search for external browser in Preferences finds > 40 instances of firefox on Ubuntu 64bit, if started in /usr/bin
null
2009-10-23 08:25:25
1,256,300,000
resolved fixed
b8b1dea
1,292,440,000
bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserPreferencePage.java
Eclipse_Platform_UI
846
332,482
Bug 332482 [Forms] Revert Fix for Bug #284393
null
2010-12-13 17:27:57
1,292,280,000
resolved fixed
b72048f
1,292,440,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormText.java bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/BulletParagraph.java bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TextHyperlinkSegment.java
Eclipse_Platform_UI
847
268,402
Bug 268402 [Forms] FormText links do not erase focus ring
I20090310-0100 - open an eclipse project's META-INF/MANIFEST.MF - tab through the controls and note that no focus ring is shown when focus is on links like "Dependencies" and "Runtime" (it can be inferred that these links do have focus because their texts are shown in eclipse's status line at the very bottom) -> on other platforms each link within a Link (eg.- "eclipse.org" and "SWT" in ControlExample) take and show focus independently
2009-03-12 14:26:55
1,236,880,000
resolved fixed
87ae850
1,292,440,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormText.java bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/AggregateHyperlinkSegment.java bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TextSegment.java
Eclipse_Platform_UI
848
97,787
Bug 97787 [EditorMgmt] Untitled Text Editor - Can lose unsaved content when reusing text editors
3.1 RC1, Win XP - In the preferences for General>Editors, set editor reusing as follows: - check the box "Close editors automatically" - Set "Number of opened editors before closing" to 2 - Set the radio button to "Prompt to save and reuse" - Open an untitled text file (Untitled 1) and type some text. - Open another (Untitled 2) and type some text. - Try to open an untitled text file and you will be prompted with: 'Untitled 1' has been modified. Save changes? - Select yes to save - Then cancel out of the save dialog Expected: the new untitled file should not open Actual: Untitled 3 is opened and the contents for Untitled 1 are lost.
2005-06-01 01:43:06
1,117,600,000
verified fixed
3b27177
1,292,420,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/TabBehaviourMRU.java
Eclipse_Platform_UI
849
331,335
Bug 331335 [Wizards] Bad implementation of IWizard's dispose() method can prevent the dialog from closing
If there is bad client code in an IWizard's dispose() method, the dialog get into a state where it cannot be closed. ------------ Run this code and try to close the wizard dialog, you will not be able to. Display display = new Display(); Wizard wizard = new Wizard() { public boolean performFinish() { return true; } public void dispose() { throw new RuntimeException(); } }; WizardDialog dialog = new WizardDialog(null, wizard); dialog.open(); display.dispose(); ------------ java.lang.RuntimeException at Main$5.dispose(Main.java:142) at org.eclipse.jface.wizard.WizardDialog.hardClose(WizardDialog.java:859) at org.eclipse.jface.wizard.WizardDialog.close(WizardDialog.java:484) 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:98)
2010-11-29 08:28:25
1,291,040,000
verified fixed
30927ba
1,292,320,000
bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/Wizard.java bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/wizards/TheTestWizard.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/wizards/TheTestWizardPage.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/wizards/WizardTest.java
Eclipse_Platform_UI
850
332,038
Bug 332038 Logs filled with "Defining a binding table" messages
I see a lot of these messages in my 'Error Log' view. !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.687 !MESSAGE Defining a binding table: org.eclipse.ant.ui.actionSet.presentation !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.734 !MESSAGE Defining a binding table: org.eclipse.debug.ui.breakpointActionSet !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.781 !MESSAGE Defining a binding table: org.eclipse.debug.ui.debugActionSet !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.781 !MESSAGE Defining a binding table: org.eclipse.debug.ui.launchActionSet !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.781 !MESSAGE Defining a binding table: org.eclipse.debug.ui.profileActionSet !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.781 !MESSAGE Defining a binding table: org.eclipse.jdt.debug.ui.JDTDebugActionSet !ENTRY org.eclipse.ui 4 4 2010-12-07 10:31:26.796 !MESSAGE Defining a binding table: org.eclipse.jdt.junit.JUnitActionSet
2010-12-07 11:01:23
1,291,740,000
resolved fixed
eeef2a6
1,291,820,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
851
332,063
Bug 332063 [Compatibility] Need to prevent NPE in IContextService's deactivateContext(IContextActivation) caused by null parameter
null
2010-12-07 13:00:54
1,291,740,000
verified fixed
1f90ecd
1,291,810,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextService.java
Eclipse_Platform_UI
852
326,406
Bug 326406 [Compatibility] NPE in LegacyHandlerService's deactivateHandler(IHandlerActivation)
Using eclipse.buildId=I20100922-0843 java.version=1.6.0_20-ea java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=fr_CA Command-line arguments: -os win32 -ws win32 -arch x86 -console, I got this exception in the .log file. java.lang.NullPointerException at org.eclipse.ui.internal.handlers.LegacyHandlerService.deactivateHandler(LegacyHandlerService.java:312) at org.eclipse.debug.internal.ui.views.console.ProcessConsolePageParticipant.deactivated(ProcessConsolePageParticipant.java:254) at org.eclipse.ui.internal.console.ConsoleView$8.run(ConsoleView.java:740) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.ui.internal.console.ConsoleView.deactivateParticipants(ConsoleView.java:738) at org.eclipse.ui.internal.console.ConsoleView.showPageRec(ConsoleView.java:177) at org.eclipse.ui.part.PageBookView.partActivated(PageBookView.java:759) at org.eclipse.ui.internal.console.ConsoleView$4.run(ConsoleView.java:404) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:684) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:593) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:104) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:546) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:528) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) 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:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:621) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:576) at org.eclipse.equinox.launcher.Main.run(Main.java:1409) at org.eclipse.equinox.launcher.Main.main(Main.java:1385)
2010-09-28 08:53:35
1,285,680,000
verified fixed
6314fba
1,291,660,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerService.java
Eclipse_Platform_UI
853
331,720
Bug 331720 [Compatibility] Insufficient number of editor references generated on startup
1. Open two files. 2. Close. 3. Restart. 4. Ctrl+F6, you will only see one editor when you should see two.
2010-12-02 16:14:53
1,291,320,000
verified fixed
54cef2f
1,291,320,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
854
331,714
Bug 331714 GCed entries accumulate over time in the context debug tree
null
2010-12-02 15:29:18
1,291,320,000
resolved fixed
c4ab382
1,291,320,000
bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/WeakContextRef.java
Eclipse_Platform_UI
855
331,668
Bug 331668 ESelectionService should not notify listeners if the active part does not post selections
Even if you do not set a selection provider for your IWorkbenchPart implementation, we are still propagating selection events for that part within the given workbench window.
2010-12-02 09:09:30
1,291,300,000
resolved fixed
0c0abb2
1,291,310,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/SelectionServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/ESelectionServiceTest.java
Eclipse_Platform_UI
856
331,685
Bug 331685 Unset context from model if widget creation failed since the context is disposed
If the renderer fails to create a widget for a given element, it will dispose its created context (if any) prior to returning from the call. If we try to deconstruct the element later, it will fail with an NPE because the context has been disposed and getParent() will return null.
2010-12-02 10:51:21
1,291,310,000
resolved fixed
26d8834
1,291,310,000
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java
Eclipse_Platform_UI
857
331,546
Bug 331546 [Compatibility] ViewReferences are eagerly created for parts that aren't visible
While constructing a WorkbenchPage, we are prematurely creating ViewReferences even if the part isn't being rendered in the active perspective.
2010-12-01 09:42:12
1,291,210,000
resolved fixed
6be5686
1,291,220,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
858
331,259
Bug 331259 [Compatibility] 3.x commands no longer have states available to them
null
2010-11-26 18:09:17
1,290,810,000
resolved fixed
f1c9f76
1,291,050,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/Parameter.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/addons/CommandProcessingAddon.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CommandToModelProcessor.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/commands/CommandPersistence.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandService.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/Parameter.java
Eclipse_Platform_UI
859
331,349
Bug 331349 [Compatibility] SaveablesList leaks workbench parts when parts are not closed using 3.x APIs
We have some copy/paste in our 3.x API implementations but when parts are closed via e4 APIs, the code path currently doesn't go through the SaveablesList so we end up leaking the parts.
2010-11-29 11:04:11
1,291,050,000
resolved fixed
106bac2
1,291,050,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
860
331,341
Bug 331341 [Compatibility] Editors that are outside the shared area and in an inactive perspective are not persisted properly
1. Open a file in your workspace. 2. Drag it outside the shared area to some view's stack. 3. Switch perspectives. 4. Restart. 5. Switch perspectives to the one with the editor in it. 6. The editor is not restored properly.
2010-11-29 08:59:12
1,291,040,000
verified fixed
a14980f
1,291,040,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
861
331,228
Bug 331228 [Compatibility] Views opened with Ctrl+3 don't have placeholders
null
2010-11-26 12:21:25
1,290,790,000
verified fixed
cbf0a1a
1,290,790,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ViewElement.java
Eclipse_Platform_UI
862
331,062
Bug 331062 NPE with EModelService's getElementLocation(MUIElement) on a model within a perspective that's not under the application
java.lang.NullPointerException at org.eclipse.e4.ui.internal.workbench.ModelServiceImpl.getElementLocation(ModelServiceImpl.java:740)
2010-11-24 16:04:26
1,290,630,000
resolved fixed
cb26c4e
1,290,710,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ModelServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EModelServiceTest.java
Eclipse_Platform_UI
863
331,126
Bug 331126 [Compatibility] NPE in perspective code when adding standalone view relative to a view
public void createInitialLayout(IPageLayout layout) { layout.addView(IPageLayout.ID_BOOKMARKS, IPageLayout.RIGHT, 0.25f, IPageLayout.ID_EDITOR_AREA); layout.addStandaloneView(IPageLayout.ID_OUTLINE, false, IPageLayout.TOP, .3f, IPageLayout.ID_BOOKMARKS); } Caused by: java.lang.IllegalArgumentException: The added object 'org.eclipse.e4.ui.model.application.ui.basic.impl.PartSashContainerImpl@10641064 (elementId: null, tags: null) (widget: null, renderer: null, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (horizontal: false)' is not assignable to 'org.eclipse.e4.ui.model.application.ui.basic.MStackElement' at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl$1.validate(ElementContainerImpl.java:114) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl$1.validate(ElementContainerImpl.java:1) at org.eclipse.emf.common.util.BasicEList.addUnique(BasicEList.java:443) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.doAddUnique(NotifyingListImpl.java:393) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:377) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:345) at org.eclipse.ui.internal.e4.compatibility.ModeledPageLayout.insert(ModeledPageLayout.java:444) at org.eclipse.ui.internal.e4.compatibility.ModeledPageLayout.insert(ModeledPageLayout.java:523) at org.eclipse.ui.internal.e4.compatibility.ModeledPageLayout.insertView(ModeledPageLayout.java:344) at org.eclipse.ui.internal.e4.compatibility.ModeledPageLayout.addStandaloneView(ModeledPageLayout.java:177) at b.perspectives.RelEngPerspective.createInitialLayout(RelEngPerspective.java:11) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2635) at org.eclipse.ui.handlers.ShowPerspectiveHandler.openPerspective(ShowPerspectiveHandler.java:146) at org.eclipse.ui.handlers.ShowPerspectiveHandler.openOther(ShowPerspectiveHandler.java:118) at org.eclipse.ui.handlers.ShowPerspectiveHandler.execute(ShowPerspectiveHandler.java:57) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293)
2010-11-25 09:37:36
1,290,700,000
resolved fixed
77a58a2
1,290,700,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java
Eclipse_Platform_UI
864
331,123
Bug 331123 [Compatibility] Event notifications need to be wrapped in an ISafeRunnable
At the moment, one bad listener can spell the end of all event notifications.
2010-11-25 09:18:04
1,290,690,000
resolved fixed
9d3a744
1,290,690,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartService.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
865
319,139
Bug 319139 [Import/Export] Cocoa: Import existing projects into workspace has misaligned text fields
Build Identifier: 20100617-1415 In Eclipse Cocoa, the dialog that pops up after doing Import -> Existing projects into workspace has misaligned text fields. The text field next to the label "Select root directory" seems way above than the label and the browse button than it should be. In windows, this looks fine. Same for the text field next to "Select archive file". Reproducible: Always Steps to Reproduce: 1. Go to File -> Import -> Existing Projects into workspace. 2. Notice that the text fields next to "Select root directory" and "Select archive file" are misaligned with the label and the browse button.
2010-07-07 10:49:31
1,278,510,000
verified fixed
387f2d5
1,290,670,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java
Eclipse_Platform_UI
866
331,049
Bug 331049 [Compatibility] IWorkbenchPage's hideView(IViewPart) and hideView(IViewPartReference) methods do not consider multi-instance views
We are only performing an id check for deciding which part to hide. We should instead be retrieving the actual backing model element and hiding that.
2010-11-24 12:43:31
1,290,620,000
resolved fixed
29803cd
1,290,620,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
867
331,038
Bug 331038 [UI] Cache and restore the Shell's state across sessions
Currently hitting the maximize button on the shell will cause it to become maximized during the life of the session but if you close down and restart the shell just sizes itself to occupy the whole screen, the shell's state is not set. Quite annoying since you can then accidentally move or size what *should be* a maximized shell.
2010-11-24 11:06:49
1,290,610,000
verified fixed
779a6b0
1,290,610,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/WBWRenderer.java
Eclipse_Platform_UI
868
331,007
Bug 331007 [Compatibility] NPE thrown opening new workbench window
1. Window > New Window 2. An NPE occurs. java.lang.NullPointerException at org.eclipse.ui.part.PageBookView$4.partVisible(PageBookView.java:1062) at org.eclipse.ui.internal.WorkbenchPage.firePartVisible(WorkbenchPage.java:3335) at org.eclipse.ui.internal.WorkbenchPage.access$5(WorkbenchPage.java:3328) at org.eclipse.ui.internal.WorkbenchPage$2.handleEvent(WorkbenchPage.java:2080) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:73) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:380) at org.eclipse.e4.ui.model.application.ui.advanced.impl.PerspectiveStackImpl.setSelectedElement(PerspectiveStackImpl.java:144) at org.eclipse.e4.ui.model.application.ui.advanced.impl.PerspectiveStackImpl.setSelectedElement(PerspectiveStackImpl.java:1) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2662) at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:526) 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:793) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:103) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:73) at org.eclipse.e4.core.contexts.ContextInjectionFactory.inject(ContextInjectionFactory.java:72) at org.eclipse.ui.internal.Workbench.createWorkbenchWindow(Workbench.java:1164) at org.eclipse.ui.internal.Workbench.openWorkbenchWindow(Workbench.java:2191) at org.eclipse.ui.internal.Workbench.openWorkbenchWindow(Workbench.java:2183) at org.eclipse.ui.internal.handlers.OpenInNewWindowHandler.execute(OpenInNewWindowHandler.java:58)
2010-11-24 07:41:49
1,290,600,000
verified fixed
3b0e4b7
1,290,600,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
869
330,962
Bug 330962 [Compatibility] Activation list calculations are off due to the code not considering placeholders
The activation list reordering code assumes that parts have parents via getParent(). This usually returns null because it's the part's placeholder that will actually have a parent.
2010-11-23 14:16:13
1,290,540,000
resolved fixed
d9abae7
1,290,540,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
870
330,931
Bug 330931 [Compatibility] IWorkbenchPage's getSortedPerspectives() may not be updated if perspective is set from the model
We should use an event handler to update the list instead of relying on the call to setPerspective(IPerspectiveDescriptor).
2010-11-23 10:41:57
1,290,530,000
verified fixed
8bd58c4
1,290,530,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
871
330,864
Bug 330864 Add ability to find context for a UI element
null
2010-11-22 17:07:36
1,290,460,000
resolved fixed
289a2be
1,290,460,000
bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/ContextMessages.java bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/ContextTreeProvider.java bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/ContextsView.java bundles/org.eclipse.e4.core.contexts.debug/src/org/eclipse/e4/core/internal/contexts/debug/ui/WeakContextRef.java
Eclipse_Platform_UI
872
330,803
Bug 330803 SWTException from tool item dropdowns after closing/reopening perspectives
1. Click the 'Run' tool item's dropdown arrow. 2. Window > Close Perspective 3. Window > Open Perspective > Other... > Java 4. Repeat step 1. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4091) at org.eclipse.swt.SWT.error(SWT.java:4006) at org.eclipse.swt.SWT.error(SWT.java:3977) at org.eclipse.swt.widgets.Widget.error(Widget.java:468) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) at org.eclipse.swt.widgets.Menu.setLocation(Menu.java:1427) at org.eclipse.e4.ui.workbench.renderers.swt.ToolItemRenderer$5.widgetSelected(ToolItemRenderer.java:315) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:234) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4084) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3675) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:780) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:696) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:91)
2010-11-22 09:36:16
1,290,440,000
verified fixed
55b2051
1,290,440,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolItemRenderer.java
Eclipse_Platform_UI
873
330,706
Bug 330706 [Compatibility] Opening and then closing a new window results in NPE
I opened a new window and then closed it. I get an NPE in the code dealing with the MApplications selected element and chosing a new active window. 2010-11-19 14:47:42.170 Log ErrorException while dispatching event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/ui/ElementContainer/selectedElement/SET] to handler org.eclipse.e4.ui.services.internal.events.UIEventHandler@1cbb1cbb java.lang.NullPointerException at org.eclipse.ui.internal.Workbench$28.handleEvent(Workbench.java:1579) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:67) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:380) at org.eclipse.e4.ui.model.application.ui.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:171) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.handleEvent(PartRenderingEngine.java:263) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:197) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:1) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:148) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:135) at org.eclipse.equinox.internal.event.EventAdminImpl.sendEvent(EventAdminImpl.java:78) at org.eclipse.equinox.internal.event.EventComponent.sendEvent(EventComponent.java:39) at org.eclipse.e4.ui.services.internal.events.EventBroker.send(EventBroker.java:67) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:380) at org.eclipse.emf.common.notify.impl.NotificationImpl.dispatch(NotificationImpl.java:1033) at org.eclipse.emf.common.notify.impl.NotificationImpl.dispatch(NotificationImpl.java:1038) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.remove(NotifyingListImpl.java:724) at org.eclipse.emf.common.util.AbstractEList.remove(AbstractEList.java:466) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1403) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1104) at org.eclipse.ui.internal.WorkbenchWindow.access$9(WorkbenchWindow.java:1083) at org.eclipse.ui.internal.WorkbenchWindow$6.run(WorkbenchWindow.java:1130) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1128) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1144) at org.eclipse.ui.internal.WorkbenchWindow$4.close(WorkbenchWindow.java:435) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$8.shellClosed(WBWRenderer.java:419) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:98) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1258) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1282) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1267) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:616) at org.eclipse.swt.widgets.Shell.gtk_delete_event(Shell.java:1189) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1735) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4800) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4359) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:8253) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1239) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:2255) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3158) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:780) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:696) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:91) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:542) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:524) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) 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:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:621) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:576) at org.eclipse.equinox.launcher.Main.run(Main.java:1409) at org.eclipse.equinox.launcher.Main.main(Main.java:1385)
2010-11-19 14:44:10
1,290,200,000
verified fixed
bf13ae7
1,290,200,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
874
330,699
Bug 330699 [Compatibility] Toolbar drop downs do not appear
Toolbar drop downs in the workbench window like search, new class, run/debug all don't show up.
2010-11-19 14:18:05
1,290,190,000
resolved fixed
ea3f9d4
1,290,200,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolItemRenderer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuHelper.java
Eclipse_Platform_UI
875
293,459
Bug 293459 [Markers] Markers view does not persist column placements across workbench restart
Build id: I20091027-0100 1. Start the Eclipse SDK on a new workspace. 2. Close the 'Welcome' screen. 3. Activate the 'Problems' view. 4. Ctrl+F10 to bring up the view's menu > Columns... 5. Move 'Resource' from second place to the last (fifth). 6. Click 'OK'. 7. Verify it has been removed. 8. Shutdown Eclipse and restart it. 9. 'Resource' is now the third column instead of being the last one. If I repeat the steps it becomes the fourth. It's like it's going at turtle speed one column at a time. Slow and steady wins the race, as I often say.
2009-10-27 11:27:36
1,256,660,000
resolved fixed
586e1e3
1,290,190,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkersViewColumnsDialog.java
Eclipse_Platform_UI
876
330,692
Bug 330692 [Compatibility] NPE thrown when showing view with secondary id and an incorrect view id
Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java:678) at org.eclipse.ui.internal.WorkbenchPage$7.run(WorkbenchPage.java:2762) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:2759) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:2735) at org.eclipse.ui.handlers.ShowViewHandler.openView(ShowViewHandler.java:126) at org.eclipse.ui.handlers.ShowViewHandler.openOther(ShowViewHandler.java:99) at org.eclipse.ui.handlers.ShowViewHandler.execute(ShowViewHandler.java:67) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:58) 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) ... 36 more
2010-11-19 12:57:47
1,290,190,000
resolved fixed
120908b
1,290,190,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
877
330,668
Bug 330668 [Compatibility] PartInitException should be thrown if invalid editor id provided for open editor request
We throw a PartInitException in 3.x if we can't find an editor descriptor for the given id in the editor registry.
2010-11-19 09:59:43
1,290,180,000
resolved fixed
6dae1af
1,290,180,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
878
330,667
Bug 330667 IWorkbenchPage's openEditors(IEditorInput[], String[], int) method materializes all editors
It pretty much goes against the purpose of why we introduced this method in 3.x in the first place...
2010-11-19 09:50:50
1,290,180,000
resolved fixed
3e8b98d
1,290,180,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
879
330,467
Bug 330467 [Compatibility] Workbench window menu bar submenus keeps growing
Submenus like 'Search > Text' keeps growing in size.
2010-11-17 10:58:13
1,290,010,000
resolved fixed
7366f15
1,290,110,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerRendererFilter.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ContributionsAnalyzer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PopupMenuExtender.java
Eclipse_Platform_UI
880
330,570
Bug 330570 [Compatibility] Editor state is not preserved when using 'New Editor'
1. Open a text file. 2. Select/Highlight some text. 3. Window > New Editor 4. The same block of text is not selected. This works in 3.x.
2010-11-18 09:21:03
1,290,090,000
verified fixed
dd5b4f0
1,290,090,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.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/WorkbenchPage.java
Eclipse_Platform_UI
881
330,558
Bug 330558 [Compatibility] QuickAccess assumes all views are 3.x views
null
2010-11-18 07:47:17
1,290,080,000
resolved fixed
a097939
1,290,080,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/SearchField.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ViewElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ViewProvider.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewRegistry.java
Eclipse_Platform_UI
882
330,254
Bug 330254 [Compatibility] Part getting closed by workbench window shutdown causes part activation
null
2010-11-15 09:45:39
1,289,830,000
resolved fixed
e237f22
1,290,080,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
Eclipse_Platform_UI
883
330,553
Bug 330553 [Import/Export] Importing a project that exists in workspace location merges the contents
(1) Create a project in the default location (2) Export it to an archive (3) Delete it (but don't choose the option to delete from disk) (4) Make some changes in the <workspace root>/<project> directory (4) Import the archive you exported in step 2 This results in files from both the archive and directory. If the directory already has a file thats available in the archive, then it doesn't modify it. Ideally we shouldn't be allowing the import at all.
2010-11-18 06:23:48
1,290,080,000
verified fixed
684f65a
1,290,080,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java
Eclipse_Platform_UI
884
328,599
Bug 328599 [Wizards] cancelable parameter does not disable Wizard progress bar cancel button
Implementing a wizard using org.eclipse.jface.wizard.Wizard that calls getContainer.run() with false for the cancelable parameter does not disable the cancel button beside the progress bar.
2010-10-25 09:27:28
1,288,010,000
verified fixed
c518690
1,290,080,000
bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/ProgressMonitorPart.java
Eclipse_Platform_UI
885
330,389
Bug 330389 Prevent recursive focus requests in ContributedPartRenderer
null
2010-11-16 13:44:54
1,289,930,000
verified fixed
a02fb34
1,290,020,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ContributedPartRenderer.java
Eclipse_Platform_UI
886
319,773
Bug 319773 [Compatibility] 'Variables' view's view menu does not have 'Java' submenu
In the view menu, there should two items, 'Layout' and 'Java'. Only 'Layout' is visible in 4.0.
2010-07-13 14:33:02
1,279,050,000
resolved fixed
e394805
1,290,010,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/ActionSet.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuPersistence.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/ViewAction.java
Eclipse_Platform_UI
887
330,114
Bug 330114 [Compatibility] Link the WW menu manager
Instead of copying the WorkbenchWindow menu manager code to the model, and then regenerating most of it, we can now link the window MMenu to the MenuManager filled in by the WorkbenchActionBuilder. A compatibility level reconciler can create e4 equivalents for the contribution items we can translate (CommandContributionItems, ActionContributionItems that have a definition id, etc). PW
2010-11-12 11:51:55
1,289,580,000
resolved fixed
15aa7a6
1,290,000,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerRenderer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorActionBars.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorMenuManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SwitchToWindowMenu.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
Eclipse_Platform_UI
888
326,085
Bug 326085 [Forms] Last lines of lengthy context-sensitive help garbled
Build Identifier: I20100608-0911 For long context-sensitive (F1) help entries, where a scroll bar is displayed on the help window, if you scroll to the bottom of the window, the last two lines of context-sensitive help are often displayed on top of each other. Thus, the last two lines are unreadable. This problem is also dependent on the width of the help window. If you resize the help window horizontally to make it wider or narrower, the text will shift back and forth between being displayed correctly and incorrectly. Reproducible: Always Steps to Reproduce: 1. Open context-sensitive help that is so long that a scroll bar is displayed in the help window. 2. Scroll to the bottom of the help window. 3. Grab the control on the side of the help window and move it back and forth to make the window wider or narrower.
2010-09-23 13:59:04
1,285,260,000
resolved fixed
a17286b
1,289,870,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/Paragraph.java
Eclipse_Platform_UI
889
330,112
Bug 330112 [Compatibility] Outline view menu only shows up once per switch
It shows up once after switching to a specific java editor, and then it won't show up again until you switch editors. PW
2010-11-12 11:50:02
1,289,580,000
resolved fixed
95d9cf5
1,289,860,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/RenderedToolBarRenderer.java
Eclipse_Platform_UI
890
330,142
Bug 330142 [Compatibility] Parts that implement ISaveableSources do not have their Saveables queried or saved
We have an editor that uses the Saveable interface to perform a background save. When I tried to save in Eclipse 4.1 I got the following exception because we do not support saving without a progress monitor. eclipse.buildId=I20101029-1118 java.version=1.6.0_22 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US Command-line arguments: -os win32 -ws win32 -arch x86_64 -console -consolelog -debug Error Fri Nov 12 14:55:04 EST 2010 java.lang.UnsupportedOperationException at com.ibm.team.filesystem.ui.views.TeamPlacePart2.doSave(TeamPlacePart2.java:386) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.doSave(CompatibilityPart.java:244) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:208) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:214) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:178) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:86) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.savePart(PartServiceImpl.java:942) at org.eclipse.ui.internal.WorkbenchPage.saveSaveable(WorkbenchPage.java:2409) at org.eclipse.ui.internal.WorkbenchPage.saveEditor(WorkbenchPage.java:2427) at org.eclipse.ui.internal.SaveAction.run(SaveAction.java:76) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:121) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:58) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:208) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:189) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:123) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:122) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:266) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:465) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:515) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:348) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:294) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:76) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1254) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1052) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1077) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1062) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1103) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:1454) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1099) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1508) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:4273) at org.eclipse.swt.widgets.Text.WM_CHAR(Text.java:2252) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4165) at org.eclipse.swt.widgets.Text.windowProc(Text.java:2247) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4891) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2460) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3673) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:783) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:692) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:104) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:542) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:524) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:621) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:576) at org.eclipse.equinox.launcher.Main.run(Main.java:1409) at org.eclipse.equinox.launcher.Main.main(Main.java:1385)
2010-11-12 15:57:14
1,289,600,000
resolved fixed
d7dedfa
1,289,850,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveableHelper.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java
Eclipse_Platform_UI
891
330,273
Bug 330273 Unhandled keybinding error messages in the logs when launching an inner
Failed to handle binding: org.eclipse.e4.ui.model.application.commands.impl.KeyBindingImpl@53e453e4 (keySequence: Alt+Shift+Right, elementId: null, tags: null) Failed to handle binding: org.eclipse.e4.ui.model.application.commands.impl.KeyBindingImpl@5e0c5e0c (keySequence: Ctrl+Shift+Left, elementId: null, tags: null) Failed to handle binding: org.eclipse.e4.ui.model.application.commands.impl.KeyBindingImpl@75187518 (keySequence: Ctrl+Right, elementId: null, tags: null) Failed to handle binding: org.eclipse.e4.ui.model.application.commands.impl.KeyBindingImpl@18c818c8 (keySequence: Alt+PageDown, elementId: null, tags: null) ...
2010-11-15 13:31:37
1,289,850,000
resolved fixed
bac6785
1,289,850,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
892
329,871
Bug 329871 [Commands] Stackoverflow in BindingSystem
null
2010-11-10 03:40:17
1,289,380,000
verified fixed
1b25154
1,289,840,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
893
330,118
Bug 330118 Reduce number of RaTs created on context update
null
2010-11-12 11:56:24
1,289,580,000
resolved fixed
303f60f
1,289,580,000
bundles/org.eclipse.e4.ui.di/src/org/eclipse/e4/ui/internal/di/UIEventObjectSupplier.java
Eclipse_Platform_UI
894
329,486
Bug 329486 UIEventsTest's testAllTopics() fails with code from HEAD
Anyone else getting this? I'm seeing this with the code from HEAD. junit.framework.AssertionFailedError: No event fired:[Ljava.lang.String;@417348 dirty at junit.framework.Assert.fail(Assert.java:47) at org.eclipse.e4.ui.tests.application.UIEventsTest.ensureAllSet(UIEventsTest.java:373) at org.eclipse.e4.ui.tests.application.UIEventsTest.checkForFailures(UIEventsTest.java:336) at org.eclipse.e4.ui.tests.application.UIEventsTest.testAllTopics(UIEventsTest.java:290)
2010-11-04 16:09:26
1,288,900,000
verified fixed
cf137ab
1,289,580,000
tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/model/test/MTestPackage.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/model/test/impl/TestHarnessImpl.java
Eclipse_Platform_UI
895
310,665
Bug 310665 [Browser] 'Web Browser' preference page ignores cancellation
I20100426-0852 1. Window > Preferences > General > Web Browser 2. In Windows XP, I see "Default system web browser", "Firefox", and "Internet Explorer". 3. Select IE. Click the 'Remove' button. 4. Click 'Cancel'. 5. Redo step 1. 6. Window > Preferences 7. IE is gone. :(
2010-04-27 12:45:49
1,272,390,000
resolved fixed
d93c3ef
1,289,530,000
bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/BrowserDescriptorWorkingCopy.java bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/BrowserManager.java bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserPreferencePage.java
Eclipse_Platform_UI
896
308,081
Bug 308081 [Forms] Image not displayed in disabled ImageHyperlink
null
2010-04-05 12:32:49
1,270,490,000
resolved fixed
af9a12e
1,289,510,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/ImageHyperlink.java
Eclipse_Platform_UI
897
245,670
Bug 245670 [Preferences] Regression: Preferences dialog reveals focus widget when shell is activated
null
2008-08-29 06:17:20
1,220,000,000
resolved fixed
6111aa6
1,289,500,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormToolkit.java
Eclipse_Platform_UI
898
329,950
Bug 329950 'Close Others' and 'Close All' may cause bundle activation
null
2010-11-10 16:43:06
1,289,430,000
resolved fixed
4aae118
1,289,440,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java
Eclipse_Platform_UI
899
329,930
Bug 329930 Resetting a perspective while its active part is not defined in the perspective causes the perspective to not have an active part after the reset
1. Window > Show View > Console 2. Window > Reset Perspective... > OK 3. No parts are active.
2010-11-10 12:42:34
1,289,410,000
verified fixed
7d2f7e2
1,289,420,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ApplicationPartServiceImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartActivationHistory.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/modeling/EPartService.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
900
329,918
Bug 329918 NPE thrown when activating a part after resetting a perspective without an editor area and the last active part was in the area
1. Open a perspective without an editor area. 2. Open a file. 3. The editor is now active. 4. Window > Reset Perspective... > OK 5. Try to activate a view. An NPE is thrown. Caused by: java.lang.NullPointerException at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.setCSSInfo(SWTPartRenderer.java:68) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.trackActivePart(WBWRenderer.java:131) at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:52) ... 53 more
2010-11-10 11:02:07
1,289,400,000
verified fixed
06e0d22
1,289,410,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ElementReferenceRenderer.java
Eclipse_Platform_UI
901
227,087
Bug 227087 [Commands] Nicer 'Show view' command label
20080415 With the change to use the parameterized 'Show view' command, the new command selection window (Alt + Shift + Q) contains multiple entries like: Show View (View: Package Explorer) Show View (View: Problems) Show View (View: Search) Could this be improved to Show View: Package Explorer
2008-04-15 04:28:54
1,208,250,000
verified fixed
96abd36
1,289,330,000
bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/ParameterizedCommand.java
Eclipse_Platform_UI
902
299,295
Bug 299295 [KeyBindings] Exporting key preferences to CSV does not allow context being null
null
2010-01-11 11:32:59
1,263,230,000
verified fixed
d7100f5
1,289,330,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/KeyController.java
Eclipse_Platform_UI
903
300,372
Bug 300372 [Commands] Doing Ctrl+3 build id command fails with InvalidArgumentException
3.5.2 RC1 Doing Ctrl + 3, followed by build id fails with the following exception: java.lang.IllegalArgumentException: Argument not valid at org.eclipse.swt.SWT.error(SWT.java:3865) at org.eclipse.swt.SWT.error(SWT.java:3799) at org.eclipse.swt.SWT.error(SWT.java:3770) at org.eclipse.swt.dnd.DND.error(DND.java:282) at org.eclipse.swt.dnd.DND.error(DND.java:228) at org.eclipse.swt.dnd.Clipboard.setContents(Clipboard.java:440) at org.eclipse.swt.dnd.Clipboard.setContents(Clipboard.java:371) at org.eclipse.ui.internal.ide.commands.CopyBuildIdToClipboardHandler.ex ecute(CopyBuildIdToClipboardHandler.java:45) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.ja va:294) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(Para meterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommandInConte xt(HandlerService.java:270) at org.eclipse.ui.internal.quickaccess.CommandElement.execute(CommandEle ment.java:49) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.handleElementSe lected(QuickAccessDialog.java:681) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.handleSelection (QuickAccessDialog.java:758) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.access$6(QuickA ccessDialog.java:748)
2010-01-21 09:18:27
1,264,080,000
verified fixed
a11efa8
1,289,330,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/commands/CopyBuildIdToClipboardHandler.java
Eclipse_Platform_UI
904
329,835
Bug 329835 [EditorMgmt] WorkbenchEditorsDialog's save operation simply reuses a progress monitor repeatedly for every editor to be saved
The progress monitor is passed to the editor's doSave(IProgressMonitor) without any regard for what the previous editor might've called on the editor.
2010-11-09 12:41:43
1,289,320,000
verified fixed
1f20e3f
1,289,330,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchEditorsDialog.java
Eclipse_Platform_UI
905
323,393
Bug 323393 [Contributions] Service initialization wrong! Sources must be initialized before Handlers
null
2010-08-23 10:42:02
1,282,570,000
verified fixed
b638627
1,289,320,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/WorkbenchServiceRegistry.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/services/CheckHandler.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/services/EvaluationServiceTest.java
Eclipse_Platform_UI
906
323,489
Bug 323489 [KeyBindings] Reduce memory footprint of BindingManager
null
2010-08-24 09:56:27
1,282,660,000
verified fixed
a462813
1,289,320,000
bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/BindingManager.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/keys/BindingPersistenceTest.java
Eclipse_Platform_UI
907
328,763
Bug 328763 [Commands] CommandContributionItem's getCommand() method should spec that it 'null' may be returned
Can happen for undefined commands and other such unfortunate happenings.
2010-10-26 15:00:21
1,288,120,000
verified fixed
3f70bef
1,289,320,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/CommandContributionItem.java
Eclipse_Platform_UI
908
323,713
Bug 323713 [DND] Drop affordance drawn in minimized stack but throws IAE when mouse button is released
M20100825-0800 1. Minimize the 'Package Explorer'. 2. Drag the 'Problems' view so that your mouse cursor is below the icon of the 'Package Explorer' in the left trim. 3. Release your mouse button. 4. The view doesn't actually get moved to the trim. 5. An IAE is logged. java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:4064) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.SWT.error(SWT.java:3969) at org.eclipse.swt.widgets.Widget.error(Widget.java:468) at org.eclipse.swt.widgets.ToolBar.indexOf(ToolBar.java:651) at org.eclipse.ui.internal.FastViewDnDHandler$ViewDropTarget.drop(FastViewDnDHandler.java:87) at org.eclipse.ui.internal.dnd.DragUtil.performDrag(DragUtil.java:134) at org.eclipse.ui.internal.PartStack.paneDragStart(PartStack.java:1751) at org.eclipse.ui.internal.PartStack.dragStart(PartStack.java:1703) at org.eclipse.ui.internal.PartStack.access$0(PartStack.java:1694) at org.eclipse.ui.internal.PartStack$1.dragStart(PartStack.java:125) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:118) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:269) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:282) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.handleDragStarted(AbstractTabFolder.java:366) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder$2.handleEvent(AbstractTabFolder.java:67) at org.eclipse.ui.presentations.PresentationUtil.handleMouseMove(PresentationUtil.java:110) at org.eclipse.ui.presentations.PresentationUtil.access$4(PresentationUtil.java:95) at org.eclipse.ui.presentations.PresentationUtil$2.handleEvent(PresentationUtil.java:63) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1053) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4066) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3657)
2010-08-26 10:28:27
1,282,830,000
verified fixed
50923b5
1,289,320,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FastViewDnDHandler.java
Eclipse_Platform_UI
909
279,781
Bug 279781 [Import/Export] Recursive addition problem in Import > Existing projects into workspace
Build ID: M20090211-1700 Steps To Reproduce: 1. Create Workspace ws1 2. Create project p1. 3. Create Workspace ws1/p1 4. One Import > Existing projects into workspace 5. Select ws1/p1 and check the option "Copy projects into workspace". 6. Click finish button. 7. Observe that p1 is recursively added. More information: In ideal case we should check for recursive addition and avoid it.
2009-06-10 07:14:26
1,244,630,000
verified fixed
dd9b41d
1,289,290,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java
Eclipse_Platform_UI
910
244,011
Bug 244011 [Wizards] Import from Filesystem dialog does not always give file-list
Build ID: I20080617-2000 Steps To Reproduce: When using the Eclipse importer from "File system" I encounter two situations where the panes showing directories and files do not repaint without further user actions. Scenario 1: when pasing directory name into "From directory" Scenario 2: after navigating to directory using Browse... button, then clicking Back and Next buttons in sequence The symptom in both cases is that after selecting the directory, I expect to see the folder name in the LH pane and a list of files to choose in the RH pane. Instead they remain blank until further action is taken: In scenario 1: Click in the 'From directory:' field of the Import wizard of the tooling, then Ctrl-V to paste the path into the field. You will see nothing in either pane below the field, even if you press Enter. There are several ways to make files appear: - switch focus to a different application; the left-hand pane will magically be populated. - or: click on one of the 2 panes below. Clicking on the left one populates both panes; clicking on the right pane only populates the left pane. - or: click on Browse... to the right of the field to see the directory highlighted. Click OK and the left pane will be populated. In scenario 2: The directory listing appears when you OK the initial selection of directory. But clicking Back then Next on the wizard leaves you with the "From directory:" still showing the right value, the LH pane populated, but the RH pane empty. More information: I agree it is possible to get the file list to appear and once I have selected files, they do import. However the wizard behaviour could be improved, particularly in the use case when I cut+paste the directory from another application. I have tested this only on Windows XP (SP2). No stack traces were produced here.
2008-08-13 07:55:10
1,218,630,000
verified fixed
e9ed0dd
1,289,280,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceTreeAndListGroup.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardFileSystemResourceImportPage1.java
Eclipse_Platform_UI
911
323,528
Bug 323528 [EditorMgmt] Need getActiveEditorInput(ExecutionEvent) and getActiveEditorInputChecked(ExecutionEvent) in HandlerUtil
There's an ISources.ACTIVE_EDITOR_INPUT_NAME but no convenience method for retrieving them. You are forced to use getVariable(ExecutionEvent, String) and getVariableChecked(ExecutionEvent, String) instead.
2010-08-24 13:52:55
1,282,670,000
verified fixed
722a486
1,289,250,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/HandlerUtil.java
Eclipse_Platform_UI
912
305,200
Bug 305200 [EditorMgmt] FileEditorMappingContentProvider could just be replaced by ArrayContentProvider
This class doesn't seem to be very useful.
2010-03-09 12:29:35
1,268,160,000
verified fixed
6af500d
1,289,240,000
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardExportPage.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/TypeFilteringDialog.java
Eclipse_Platform_UI
913
297,370
Bug 297370 [QuickAccess] Text at bottom of dialog should say that pressing ctrl-3 will change filtering
1. Press Ctrl-3 to open quick access 2. Type something to show some matches (i.e. Java) 3. Text at bottom says "Press Ctrl-3 to show all matches" 4. Press Ctrl-3 again 5. More matches get shown, text at bottom goes blank 6. Press Ctrl-3 again, only 'best' (recent?) matches are shown Trivial problem, but since the option to flip between the filtering is there, we might as well advertise it to the user.
2009-12-09 12:45:19
1,260,380,000
verified fixed
de21009
1,289,240,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessMessages.java
Eclipse_Platform_UI
914
323,708
Bug 323708 [DND] Previously maximized view can get into a state where it can no longer be maximized
null
2010-08-26 09:44:13
1,282,830,000
verified fixed
f3df4fe
1,289,240,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorStack.java
Eclipse_Platform_UI
915
320,989
Bug 320989 NPE in CocoaUIHandler
This happened in my Tutorial-RCP when opening a second window and hitting CMD+Q. !ENTRY org.eclipse.e4.ui.workbench 4 0 2010-07-27 12:18:00.823 !MESSAGE Internal Error !STACK 0 java.lang.NullPointerException at org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler.findAction(CocoaUIHandler.java:662) at org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler.runAction(CocoaUIHandler.java:554) at org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler.quitMenuItemSelected(CocoaUIHandler.java:725) at org.eclipse.e4.ui.workbench.renderers.swt.cocoa.CocoaUIHandler.actionProc(CocoaUIHandler.java:748) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4582) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:4659) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:115) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3274) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$4.run(PartRenderingEngine.java:713)
2010-07-27 06:21:00
1,280,230,000
resolved fixed
f07af5e
1,289,190,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/src/org/eclipse/e4/ui/workbench/renderers/swt/cocoa/CocoaUIHandler.java
Eclipse_Platform_UI
916
329,586
Bug 329586 [Compatibility] ModeledPageLayout getEditorReuseThreshold() method should mirror 3.x implementation
getEditorReuseThreshold() should return -1 instead of 0.
2010-11-05 16:11:24
1,288,990,000
resolved fixed
e4321ab
1,288,990,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java
Eclipse_Platform_UI
917
329,580
Bug 329580 [Compatibility] IPageLayout's setEditorAreaVisible(boolean) method is unimplemented
SSIA
2010-11-05 14:43:49
1,288,980,000
resolved fixed
11c918d
1,288,990,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java
Eclipse_Platform_UI
918
329,581
Bug 329581 [Compatibility] View perspectiveExtensions to placeholder folders do not show up
The view is correctly added to the folder but it is not visible on startup. Perspective factory code: public void createInitialLayout(IPageLayout factory) { factory.createPlaceholderFolder( "leftFolder", IPageLayout.LEFT, 0.25f, //$NON-NLS-1$ factory.getEditorArea()); } View extension: <view id="org.eclipse.ui.views.ResourceNavigator" relationship="stack" relative="leftFolder" visible="true"> </view>
2010-11-05 14:43:55
1,288,980,000
resolved fixed
5a2c98b
1,288,980,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java
Eclipse_Platform_UI
919
329,543
Bug 329543 Editor state is always restored irregardless of the IPreferenceConstants.USE_IPERSISTABLE_EDITORS preference
1. Open a text editor. 2. Select some text. 3. Window > Preferences > General > Editors 4. Uncheck the 'Restore editor state on startup' preference. 5. Click 'OK'. 6. Shutdown. 7. Restart. 8. The editor's selection is restored.
2010-11-05 09:15:21
1,288,960,000
verified fixed
7f2f49e
1,288,960,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java
Eclipse_Platform_UI
920
329,482
Bug 329482 Uninstantiated part may be rendered when closing another part in the same stack
1. Activate the 'Javadoc' view. 2. Activate the 'Package Explorer' view. 3. Shutdown. 4. Restart. 5. Ctrl+3 > Properties 6. Hide the 'Properties' view. 7. Now the 'Problems' view is the selected element. It should be the 'Javadoc' view.
2010-11-04 15:53:09
1,288,900,000
verified fixed
e72ad47
1,288,900,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartActivationHistory.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java
Eclipse_Platform_UI
921
306,576
Bug 306576 Externalization/translation of strings in xmi files
Currently our e4xmi files have various hard-coded English strings that are presented to the user (in particular the "label" attributes). Is there some mechanism already defined for externalization/translation of NLS strings from these xmi files? If not, we need to define one. Creating a new xmi file from scratch for each language won't scale, and won't allow switching languages after the product is installed.
2010-03-19 15:34:00
1,269,030,000
resolved fixed
bc995e3
1,288,900,000
bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/descriptor/basic/impl/BasicPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/MUILabel.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/advanced/MPerspectiveStack.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/advanced/impl/AdvancedPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/advanced/impl/AreaImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/advanced/impl/PerspectiveImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/advanced/impl/PerspectiveStackImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/advanced/util/AdvancedSwitch.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/BasicPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/PartImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/WindowImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/impl/UILabelImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/impl/UiPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/impl/ItemImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/impl/MenuElementImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/menu/impl/MenuPackageImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
Eclipse_Platform_UI
922
329,454
Bug 329454 [Compatibility] Bundles may be activated while trying to find matching editors
Restoring editor inputs can cause bundle activation due to the element factory so said input should not be restored for comparison unless it's been identified as a factory that's identical to the input it's being matched against.
2010-11-04 12:20:48
1,288,890,000
resolved fixed
0191f46
1,288,890,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
923
329,451
Bug 329451 [Compatibility] Editor open request opens new editor instead of finding existing unrestored editor
1. Open two files. 2. Shutdown. 3. Restart. 4. Open the file that's behind the active editor. 5. A new editor tab is opened when the existing one should be opened/reused.
2010-11-04 12:02:49
1,288,890,000
verified fixed
2ff697c
1,288,890,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
924
329,445
Bug 329445 [Compatibility] Automatically close editors when they cannot be persisted
null
2010-11-04 11:26:29
1,288,880,000
verified fixed
62cc941
1,288,880,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
925
323,243
Bug 323243 [IDE] Unhandled event loop exception when cancelling open project
Build Identifier: I20100608-0911 Open a closed project in package explorer. Dialog with message "should referenced projects aloso be opened where applicable" appears. Click "Cancel" Exception is logged: org.eclipse.swt.SWTException: Failed to execute runnable (org.eclipse.core.runtime.OperationCanceledException) at org.eclipse.swt.SWT.error(SWT.java:4083) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:137) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4041) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3660) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2629) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2593) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2427) at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:670) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:663) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1407) at org.eclipse.equinox.launcher.Main.main(Main.java:1383) Caused by: org.eclipse.core.runtime.OperationCanceledException at org.eclipse.ui.actions.OpenResourceAction.promptToOpenWithReferences(OpenResourceAction.java:178) at org.eclipse.ui.actions.OpenResourceAction.access$1(OpenResourceAction.java:163) at org.eclipse.ui.actions.OpenResourceAction$2.run(OpenResourceAction.java:248) at org.eclipse.ui.internal.UILockListener.doPendingWork(UILockListener.java:164) at org.eclipse.ui.internal.UISynchronizer$3.run(UISynchronizer.java:158) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) ... 23 more Reproducible: Always
2010-08-20 08:49:08
1,282,310,000
verified fixed
3b5acb3
1,288,810,000
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/OpenResourceAction.java
Eclipse_Platform_UI
926
329,391
Bug 329391 [Compatibility] Part sites do not need to be injected
They used to have fields/methods with @Inject, they do not appear to anymore. We should remove the injection call.
2010-11-03 15:06:18
1,288,810,000
resolved fixed
5ac528b
1,288,810,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewReference.java
Eclipse_Platform_UI
927
329,358
Bug 329358 [Compatibility] Workbench will not come up when trying to restore editors that were not persisted correctly
null
2010-11-03 10:57:12
1,288,800,000
verified fixed
d8873fe
1,288,810,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java
Eclipse_Platform_UI
928
329,310
Bug 329310 Part service does not autogenerate stacks if the last container is not one
null
2010-11-02 19:02:03
1,288,740,000
resolved fixed
a073664
1,288,790,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java
Eclipse_Platform_UI
929
328,172
Bug 328172 [Compatibility] IHandlerService's createContextSnapshot(boolean) does not actually return a snapshot
Since we just arbitrarily spawn a new ExpressionContext under the current context, the values are actually dynamic.
2010-10-19 15:03:02
1,287,520,000
resolved fixed
fe47096
1,288,780,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerService.java
Eclipse_Platform_UI