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 |
---|---|---|---|---|---|---|---|---|---|---|
230 | 381,886 |
Bug 381886 Debugger keybindings frequently require pressing twice
|
I'm using Eclipse 4.2RC3. When in the debug perspective, the F5 - F8 keybindings often don't work. I often have to press the key twice to get it to work, and sometimes I have to click on the stack frame to get the key to work. Debugging on OS X is very painful.
|
2012-06-06 12:32:38
| 1,339,000,000 |
resolved fixed
|
9aefcba
| 1,352,830,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ActionDelegateHandlerProxy.java
|
Eclipse_Platform_UI
|
231 | 393,999 |
Bug 393999 [TabbedProperties] The support for changing color of a tab-label (see Bug 385795) is not yet complete
| null |
2012-11-09 12:45:37
| 1,352,480,000 |
resolved fixed
|
a3f0bd2
| 1,352,740,000 |
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java
|
Eclipse_Platform_UI
|
232 | 393,966 |
Bug 393966 Regression in 4.2.2 - selecting in an Ecore editor does not update the Properties View
| null |
2012-11-09 07:15:04
| 1,352,460,000 |
verified fixed
|
ed9c4f6
| 1,352,490,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java
|
Eclipse_Platform_UI
|
233 | 376,254 |
Bug 376254 Create new model Add-on HandlerProcessingAddon to replace calling E4Workbench.processHierarchy
|
Beside adding content to the Workbench Model via Fragments or Modell Processors i am potentially also able to do it completely programmatically by using Factories e.g in a postConstruct-Method of part. Sample: @PostConstruct private void postConstruct(MApplication application, MTrimmedWindow trimmedWindow) { // Command erzeugen MCommand exitCommand = MCommandsFactory.INSTANCE.createCommand(); exitCommand.setElementId("net.teufel.e4.helloworld.exitCommand"); exitCommand.setCommandName("ExitCommand"); application.getCommands().add(exitCommand); // Handler erzeugen MHandler exitHandler = MCommandsFactory.INSTANCE.createHandler(); exitHandler.setElementId("net.teufel.e4.helloworld.handlers.exitHandler"); exitHandler.setContributionURI("bundleclass://net.teufel.e4.helloworld.ui/net.teufel.e4.helloworld.handlers.ExitHandler"); exitHandler.setCommand(exitCommand); application.getHandlers().add(exitHandler); // Toolbar erzeugen MToolBar myToolbar = MMenuFactory.INSTANCE.createToolBar(); MHandledToolItem exitToolItem=MMenuFactory.INSTANCE.createHandledToolItem(); exitToolItem.setElementId("net.teufel.e4.helloworld.toolitems.exitToolItem"); exitToolItem.setLabel("Beenden"); exitToolItem.setIconURI("platform:/plugin/net.teufel.e4.helloworld.ui/icons/door_out.png"); exitToolItem.setCommand(exitCommand); exitToolItem.setEnabled(true); myToolbar.getChildren().add(exitToolItem); // Trimbar erzeugen und zum Fenster hinzufuegen MTrimBar myTrimBar = MBasicFactory.INSTANCE.createTrimBar(); myTrimBar.getChildren().add(myToolbar); trimmedWindow.getTrimBars().add(myTrimBar); //E4Workbench.processHierarchy(application); } My problem is the following: When creating this toolbar manually I need to call E4Workbench.processHierarchy (the last commented line in the code) manually in order to get the toolbar enabled. Otherwise it stays disabled. Is it really necessary to call processHierarchy each time when i do manual changes in the model?
|
2012-04-06 09:37:07
| 1,333,720,000 |
resolved fixed
|
b00b923
| 1,352,390,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/E4Workbench.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/addons/HandlerProcessingAddon.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/Bug320857Test.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/ESelectionServiceTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessApplicationTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MMenuItemTest.java
|
Eclipse_Platform_UI
|
234 | 387,367 |
Bug 387367 JFace Snippet Snippet010OwnerDraw rework
|
Snippet010OwnerDraw has some issues: 1.) Usage of depreciated API OwnerDrawLabelProvider.setUpOwnerDraw(viewer); 2.) Unused method setFocus 3.) setInput for the ContentProvider is ignored 4.) Own ContentProvider can be replaced by ArrayContentProvider
|
2012-08-16 06:04:38
| 1,345,110,000 |
resolved fixed
|
d546e79
| 1,352,320,000 |
examples/org.eclipse.jface.snippets/Eclipse JFace Snippets/org/eclipse/jface/snippets/viewers/Snippet010OwnerDraw.java
|
Eclipse_Platform_UI
|
235 | 376,821 |
Bug 376821 Request specific framework event that ends the startup process
|
Build Identifier: I20120315-1300 A specific framework event should be fired after the startup process has been completed (i.e. to hide a costum splash screen). This could be an UIEvent or part of the lifecycle handler. Reproducible: Always
|
2012-04-15 08:44:35
| 1,334,490,000 |
resolved fixed
|
958dd70
| 1,352,310,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java
|
Eclipse_Platform_UI
|
236 | 378,535 |
Bug 378535 "Close All" and "Close Others" menu options available when right clicking on tab in PartStack when no part is closeable
|
Build Identifier: I20110620-1631 If I create a PartStack that contains multiple parts but none of the parts are closeable, when I right click on any of the tabs I get menu options for "Close All" and "Close Others". Selection of either of the menu options doesn't cause any tabs to be closed since none of the tabs can be closed. I don't think the menu options should be available if none of the tabs can be closed. I am attaching a patch that will prevent Reproducible: Always Steps to Reproduce: 1. Create PartStack that contains multiple parts 2. Make sure none of the parts in the stack are marked as closeable. 3. Right click on any of the tabs. A menu will be displayed even though none of the tabs can be closed.
|
2012-05-04 14:03:08
| 1,336,150,000 |
resolved fixed
|
3ca8456
| 1,352,310,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java
|
Eclipse_Platform_UI
|
237 | 344,220 |
Bug 344220 [CommonNavigator] NavigatorContentServiceDescriptionProvider doesn't handle single selection size case
|
Currently when a single item is selected the status line message reads "1 items selected" for navigators. NavigatorContentServiceDescriptionProvider.getDefaultStatusBarMessage does not handle the single case differently from the multi case.
|
2011-04-28 19:56:23
| 1,304,030,000 |
resolved fixed
|
a311aa6
| 1,352,310,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorMessages.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceDescriptionProvider.java
|
Eclipse_Platform_UI
|
238 | 391,868 |
Bug 391868 very slow switching editors; especially XML. (BIG CLUE FOUND HERE)
|
Just installed Juno for J2EE on my new machine, quad-core Windows 7 with 8 GB memory. Switching between editors, especially XML editors is very slow -- consistently 3 seconds... When switching between Java and XML editors, for most of this 3 seconds I can see two XML icons on the toolbar flickering on & off! 'Open Resource' Ctrl-Shift-R or 'Open Type' Crl-Shift-T also take 1.5-2 seconds to come up, and 1 second to go away. I've added -debug to eclipse.ini & tried stacktracing it a couple of times. While I'm waiting, there's a brief burst of CPU (but only on one core). I think it might be parse tree/ UI update bound. Here's an example switching between XML editors: "main" prio=6 tid=0x0000000001ffc800 nid=0x1650 runnable [0x00000000023db000] java.lang.Thread.State: RUNNABLE at org.eclipse.swt.internal.win32.OS.GetMenuItemInfoW(Native Method) at org.eclipse.swt.internal.win32.OS.GetMenuItemInfo(OS.java:2729) at org.eclipse.swt.widgets.MenuItem.setEnabled(MenuItem.java:716) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.upd ateMenuItem(HandledContributionItem.java:518) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.upd ate(HandledContributionItem.java:473) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:885) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:885) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuMana ger(Workbench.java:2910) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2896) at org.eclipse.ui.internal.Workbench$1.bindingManagerChanged(Workbench.j ava:2891) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(B indingManager.java:900) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingMa nager.java:2176) at org.eclipse.jface.bindings.BindingManager.recomputeBindings(BindingMa nager.java:1742) at org.eclipse.jface.bindings.BindingManager.contextManagerChanged(Bindi ngManager.java:689) at org.eclipse.core.commands.contexts.ContextManager.fireContextManagerC hanged(ContextManager.java:165) at org.eclipse.core.commands.contexts.ContextManager.setActiveContextIds (ContextManager.java:295) at org.eclipse.e4.ui.internal.services.ContextContextService.getActiveCo ntextIds(ContextContextService.java:83) at org.eclipse.ui.internal.contexts.ContextService.getActiveContextIds(C ontextService.java:256) at org.eclipse.ui.internal.contexts.ActiveContextSourceProvider.getCurre ntState(ActiveContextSourceProvider.java:68) at org.eclipse.ui.internal.contexts.ActiveContextSourceProvider.contextM anagerChanged(ActiveContextSourceProvider.java:50) at org.eclipse.core.commands.contexts.ContextManager.fireContextManagerC hanged(ContextManager.java:165) at org.eclipse.core.commands.contexts.ContextManager.setActiveContextIds (ContextManager.java:295) at org.eclipse.e4.ui.bindings.internal.BindingServiceImpl.setContextIds( BindingServiceImpl.java:237) at sun.reflect.GeneratedMethodAccessor19.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(MethodRequest or.java:56) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextIn jectionListener.update(ContextObjectSupplier.java:88) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:107) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.e4.ui.internal.services.ContextContextService.activateCon text(ContextContextService.java:53) at org.eclipse.ui.internal.contexts.ContextService$UpdateExpression$1.ru n(ContextService.java:128) at org.eclipse.e4.core.contexts.RunAndTrack.runExternalCode(RunAndTrack. java:53) - locked <0x00000000a473eab0> (a org.eclipse.ui.internal.contexts.Contex tService$UpdateExpression) at org.eclipse.ui.internal.contexts.ContextService$UpdateExpression.chan ged(ContextService.java:126) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:110) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.e4.core.internal.contexts.EclipseContext$1.changed(Eclips eContext.java:751) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:110) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.ui.internal.WorkbenchPage.updateActivePartSources(Workben chPage.java:275) at org.eclipse.ui.internal.WorkbenchPage.updateActivations(WorkbenchPage .java:247) at org.eclipse.ui.internal.WorkbenchPage.access$15(WorkbenchPage.java:24 0) at org.eclipse.ui.internal.WorkbenchPage$E4PartListener.partActivated(Wo rkbenchPage.java:169) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$2.run(PartServic eImpl.java:191) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.firePartActivate d(PartServiceImpl.java:189) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.setPart(PartServ iceImpl.java:164) at sun.reflect.GeneratedMethodAccessor25.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(MethodRequest or.java:56) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextIn jectionListener.update(ContextObjectSupplier.java:88) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:107) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.e4.core.internal.contexts.EclipseContext.activate(Eclipse Context.java:630) at org.eclipse.e4.core.internal.contexts.EclipseContext.activateBranch(E clipseContext.java:635) at org.eclipse.e4.ui.internal.workbench.PartActivationHistory.activate(P artActivationHistory.java:52) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartSer viceImpl.java:561) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartSer viceImpl.java:532) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartSer viceImpl.java:521) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.hidePart(PartSer viceImpl.java:1112) at org.eclipse.ui.internal.WorkbenchPage.hidePart(WorkbenchPage.java:148 7) at org.eclipse.ui.internal.WorkbenchPage.hidePart(WorkbenchPage.java:144 0) at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java :1410) at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java: 1532) at org.eclipse.ui.internal.CloseEditorHandler.execute(CloseEditorHandler .java:47) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.ja va:290) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProx y.java:76) at sun.reflect.GeneratedMethodAccessor17.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(MethodRequest or.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(Injecto rImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java :210) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextIn jectionFactory.java:131) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandl er(HandlerServiceImpl.java:171) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(K eyBindingDispatcher.java:276) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBinding Dispatcher.java:494) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent( KeyBindingDispatcher.java:545) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenc eBindings(KeyBindingDispatcher.java:366) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBind ingDispatcher.java:313) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.ha ndleEvent(KeyBindingDispatcher.java:82) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1262) 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:1104) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1100) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1521) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:4640) at org.eclipse.swt.widgets.Canvas.WM_CHAR(Canvas.java:345) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4528) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4976) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2546) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3756) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(Pa rtRenderingEngine.java:1029) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.ja va:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(Part RenderingEngine.java:923) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Wor kbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.ja va:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.jav a:543) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEAppli cation.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandl e.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runAppli cation(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ec lipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) Here's an example switching between Java and XML editors: "main" prio=6 tid=0x0000000001ffc800 nid=0x1650 runnable [0x00000000023db000] java.lang.Thread.State: RUNNABLE at org.eclipse.swt.internal.win32.OS.GetMenuItemInfoW(Native Method) at org.eclipse.swt.internal.win32.OS.GetMenuItemInfo(OS.java:2729) at org.eclipse.swt.widgets.MenuItem.setEnabled(MenuItem.java:716) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.upd ateMenuItem(HandledContributionItem.java:518) at org.eclipse.e4.ui.workbench.renderers.swt.HandledContributionItem.upd ate(HandledContributionItem.java:473) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:885) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:885) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuMana ger(Workbench.java:2910) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2896) at org.eclipse.ui.internal.Workbench$1.bindingManagerChanged(Workbench.j ava:2891) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(B indingManager.java:900) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingMa nager.java:2176) at org.eclipse.jface.bindings.BindingManager.recomputeBindings(BindingMa nager.java:1742) at org.eclipse.jface.bindings.BindingManager.contextManagerChanged(Bindi ngManager.java:689) at org.eclipse.core.commands.contexts.ContextManager.fireContextManagerC hanged(ContextManager.java:165) at org.eclipse.core.commands.contexts.ContextManager.setActiveContextIds (ContextManager.java:295) at org.eclipse.e4.ui.internal.services.ContextContextService.getActiveCo ntextIds(ContextContextService.java:83) at org.eclipse.ui.internal.contexts.ContextService.getActiveContextIds(C ontextService.java:256) at org.eclipse.ui.internal.contexts.ActiveContextSourceProvider.getCurre ntState(ActiveContextSourceProvider.java:68) at org.eclipse.ui.internal.contexts.ActiveContextSourceProvider.contextM anagerChanged(ActiveContextSourceProvider.java:50) at org.eclipse.core.commands.contexts.ContextManager.fireContextManagerC hanged(ContextManager.java:165) at org.eclipse.core.commands.contexts.ContextManager.setActiveContextIds (ContextManager.java:295) at org.eclipse.e4.ui.bindings.internal.BindingServiceImpl.setContextIds( BindingServiceImpl.java:237) at sun.reflect.GeneratedMethodAccessor19.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(MethodRequest or.java:56) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextIn jectionListener.update(ContextObjectSupplier.java:88) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:107) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.e4.ui.internal.services.ContextContextService.activateCon text(ContextContextService.java:53) at org.eclipse.ui.internal.contexts.ContextService$UpdateExpression$1.ru n(ContextService.java:128) at org.eclipse.e4.core.contexts.RunAndTrack.runExternalCode(RunAndTrack. java:53) - locked <0x00000000fbb09bc0> (a org.eclipse.ui.internal.contexts.Contex tService$UpdateExpression) at org.eclipse.ui.internal.contexts.ContextService$UpdateExpression.chan ged(ContextService.java:126) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:110) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.e4.core.internal.contexts.EclipseContext$1.changed(Eclips eContext.java:751) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:110) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.ui.internal.WorkbenchPage.updateActivePartSources(Workben chPage.java:275) at org.eclipse.ui.internal.WorkbenchPage.updateActivations(WorkbenchPage .java:247) at org.eclipse.ui.internal.WorkbenchPage.access$15(WorkbenchPage.java:24 0) at org.eclipse.ui.internal.WorkbenchPage$E4PartListener.partActivated(Wo rkbenchPage.java:169) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl$2.run(PartServic eImpl.java:191) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.firePartActivate d(PartServiceImpl.java:189) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.setPart(PartServ iceImpl.java:164) at sun.reflect.GeneratedMethodAccessor25.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(MethodRequest or.java:56) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextIn jectionListener.update(ContextObjectSupplier.java:88) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update( TrackableComputationExt.java:107) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled (EclipseContext.java:318) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseConte xt.java:332) at org.eclipse.e4.core.internal.contexts.EclipseContext.activate(Eclipse Context.java:630) at org.eclipse.e4.core.internal.contexts.EclipseContext.activateBranch(E clipseContext.java:635) at org.eclipse.e4.ui.internal.workbench.PartActivationHistory.activate(P artActivationHistory.java:52) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartSer viceImpl.java:561) at org.eclipse.e4.ui.internal.workbench.PartServiceImpl.activate(PartSer viceImpl.java:532) at org.eclipse.e4.ui.internal.workbench.swt.AbstractPartRenderer.activat e(AbstractPartRenderer.java:105) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer$1.h andleEvent(ContributedPartRenderer.java:61) 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.Widget.sendEvent(Widget.java:1077) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1058) at org.eclipse.swt.widgets.Shell.setActiveControl(Shell.java:1447) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:2836) at org.eclipse.swt.widgets.Widget.wmSetFocus(Widget.java:2417) at org.eclipse.swt.widgets.Control.WM_SETFOCUS(Control.java:5152) at org.eclipse.swt.widgets.Canvas.WM_SETFOCUS(Canvas.java:448) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4598) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4976) at org.eclipse.swt.internal.win32.OS.SetFocus(Native Method) at org.eclipse.swt.widgets.Control.forceFocus(Control.java:1098) at org.eclipse.swt.widgets.Control.setFocus(Control.java:3303) at org.eclipse.swt.widgets.Composite.setFocus(Composite.java:1040) at org.eclipse.ui.texteditor.AbstractTextEditor.setFocus(AbstractTextEdi tor.java:6210) at org.eclipse.ui.texteditor.StatusTextEditor.setFocus(StatusTextEditor. java:122) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.setFocus(JavaEditor .java:2389) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.delegateSe tFocus(CompatibilityPart.java:178) at sun.reflect.GeneratedMethodAccessor30.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(MethodRequest or.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(Injecto rImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(Injecto rImpl.java:235) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java :206) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextIn jectionFactory.java:106) at org.eclipse.e4.ui.workbench.renderers.swt.ContributedPartRenderer$2.s etFocus(ContributedPartRenderer.java:101) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer$9.mouseUp(Sta ckRenderer.java:941) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java: 220) 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:4169) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3758) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(Pa rtRenderingEngine.java:1029) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.ja va:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(Part RenderingEngine.java:923) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Wor kbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.ja va:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.jav a:543) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEAppli cation.java:124) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandl e.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runAppli cation(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(Ec lipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) "VM Thread" prio=10 tid=0x000000000a7e2800 nid=0x1ab4 runnable "GC task thread#0 (ParallelGC)" prio=6 tid=0x0000000002045000 nid=0x1698 runnabl e "GC task thread#1 (ParallelGC)" prio=6 tid=0x0000000002046800 nid=0x8b4 runnable "GC task thread#2 (ParallelGC)" prio=6 tid=0x0000000002048000 nid=0x15d4 runnabl e "GC task thread#3 (ParallelGC)" prio=6 tid=0x000000000204a000 nid=0x19dc runnabl e "VM Periodic Task Thread" prio=10 tid=0x000000000a885800 nid=0x1114 waiting on c ondition JNI global references: 541 Heap PSYoungGen total 480256K, used 140675K [0x00000000e0000000, 0x00000000ff4e 0000, 0x0000000100000000) eden space 453120K, 28% used [0x00000000e0000000,0x00000000e7c0fe80,0x00000000 fba80000) from space 27136K, 50% used [0x00000000fba80000,0x00000000fc7d1098,0x00000000f d500000) to space 26560K, 0% used [0x00000000fdaf0000,0x00000000fdaf0000,0x00000000ff 4e0000) ParOldGen total 217280K, used 185659K [0x00000000a0000000, 0x00000000ad43 0000, 0x00000000e0000000) object space 217280K, 85% used [0x00000000a0000000,0x00000000ab54ed80,0x000000 00ad430000) PSPermGen total 127808K, used 112460K [0x0000000090000000, 0x0000000097cd 0000, 0x00000000a0000000) object space 127808K, 87% used [0x0000000090000000,0x0000000096dd3000,0x000000 0097cd0000)
|
2012-10-13 21:38:20
| 1,350,180,000 |
verified fixed
|
478ae0a
| 1,352,310,000 |
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/ContextServiceAddon.java
|
Eclipse_Platform_UI
|
239 | 377,884 |
Bug 377884 @CanExecute is not executed using DirectItems
|
When you have a DirectMenuItem, @CanExecute is not executed before the item is displayecd. Only after clicking.
|
2012-04-27 05:36:12
| 1,335,520,000 |
verified fixed
|
5d583c4
| 1,352,240,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/DirectMenuItemRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerRendererFilter.java
|
Eclipse_Platform_UI
|
240 | 381,585 |
Bug 381585 Part switcher in PartStack shows only name of i18n bundle
|
Build Identifier: I20120524-2100 I am developing an application with a part stack which holds multiple parts. Each part's label is externalized, e.g.: %partDetails.label where the file bundle.properties holds: partDetails.label = Detailed Information Now everything is displayed fine when the PartStack shows all Parts in tabs. When I define via CSS that only one Part is shown, a problem occurs: single: true; The problem is, that now the dropdown-list for the different parts does not show the names of the parts available (e.g. "Detailed Information"), but the name of the properties (e.g. "%partDetails.label"). Reproducible: Always
|
2012-06-04 11:02:57
| 1,338,820,000 |
verified fixed
|
8ebbfa4
| 1,352,230,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/internal/workbench/renderers/swt/BasicPartList.java
|
Eclipse_Platform_UI
|
241 | 357,786 |
Bug 357786 [KeyBindings] Delete Key is not working in form editor
|
Build Identifier: 3.6.2.M20110210-1200 Hello, the delete key (SWT.DEL) is not working properly for CCombo. Following points have been observed: - The binding to the delete key seems to eat the keystroke (in WorkbenchKeyboard) - Although the CCombo internally uses a Text widget, the exception in WorkbenchKeyboard.filterKeySequenceBindings() for the Text widget is not working since the CCombo wraps the event into a new event which has the CCombo set as the events widget. Seems like either CCombo has to handle this special case differently or WorkbenchKeyboard includes CCombo (like Text, Combo and Browser) as an exception to the out of order processing. Looks like this is no issue if there is nothing bound to the delete command, but I would expect this to work even with something bound to the command (like the Text widget). Eclipse: 3.6.2.M20110210-1200 SWT: 3.6.2.v3659c Reproducible: Always Steps to Reproduce: 1. Create an FormEditor 2. Add an editable CCombo 3. Add a handler to the command org.eclipse.ui.edit.delete 4. Try using delete in the CCombo
|
2011-09-15 08:31:30
| 1,316,090,000 |
verified fixed
|
7f20fdb
| 1,352,230,000 |
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/keys/KeyBindingDispatcher.java
|
Eclipse_Platform_UI
|
242 | 383,497 |
Bug 383497 "Build Project" key binding no longer works in 4.2 / juno
|
Build Identifier: 20120606-2254 I have a custom key binding for "Build Project" set in eclipse; it is set for "In Windows". In 4.2, it only seems to work if the current window is the project browser, AND I have a file in the project selected. In 3.7, it would work if I was in a text editor for a file in the project, and pressed my hotkey - now, this no longer works. Reproducible: Always Steps to Reproduce: 1. Create a new workspace 2. Create a C++ project, Makefile project, Hello World (or likey other project type, it failed when I tried a java perspective as well) 3. From Windows >> Preferences >> General >> Keys, set a binding for "Build Project" to whatever you want (I usually have it set to "Ctrl B", and unbind build all, but all other keybindings I tried also failed). 4. open up the .cpp in the text editor 5. With the text editor still in focus, press your "Build Project" hotkey 6. ...nothing happens
|
2012-06-25 19:01:14
| 1,340,670,000 |
verified fixed
|
4cac489
| 1,352,220,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/handlers/BuildProjectHandler.java
|
Eclipse_Platform_UI
|
243 | 393,398 |
Bug 393398 [resource filter] Switching between resource filter attributes does not update the label
|
Steps to reproduce: 1. Create a new project "my_project". 2. Open the resource filter property page for a project (under Resource / Resource Filters). 3. Click the "Add..." button 4. In the "Add Resource Filter for project my_project" dialog, change the "File and Folder Attributes" to "Last Modified" / "is within". Notice that the description below it reads "(*s = seconds, *m = minutes, *h = hours, *d = days)". 5. Change the "File and Folder Attributes" to "File Length" / "equals", and notice that the description below hasn't changed. It should have changed to "(*= bytes, *k = kilobytes, *m = megabytes, *g = gigabytes)".
|
2012-11-02 06:20:11
| 1,351,850,000 |
verified fixed
|
c85138c
| 1,352,210,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceFilterGroup.java
|
Eclipse_Platform_UI
|
244 | 389,018 |
Bug 389018 [QuickAccess] Quick Access steals focus
|
4.2 and M20120905-2300. After executing an editor command via Quick Access, the focus remains in the Quick Access search field and I can't continue to type in the editor. This makes this feature unusable for me. This works fine in 3.8.
|
2012-09-07 03:41:36
| 1,347,000,000 |
verified fixed
|
6838e72
| 1,352,120,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/SearchField.java
|
Eclipse_Platform_UI
|
245 | 393,327 |
Bug 393327 [ActivityMgmt] ConcurrentModificationException when activities added dynamically
| null |
2012-11-01 09:17:58
| 1,351,780,000 |
resolved fixed
|
a68ed4b
| 1,351,790,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/MutableActivityManager.java
|
Eclipse_Platform_UI
|
246 | 388,974 |
Bug 388974 Move the org.eclipse.ui.tutorials.rcp.part* projects to examples
|
I cloned repo git://git.eclipse.org/gitroot/platform/eclipse.platform.ui.git and then imported all projects from the bundles folder. In the runtime workbench, the first time I tried to cut some text, the workbench just quit. After wasting some time to find the bug, I discovered that the org.eclipse.ui.tutorials.rcp.part* projects are in the wrong folder. They must be moved away (e.g. into the examples folder), since normal work is not possible when these bundles are in the workspace.
|
2012-09-06 12:53:32
| 1,346,950,000 |
resolved fixed
|
eeab649
| 1,351,520,000 |
bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/R21BasicStackPresentation.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/R21EditorStackPresentation.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/R21PresentationFactory.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/R21ViewStackPresentation.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/R21Colors.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/R21PresentationMessages.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/R21PresentationPlugin.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/CTabFolder.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/CTabFolderEvent.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/CTabFolderListener.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/CTabItem.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/R21PaneFolder.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/R21PaneFolderButtonListener.java bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/r21/widgets/ViewForm.java bundles/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/Application.java bundles/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/ApplicationActionBarAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/ApplicationWorkbenchAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/ApplicationWorkbenchWindowAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/Part1Plugin.java bundles/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/Perspective.java bundles/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/Application.java bundles/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/ApplicationActionBarAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/ApplicationWorkbenchAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/ApplicationWorkbenchWindowAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/Part2Plugin.java bundles/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/Perspective.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/Application.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ApplicationActionBarAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ApplicationWorkbenchAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ApplicationWorkbenchWindowAdvisor.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ICommandIds.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/MessagePopupAction.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/NavigationView.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/OpenViewAction.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/Part3Plugin.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/Perspective.java bundles/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/View.java examples/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/Application.java examples/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/ApplicationActionBarAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/ApplicationWorkbenchAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/ApplicationWorkbenchWindowAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/Part1Plugin.java examples/org.eclipse.ui.tutorials.rcp.part1/src/org/eclipse/ui/tutorials/rcp/part1/Perspective.java examples/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/Application.java examples/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/ApplicationActionBarAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/ApplicationWorkbenchAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/ApplicationWorkbenchWindowAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/Part2Plugin.java examples/org.eclipse.ui.tutorials.rcp.part2/src/org/eclipse/ui/tutorials/rcp/part2/Perspective.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/Application.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ApplicationActionBarAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ApplicationWorkbenchAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ApplicationWorkbenchWindowAdvisor.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/ICommandIds.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/MessagePopupAction.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/NavigationView.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/OpenViewAction.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/Part3Plugin.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/Perspective.java examples/org.eclipse.ui.tutorials.rcp.part3/src/org/eclipse/ui/tutorials/rcp/part3/View.java
|
Eclipse_Platform_UI
|
247 | 392,066 |
Bug 392066 add toString method to XMLMemento
| null |
2012-10-16 09:50:28
| 1,350,400,000 |
verified fixed
|
f67a21e
| 1,351,170,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/XMLMemento.java
|
Eclipse_Platform_UI
|
248 | 391,626 |
Bug 391626 [Compatibility] e4 does not implement the post-selection concept
|
Steps to Reproduce: 1. Create a simple html file 1: <html> 2: <head> 3: </head> 4: <body> 5: <p>Text</p> ... repeat above line 100 times 105: </body> 106: </html> 2. Go to line 105 3. Press and hold Shift+UpArrow The outline scrolls hard and hard(moving up and down). The cursor runs without block-seletion(region highlighted), and then selecting lines takes a few seconds per line. Turning off Link-with-Editor is the only workaround for now. This problem occurs on Eclipse SDK 4.2.1.M20120914-1800 Eclipse Web Developer Tools 3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV Not occurs on Eclipse SDK 3.8.1.M20120914-1540 Eclipse Web Developer Tools 3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV Each WTP3.4.1 is installed from juno repository and they are same on 4.2.1 and 3.8.1 of course.(I confirmed it with fc/b command also)
|
2012-10-11 01:26:41
| 1,349,930,000 |
verified fixed
|
b15862f
| 1,351,170,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/SelectionAggregator.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/SelectionService.java
|
Eclipse_Platform_UI
|
249 | 357,939 |
Bug 357939 Fade animations for Maximize
|
This bugzilla is to capture feedback on making the Eclipse 4 user experience more up to date. We've just introduced a fade animation for min/max in M2 and expect to be adding some more effects of this type as we proceed through 4.2. Any input is welcome as well as any suggestions you may have about other ways we can make eclipse look more like a 2011 application...
|
2011-09-16 09:27:10
| 1,316,180,000 |
verified fixed
|
62ce527
| 1,351,090,000 |
bundles/org.eclipse.ui/src/org/eclipse/ui/internal/UIPreferenceInitializer.java
|
Eclipse_Platform_UI
|
250 | 389,863 |
Bug 389863 EventHandlers are not called on part after closing other part
|
I have a simple example with 2 parts in a stack with both parts having an event listener method. When I start up and then close the first part, the second part does not receive events anymore.
|
2012-09-19 03:26:04
| 1,348,040,000 |
verified fixed
|
80e45e4
| 1,351,000,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/InjectionEventTest.java
|
Eclipse_Platform_UI
|
251 | 388,966 |
Bug 388966 [Min/Max] [Trim] CCE on Maximize/Minimize
|
Version: 4.2.1 Build id: M20120905-2300 Fresh workspace. Imported my preferences which has "/instance/org.eclipse.ui/ENABLE_ANIMATIONS=false". Tried to maximize an editor with Ctrl-M and by clicking on the maximize button, but it failed with a CCE (below). Double-clicking on the editor tab does successfully maximize the editor, and after that Ctrl-M / Maximize-button works fine. !ENTRY org.eclipse.equinox.event 4 0 2012-09-06 11:42:46.911 !MESSAGE Exception while dispatching event org.osgi.service.event.Event [topic=org/eclipse/e4/ui/model/application/ApplicationElement/tags/ADD] to handler org.eclipse.e4.ui.services.internal.events.UIEventHandler@4b8a67f0 !STACK 0 java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Boolean at org.eclipse.e4.ui.internal.workbench.swt.AnimationEngine.<init>(AnimationEngine.java:76) at org.eclipse.e4.ui.internal.workbench.swt.AnimationEngine.<init>(AnimationEngine.java:51) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.maximize(MinMaxAddon.java:634) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:370) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4291) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:187) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:58) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.ui.internal.WorkbenchPage.setPartState(WorkbenchPage.java:3878) at org.eclipse.ui.internal.WorkbenchPage.toggleZoom(WorkbenchPage.java:3915) at org.eclipse.ui.internal.handlers.MaximizePartHandler.execute(MaximizePartHandler.java:41) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:290) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:76) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:276) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:494) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:545) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:366) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:313) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:82) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1483) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1275) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1300) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1285) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1312) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:748) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:3050) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:741) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1758) at org.eclipse.swt.widgets.Control.windowProc(Control.java:5116) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4369) 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:8307) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1192) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:2332) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3177) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1029) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:923) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:588) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:543) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:616) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) ^^
|
2012-09-06 11:57:38
| 1,346,950,000 |
verified fixed
|
9954101
| 1,350,950,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
|
Eclipse_Platform_UI
|
252 | 392,602 |
Bug 392602 [MinMax] Double-click to maximize is too loose
|
Right not we maximize whenever we detect a double click...this allows for example double-clicking on the edge of a stack to cause it to maximize/restore...obviously incorrect.
|
2012-10-22 15:54:10
| 1,350,940,000 |
verified fixed
|
984f78c
| 1,350,940,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java
|
Eclipse_Platform_UI
|
253 | 384,814 |
Bug 384814 "Fast view" doesn't collapse when clicking on an empty editor area
| null |
2012-07-11 06:08:52
| 1,342,000,000 |
verified fixed
|
d148d5a
| 1,350,930,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java
|
Eclipse_Platform_UI
|
254 | 389,257 |
Bug 389257 Objects leaked when opening and closing an editor
|
M20120909-2000. Objects are leaked in a simple close/open text editor scenario. Simple test case: 0. start new workspace 1. prepare a perspective with only the Navigator view open with a text file in it 2. reset the instance counter of your profiler 3. open the editor 4. close the editor ==> several instances are leaked, e.g. XMLMemento, EclipseContext, NavigationHistoryEntry, ValueComputation, etc.
|
2012-09-11 09:27:33
| 1,347,370,000 |
verified fixed
|
e9b6883
| 1,350,590,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java
|
Eclipse_Platform_UI
|
255 | 386,022 |
Bug 386022 Title of ErrorDialog in WorkbenchStatusReporter should be externalized
|
Build Identifier: Version: Juno Release Build id: 20120614-1722 In the current implementation of WorkbenchStatusReporter title of ErrorDialog is fixed (as Internal Error). When running non-english application the dialog title doesn't fit to the message. Reproducible: Always Steps to Reproduce: 1. Just run any non-english application that uses WorkbenchStatusReporter.
|
2012-07-26 06:19:46
| 1,343,300,000 |
verified fixed
|
dd65342
| 1,350,410,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/WorkbenchStatusReporter.java
|
Eclipse_Platform_UI
|
256 | 391,866 |
Bug 391866 NPE in ViewRegistry.postConstruct()
| null |
2012-10-13 16:02:40
| 1,350,160,000 |
verified fixed
|
b7cc7b4
| 1,350,160,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewRegistry.java
|
Eclipse_Platform_UI
|
257 | 391,138 |
Bug 391138 Memory leaks in Juno when opening and closing Java Editor
|
I have noticed three memory leaks when opening and closing the Java editor 1) PartRenderingEngine adds MUIElement-s to the renderedElements list, but doesn't remove them correctly. All the OpaqueToolItemImpl toolbar items are leaked 2) ToolbarManagerRenderer.getUIContainer(MUIElement) doesn't find any container for the elements of the ToolBar type and creates a new toolbar that is never disposed. This leak has been introduced by Eclipse 4.2.1 3) This issue can be reproduced when adding WTP 3.4.x. The JavaOutlinePage class is disposed before disposing the JavaEditor class. WTP's CustomFilterPropertyTester calls JavaEditor.getAdapter(IContentOutlinePage.class) when JavaOutlinePage is disposed and the Java Editor isn't disposed yet. In this case, the Java Editor creates a new JavaOutlinePage that is never disposed. Attached are patches.
|
2012-10-04 12:58:27
| 1,349,370,000 |
resolved fixed
|
57222d2
| 1,349,450,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
258 | 389,941 |
Bug 389941 Keyline at bottom of toolbar clipped by SPACER control
|
In TrimBarLayout.tileLine(), the spacer control needs to be set to the size of the toolbar so it doesn't clip the bottom keyline of the toolbar.
|
2012-09-19 15:30:45
| 1,348,080,000 |
verified fixed
|
801333d
| 1,349,380,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimBarLayout.java
|
Eclipse_Platform_UI
|
259 | 390,924 |
Bug 390924 Pressing enter calls the @Focus Method
|
I think we have a regression in Eclipse 4.2.1. If I define a user interface and press [ENTER] in a text field the @Focus method is called. Example: Create the following part and press enter in one of the Text fields, e.g. the one defined with SWT.MULTI Let me know if you need a complete example, I can upload one. -------------- package com.example.e4.rcp.ui.parts; import javax.annotation.PostConstruct; import org.eclipse.e4.ui.di.Focus; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.DateTime; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Text; public class TodoDetailsPart { private Text text; private Text text_1; private Text text_2; private DateTime dateTime; private Button btnClickMe; private Label lblNewLabel_2; @PostConstruct public void buildUi(Composite parent) { parent.setLayout(new GridLayout(2, false)); Label lblSummary = new Label(parent, SWT.NONE); lblSummary.setText("Summary"); text = new Text(parent, SWT.BORDER); text.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1)); new Label(parent, SWT.NONE); lblNewLabel_2 = new Label(parent, SWT.NONE); lblNewLabel_2.setText("New Label"); Label lblNewLabel = new Label(parent, SWT.NONE); lblNewLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1)); lblNewLabel.setText("Description"); text_1 = new Text(parent, SWT.BORDER| SWT.MULTI); GridData gd_text_1 = new GridData(SWT.FILL, SWT.CENTER, false, false, 1, 1); gd_text_1.heightHint = 92; text_1.setLayoutData(gd_text_1); Label lblNewLabel_1 = new Label(parent, SWT.NONE); lblNewLabel_1.setText("Stuff"); text_2 = new Text(parent, SWT.BORDER); text_2.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false, 1, 1)); new Label(parent, SWT.NONE); dateTime = new DateTime(parent, SWT.BORDER); btnClickMe = new Button(parent, SWT.CHECK); btnClickMe.addSelectionListener(new SelectionAdapter() { @Override public void widgetSelected(SelectionEvent e) { } }); btnClickMe.setText("Click me"); new Label(parent, SWT.NONE); } @Focus public void focus() { btnClickMe.setFocus(); } }
|
2012-10-02 08:27:04
| 1,349,180,000 |
verified fixed
|
d609fcb
| 1,349,200,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java
|
Eclipse_Platform_UI
|
260 | 280,825 |
Bug 280825 Support for multiple window icons
| null |
2009-06-18 15:50:08
| 1,245,350,000 |
verified fixed
|
68563a1
| 1,349,110,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/WBWRenderer.java
|
Eclipse_Platform_UI
|
261 | 389,335 |
Bug 389335 CommandContributionItem IBindingManagerListener leak
| null |
2012-09-11 15:53:28
| 1,347,390,000 |
verified fixed
|
c50d62e
| 1,348,240,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowViewMenu.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/menus/CommandContributionItem.java
|
Eclipse_Platform_UI
|
262 | 389,901 |
Bug 389901 WorkbenchPage#openEditors doesn't set up the tabs for non-activated editors
|
Found this while investigating some of the performance issues. The labels and icons for editors were being set in the CompatibilityPart's construction. If you were to use the 'openEditors' API then the editors that were not rendered had no icon, label or tooltip.
|
2012-09-19 10:31:32
| 1,348,070,000 |
verified fixed
|
e71dd8d
| 1,348,070,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
|
Eclipse_Platform_UI
|
263 | 329,720 |
Bug 329720 [hover] There is no preference to change background color of debug hover popup
|
The background color of the debug hover popup on Linux Lucid Lynx is inherited from the desktop theme. For dark color schemes this leads to black text on a dark grey background. There should be a preference for setting background color of debug hover popup within Eclipse independently from the desktop theme.
|
2010-11-08 21:43:48
| 1,289,270,000 |
verified fixed
|
f8335c2
| 1,347,910,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/SpyHandler.java
|
Eclipse_Platform_UI
|
264 | 385,795 |
Bug 385795 [TabbedProperties] Need support for changing color of a tab-label and displaying dynamic images on a tab in Tabbed Properties View
|
Build Identifier: Latest release / Juno The Eclipse Tabbed Properties Framework does not support tab-decorations i.e. dynamic images on tabs or dynamically changing color of a tab label. Tab labels are always displayed in black-color. An image can be added to a tab using propertyTabs extension in plugin.xml; the image is displayed when the tab is in selected state otherwise it is not displayed. But the image is not dynamic enough because one cannot programatically control whether an image should be displayed or not. This fix can be used to improve usability of tabbed properties UI because tab-decorations can be used to convey, at a glance, information about current state of UI on a tab. The fix should make a provision for possibly setting different number of images for different tabs. Reproducible: Always
|
2012-07-23 17:41:11
| 1,343,080,000 |
resolved fixed
|
3bef50e
| 1,347,040,000 |
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/TabbedPropertySheetPage.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/AllTests.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/TabbedPropertySheetPageDecorationsTest.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/TabbedPropertySheetPageTest.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/decorations/TabbedPropertySheetPageWithDecorations.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/decorations/views/DecorationTestsView.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/tests/views/properties/tabbed/views/TestsView.java
|
Eclipse_Platform_UI
|
265 | 388,955 |
Bug 388955 LazyStackRenderer collects elements shown/hidden without making use of them
|
They are collected in hide/showRecursive but never used so they can be removed
|
2012-09-06 10:57:40
| 1,346,940,000 |
resolved fixed
|
09a5578
| 1,346,940,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/LazyStackRenderer.java
|
Eclipse_Platform_UI
|
266 | 388,931 |
Bug 388931 [QuickAccess] Copy Qualified Name doesn't work
| null |
2012-09-06 07:57:56
| 1,346,930,000 |
verified fixed
|
b517497
| 1,346,930,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerService.java
|
Eclipse_Platform_UI
|
267 | 388,866 |
Bug 388866 'Vertical' Image based frames throw an NPE if there's no handle
| null |
2012-09-05 13:36:27
| 1,346,870,000 |
verified fixed
|
7cf4116
| 1,346,870,000 |
bundles/org.eclipse.e4.ui.widgets/src/org/eclipse/e4/ui/widgets/ImageBasedFrame.java
|
Eclipse_Platform_UI
|
268 | 388,481 |
Bug 388481 [CSS] Add support for styling ToolBar and ToolItems
| null |
2012-08-30 18:23:14
| 1,346,370,000 |
resolved fixed
|
22ada80
| 1,346,710,000 |
bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/SWTElementProvider.java bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/ToolBarElement.java bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/dom/ToolItemElement.java
|
Eclipse_Platform_UI
|
269 | 385,379 |
Bug 385379 [CSS] Provide the editor ID as a CSS class
|
I think it would be useful to have the Part ID as CSS class to allow that I can style individual parts. Boris Bokowski mentioned that this was intended in the original design and the place to implement it would be in ContributedPartRenderer.
|
2012-07-18 04:31:34
| 1,342,600,000 |
verified fixed
|
a054a44
| 1,345,050,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
|
Eclipse_Platform_UI
|
270 | 384,068 |
Bug 384068 Unexpected partVisible and partBroughtToTop events lead to wrong History view updating in Link with... mode
|
Broken in 4.2, works fine in 3.8. Bad selection updates lead to wrong Git History view updating in Link with... mode. Steps: - have EGit 2.0 installed and a repo checked out - open an editor for a file from Git - open History view and enable "Link with Editor and Selection" and "Show all changes of selected resource and its children - in the Git Repositories view, select a repo => good: History view input changes to repo - click into the table in the History view to select another commit => bad: History view input changes to the editor input. Real severity is blocker, since this is enough to stop me from using 4.2 for real development.
|
2012-07-02 12:39:20
| 1,341,250,000 |
verified fixed
|
ff7bdfe
| 1,345,050,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
|
Eclipse_Platform_UI
|
271 | 387,247 |
Bug 387247 NPE in MakeHandlersGo#isEnabled()
|
Closing a workbench window to terminate an app threw up an NPE: Thread [main] (Suspended (exception NullPointerException)) MakeHandlersGo.isEnabled() line: 137 Command.isEnabled() line: 862 CommandContributionItem.isEnabled() line: 981 CommandContributionItem.updateMenuItem() line: 628 CommandContributionItem.update(String) line: 580 CommandContributionItem.update() line: 569 CommandContributionItem$1.bindingManagerChanged(BindingManagerEvent) line: 1001 BindingManager.fireBindingManagerChanged(BindingManagerEvent) line: 900 BindingManager.setActiveBindings(Map, Map, Map, Map) line: 2176 BindingManager.recomputeBindings() line: 1762 BindingManager.contextManagerChanged(ContextManagerEvent) line: 689 ContextManager.fireContextManagerChanged(ContextManagerEvent) line: 165 ContextManager.setActiveContextIds(Set) line: 295 BindingServiceImpl.setContextIds(Set<String>) line: 228 GeneratedMethodAccessor18.invoke(Object, Object[]) line: not available DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 597 MethodRequestor.execute() line: 56 ContextObjectSupplier$ContextInjectionListener.update(IEclipseContext, int, Object[]) line: 77 TrackableComputationExt.update(ContextChangeEvent) line: 106 EclipseContext.processScheduled(Set<Scheduled>) line: 308 EclipseContext.set(String, Object) line: 322 EclipseContext.deactivate() line: 623 PartRenderingEngine.clearContext(MContext) line: 883 PartRenderingEngine.safeRemoveGui(MUIElement) line: 868 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 ElementReferenceRenderer.disposeWidget(MUIElement) line: 122 PartRenderingEngine.safeRemoveGui(MUIElement) line: 847 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.safeRemoveGui(MUIElement) line: 808 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.safeRemoveGui(MUIElement) line: 808 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.safeRemoveGui(MUIElement) line: 808 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.safeRemoveGui(MUIElement) line: 808 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.safeRemoveGui(MUIElement) line: 808 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.safeRemoveGui(MUIElement) line: 801 PartRenderingEngine.access$3(PartRenderingEngine, MUIElement) line: 775 PartRenderingEngine$8.run() line: 770 SafeRunner.run(ISafeRunnable) line: 42 PartRenderingEngine.removeGui(MUIElement) line: 755 PartRenderingEngine.stop() line: 1081 Workbench.busyClose(boolean) line: 1125 Workbench.access$16(Workbench, boolean) line: 1005 Workbench$17.run() line: 1186 BusyIndicator.showWhile(Display, Runnable) line: 70 Workbench.close(int, boolean) line: 1184 Workbench.close() line: 1157 WorkbenchWindow.busyClose(boolean) line: 1158 WorkbenchWindow.access$14(WorkbenchWindow, boolean) line: 1131 WorkbenchWindow$10.run() line: 1187 BusyIndicator.showWhile(Display, Runnable) line: 70 WorkbenchWindow.close(boolean) line: 1185 WorkbenchWindow.close() line: 1197 WorkbenchWindow$6.close(MWindow) line: 445 WBWRenderer$10.shellClosed(ShellEvent) line: 564 TypedListener.handleEvent(Event) line: 98 EventTable.sendEvent(Event) line: 84 Shell(Widget).sendEvent(Event) line: 1276 Shell(Widget).sendEvent(int, Event, boolean) line: 1300 Shell(Widget).sendEvent(int, Event) line: 1285 Shell.closeWidget() line: 617 Shell.gtk_delete_event(long, long) line: 1191 Shell(Widget).windowProc(long, long, long) line: 1750 Shell(Control).windowProc(long, long, long) line: 5116 Display.windowProc(long, long, long) line: 4369 OS._gtk_main_do_event(long) line: not available [native method] OS.gtk_main_do_event(long) line: 8307 Display.eventProc(long, long) line: 1192 OS._g_main_context_iteration(long, boolean) line: not available [native method] OS.g_main_context_iteration(long, boolean) line: 2332 Display.readAndDispatch() line: 3177 PartRenderingEngine$9.run() line: 1029 Realm.runWithDefault(Realm, Runnable) line: 332 PartRenderingEngine.run(MApplicationElement, IEclipseContext) line: 923 E4Workbench.createAndRunUI(MApplicationElement) line: 86 Workbench$5.run() line: 592 Realm.runWithDefault(Realm, Runnable) line: 332 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 547 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 DSApplication.start(IApplicationContext) line: 58 EclipseAppHandle.run(Object) line: 196 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 353 EclipseStarter.run(String[], Runnable) line: 180 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 597 Main.invokeFramework(String[], URL[]) line: 629 Main.basicRun(String[]) line: 584 Main.run(String[]) line: 1438 Main.main(String[]) line: 1414
|
2012-08-14 17:08:43
| 1,344,980,000 |
verified fixed
|
83bff71
| 1,345,030,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/MakeHandlersGo.java
|
Eclipse_Platform_UI
|
272 | 378,440 |
Bug 378440 'Close All Perspectives' first creates all parts
|
4.2-I20120503-1800. 'Close All Perspectives' first creates all not yet realized parts. This makes no sense and is a regression compared to 3.8.
|
2012-05-04 03:45:29
| 1,336,120,000 |
verified fixed
|
e0a1e05
| 1,344,970,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
|
Eclipse_Platform_UI
|
273 | 310,716 |
Bug 310716 [DetachedView] No close box on shell of torn off views.
|
1) Drag any view out the content area of the shell that contained it. 2) Notice that the view is hosted in its own shell, which does not have a close box (but oddly *does* have a maximize button) Doing this on a Windows machine results in a shell with a close box (but no maximize button).
|
2010-04-27 16:36:27
| 1,272,400,000 |
verified fixed
|
5c26252
| 1,344,970,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/WBWRenderer.java
|
Eclipse_Platform_UI
|
274 | 346,624 |
Bug 346624 [Browser] With the SystemBrowserInstance, IWebBrowser#openURL() fails unless called on the Display Thread
|
CQ:WIND00277253 When the Web Browser is configured to use the System Browser, calling IWebBrowser#openURL() on a Thread other than the Display thread fails with following message: "Could not open a Web Browser because there are none configured. Check the Web Browser Preferences." This is highly confusing for end users, because one (or even more) web browsers are properly configured. It's also confusing for end users, becasue IWebBrowser#openURL() API does not mention that it must be called on the Display Thread. The reason for the problem is, that SWT Program#findProgram() is used in SystemBrowserInstance, and that API only works on the Display Thread.
|
2011-05-20 06:09:14
| 1,305,890,000 |
verified fixed
|
38c3133
| 1,344,960,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/IWebBrowser.java
|
Eclipse_Platform_UI
|
275 | 385,267 |
Bug 385267 Change exception message
|
Build Identifier: if the name of the Binding Context is empty, the Nullpointer Exception should be "The name of a binding context cannot be null" instead of "The name of a scheme cannot be null" org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException: The name of a scheme cannot be null at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:857) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:318) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:253) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:185) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49) at org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:254) at org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:132) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) Caused by: java.lang.NullPointerException: The name of a scheme cannot be null at org.eclipse.core.commands.contexts.Context.define(Context.java:140) at org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon.defineContexts(ContextProcessingAddon.java:65) at org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon.defineContexts(ContextProcessingAddon.java:54) at org.eclipse.e4.ui.internal.workbench.addons.ContextProcessingAddon.init(ContextProcessingAddon.java:47) 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:56) ... 23 more Reproducible: Always Steps to Reproduce: 1.Create Binding Context 2.let the Name label empty 3.start application
|
2012-07-17 04:27:43
| 1,342,510,000 |
verified fixed
|
91fd715
| 1,344,960,000 |
bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/contexts/Context.java
|
Eclipse_Platform_UI
|
276 | 386,173 |
Bug 386173 [Refactor] HandledContributionItem parameterized command generation
|
The generation of parameterized commands can be simplified/improved. Currently, parameterized commands can be generated three distinct ways.
|
2012-07-27 18:46:38
| 1,343,430,000 |
verified fixed
|
2a99470
| 1,344,960,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java
|
Eclipse_Platform_UI
|
277 | 375,826 |
Bug 375826 No SWT.Show event on selecting a menu from the RCP workbench
|
Build Identifier: 4.2.0.v20120315-1300 We, the Jubula team, currently check the compatibility of testing 3.x applications / plugins with e4.2 + compatibility layer and noticed that we have problems accessing menus from the Workbench and toolbar: the items / framework do not fire the SWT.Show event anymore. To correctly synchronize with the application we make use of global filters via Display.addFilter() and SWT.Show events for menus when e.g. remote controlling those. We are using this event to check if items from the menu are shown (e.g. after a click on the menu), but for RCP workbench menus and toolbar items with sub menus these events do no longer get fired / propagated. This results in the problem of not being able to detect that the menu has been opened successfully, and hence cannot correctly test the workbench and toolbar item menus at all. Does the new 4.2 UI use other events or are we missing something here? Reproducible: Always
|
2012-04-02 06:05:29
| 1,333,360,000 |
verified fixed
|
724d1d8
| 1,344,950,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerHideProcessor.java 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.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/MenuManagerShowProcessor.java bundles/org.eclipse.jface/src/org/eclipse/jface/action/MenuManager.java bundles/org.eclipse.jface/src/org/eclipse/jface/internal/MenuManagerEventHelper.java
|
Eclipse_Platform_UI
|
278 | 387,140 |
Bug 387140 TrimmedPartLayout should use visibility of the trim-area
| null |
2012-08-13 14:22:18
| 1,344,880,000 |
verified fixed
|
c5d7187
| 1,344,900,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimmedPartLayout.java
|
Eclipse_Platform_UI
|
279 | 385,748 |
Bug 385748 After splitting the editor work area into multiple tiles, files open in the original editor work area instead of the focused one
|
Build Identifier: Version: 4.2.0 Build id: I20120608-1400 In all other versions of Eclipse, after tiling the editor work area, newly opened files would appear in whichever editor work area had focus. In this version, they open in the Original work area regardless of the amount of editor work area tiles. Reproducible: Always Steps to Reproduce: 1.Grab an editor or view tab and drag it to the edge of the editor work area. 2.The green drop rectangles indicate which way the editor work area will split. 3.Focus the editor work area tile and open a file with either CTRL-SHIFT-R or by hitting F3 on a selected link. 4.The new editor will open in the original editor work area.
|
2012-07-23 10:43:59
| 1,343,050,000 |
verified fixed
|
d5e29a6
| 1,344,630,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java
|
Eclipse_Platform_UI
|
280 | 383,269 |
Bug 383269 vertical trims are not supported
|
On e4, I can contribute trims to the locations toolbar:org.eclipse.ui.trim.status and toolbar:org.eclipse.ui.trim.command2, but the vertical locations toolbar:org.eclipse.ui.trim.vertical1 and toolbar:org.eclipse.ui.trim.vertical2 do not work; nothing shows up when I use them. I'm not sure about command1.
|
2012-06-21 16:04:27
| 1,340,310,000 |
verified fixed
|
ecfa3e2
| 1,344,630,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/TrimBarRenderer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
|
Eclipse_Platform_UI
|
281 | 386,561 |
Bug 386561 Dependency injection in tool control fails when reopening view
| null |
2012-08-03 06:53:06
| 1,343,990,000 |
verified fixed
|
d961dc6
| 1,344,620,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolControlContribution.java
|
Eclipse_Platform_UI
|
282 | 386,663 |
Bug 386663 NPE in MinMaxAddon when Removing Perspective From Snippet
|
I have perspective stack in the snippet container of my application. When I remove a perspective from the stack int the snippet container, I get an NPE from the MinMaxAddon with the stack below. The NPE occurs because there is of course not top level window for the perspective.
|
2012-08-06 05:21:49
| 1,344,240,000 |
resolved fixed
|
ba96c49
| 1,344,460,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java
|
Eclipse_Platform_UI
|
283 | 378,457 |
Bug 378457 Conflicting handler activations not detected
| null |
2012-05-04 06:08:07
| 1,336,130,000 |
verified fixed
|
e22d24e
| 1,344,450,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerService.java
|
Eclipse_Platform_UI
|
284 | 383,684 |
Bug 383684 Wrong placement of list of opened editors
|
Build Identifier: 20120614-1722 Placement of vertial buffer list ("Show List" in editor menu) ignores screen boundaries. Placemet in Eclipse 3.7 is fine, in 4.2 there is a bug. Reproducible: Always Steps to Reproduce: 1. Open several editors so that you have the "show List" icon available 2. Try to click "Show List" button 3. Placement of the popup-window presenting editors is misplaced often running off the screen
|
2012-06-27 15:06:10
| 1,340,820,000 |
verified fixed
|
fc7304a
| 1,344,440,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/StackRenderer.java
|
Eclipse_Platform_UI
|
285 | 376,384 |
Bug 376384 Installation changes cause error to appear in the .log
|
After starting Eclipse 4.2, switching between a couple of perspectives, and showing the Welcome Page, errors are logged (attached at the end). I have investigated this issue and it appears that the uri of one particular image got in TrimStack.getImage is bundleentry://155.fwk1253528362/icons/full/eview16/jperspective.gif and means image icons/full/eview16/jperspective.gif from bundle org.eclipse.rcp_4.2.0.v20120405-1340 [155] (values observed in Handler.findBundleEntry), which is obviously wrong, as the perspective gif comes from org.eclipse.ui.ide. Further investigation reveals, that the wrong uri is stored in .metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi. Said that, I have checked that launching Eclipse with -clean and a fresh workspace does not reproduce the issue. It looks like the Eclipse workbench is vulnerable to installation changes/running eclipse with -clean (because bundle numbers change, and are out of sync with what is stored in workbench.xmi). !ENTRY org.eclipse.jface 4 0 2012-04-10 10:52:29.175 !MESSAGE /icons/full/eview16/jperspective.gif !STACK 0 java.io.FileNotFoundException: /icons/full/eview16/jperspective.gif at org.eclipse.osgi.framework.internal.protocol.bundleentry.Handler.findBundleEntry(Handler.java:44) at org.eclipse.osgi.framework.internal.core.BundleResourceHandler.openConnection(BundleResourceHandler.java:175) at java.net.URL.openConnection(URL.java:969) at org.eclipse.core.runtime.internal.adaptor.URLConverterImpl.toFileURL(URLConverterImpl.java:32) at org.eclipse.core.runtime.FileLocator.toFileURL(FileLocator.java:206) at org.eclipse.jface.resource.URLImageDescriptor.getFilePath(URLImageDescriptor.java:137) at org.eclipse.jface.resource.URLImageDescriptor.createImage(URLImageDescriptor.java:157) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.getImage(TrimStack.java:569) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.updateTrimStackItems(TrimStack.java:629) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.createWidget(TrimStack.java:500) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:857) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:318) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:253) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:185) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49) at org.eclipse.e4.ui.workbench.renderers.swt.ToolControlRenderer.createWidget(ToolControlRenderer.java:75) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:883) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:617) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$1.handleEvent(PartRenderingEngine.java:125) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.UIElementImpl.setToBeRendered(UIElementImpl.java:290) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.createTrim(MinMaxAddon.java:787) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.minimize(MinMaxAddon.java:537) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:371) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.maximize(MinMaxAddon.java:643) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:373) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.setState(MinMaxAddon.java:256) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.access$2(MinMaxAddon.java:249) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$4.mouseDoubleClick(MinMaxAddon.java:212) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:196) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1271) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3553) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3178) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1016) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:580) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:535) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) !ENTRY org.eclipse.jface 4 0 2012-04-10 10:52:29.178 !MESSAGE /icons/full/eview16/resource_persp.gif !STACK 0 java.io.FileNotFoundException: /icons/full/eview16/resource_persp.gif at org.eclipse.osgi.framework.internal.protocol.bundleentry.Handler.findBundleEntry(Handler.java:44) at org.eclipse.osgi.framework.internal.core.BundleResourceHandler.openConnection(BundleResourceHandler.java:175) at java.net.URL.openConnection(URL.java:969) at org.eclipse.core.runtime.internal.adaptor.URLConverterImpl.toFileURL(URLConverterImpl.java:32) at org.eclipse.core.runtime.FileLocator.toFileURL(FileLocator.java:206) at org.eclipse.jface.resource.URLImageDescriptor.getFilePath(URLImageDescriptor.java:137) at org.eclipse.jface.resource.URLImageDescriptor.createImage(URLImageDescriptor.java:157) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.getImage(TrimStack.java:569) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.updateTrimStackItems(TrimStack.java:629) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.createWidget(TrimStack.java:500) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:857) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:318) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:253) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:185) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49) at org.eclipse.e4.ui.workbench.renderers.swt.ToolControlRenderer.createWidget(ToolControlRenderer.java:75) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:883) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:617) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$1.handleEvent(PartRenderingEngine.java:125) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.UIElementImpl.setToBeRendered(UIElementImpl.java:290) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.createTrim(MinMaxAddon.java:787) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.minimize(MinMaxAddon.java:537) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:371) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.maximize(MinMaxAddon.java:643) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:373) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.setState(MinMaxAddon.java:256) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.access$2(MinMaxAddon.java:249) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$4.mouseDoubleClick(MinMaxAddon.java:212) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:196) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1271) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3553) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3178) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1016) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:910) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:580) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:535) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) !ENTRY org.eclipse.jface 4 0 2012-04-10 10:52:29.180 !MESSAGE /icons/eview16/plugins.gif !STACK 0 java.io.FileNotFoundException: /icons/eview16/plugins.gif at org.eclipse.osgi.framework.internal.protocol.bundleentry.Handler.findBundleEntry(Handler.java:44) at org.eclipse.osgi.framework.internal.core.BundleResourceHandler.openConnection(BundleResourceHandler.java:175) at java.net.URL.openConnection(URL.java:969) at org.eclipse.core.runtime.internal.adaptor.URLConverterImpl.toFileURL(URLConverterImpl.java:32) at org.eclipse.core.runtime.FileLocator.toFileURL(FileLocator.java:206) at org.eclipse.jface.resource.URLImageDescriptor.getFilePath(URLImageDescriptor.java:137) at org.eclipse.jface.resource.URLImageDescriptor.createImage(URLImageDescriptor.java:157) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.getImage(TrimStack.java:569) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.updateTrimStackItems(TrimStack.java:629) at org.eclipse.e4.ui.workbench.addons.minmax.TrimStack.createWidget(TrimStack.java:500) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:601) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:857) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:318) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:253) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:185) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71) at org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49) at org.eclipse.e4.ui.workbench.renderers.swt.ToolControlRenderer.createWidget(ToolControlRenderer.java:75) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:883) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:617) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:719) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:690) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:684) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:669) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$1.handleEvent(PartRenderingEngine.java:125) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.e4.ui.model.application.ui.impl.UIElementImpl.setToBeRendered(UIElementImpl.java:290) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.createTrim(MinMaxAddon.java:787) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.minimize(MinMaxAddon.java:537) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:371) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.maximize(MinMaxAddon.java:643) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$8.handleEvent(MinMaxAddon.java:373) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:180) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:150) at org.eclipse.swt.widgets.Display.syncExec(Display.java:4290) at org.eclipse.e4.ui.internal.workbench.swt.E4Application$1.syncExec(E4Application.java:184) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:38) 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:81) at org.eclipse.e4.ui.internal.workbench.UIEventPublisher.notifyChanged(UIEventPublisher.java:57) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:374) at org.eclipse.emf.ecore.util.EcoreEList.dispatchNotification(EcoreEList.java:249) at org.eclipse.emf.common.notify.impl.NotifyingListImpl.addUnique(NotifyingListImpl.java:304) at org.eclipse.emf.common.util.AbstractEList.add(AbstractEList.java:301) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.setState(MinMaxAddon.java:256) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon.access$2(MinMaxAddon.java:249) at org.eclipse.e4.ui.workbench.addons.minmax.MinMaxAddon$4.mouseDoubleClick(MinMaxAddon.java:212) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:196) at org.eclipse.swt.widgets.Ev
|
2012-04-10 06:34:56
| 1,334,050,000 |
resolved fixed
|
cc7a6de
| 1,344,350,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuHelper.java
|
Eclipse_Platform_UI
|
286 | 381,470 |
Bug 381470 [CSS] CSS url resources should support "file:"-style URIs
|
The CSS support doesn't know how to handle "file:"-style URIs.
|
2012-06-02 08:02:42
| 1,338,640,000 |
verified fixed
|
22f5432
| 1,344,270,000 |
bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/util/impl/resources/FileResourcesLocatorImpl.java bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/helpers/CSSSWTImageHelper.java
|
Eclipse_Platform_UI
|
287 | 379,693 |
Bug 379693 NPE in WorkbenchWindow#updateActionBars() on workspace shutdown
|
My guess is that updateActionBars() should check that getShell() != null && !getShell.isDisposed() ? (I've seen this same error a few times.) !SESSION 2012-05-15 12:02:39.671 ----------------------------------------------- eclipse.buildId=I20120514-1900 [...] !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2012-05-15 12:33:35.735 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 org.eclipse.e4.core.di.InjectionException: org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextInjectionListener.update(ContextObjectSupplier.java:77) at org.eclipse.e4.core.internal.contexts.TrackableComputationExt.update(TrackableComputationExt.java:106) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled(EclipseContext.java:308) at org.eclipse.e4.core.internal.contexts.EclipseContext.dispose(EclipseContext.java:164) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.clearContext(PartRenderingEngine.java:879) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:860) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:767) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:762) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:747) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1506) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1158) at org.eclipse.ui.internal.WorkbenchWindow.access$16(WorkbenchWindow.java:1135) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1184) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1182) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1194) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:441) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$10.shellClosed(WBWRenderer.java:562) 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.Display.sendEvent(Display.java:4130) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1458) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1481) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1466) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:599) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2288) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5467) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2102) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2284) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5533) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4978) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5127) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3612) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1021) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:915) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) Caused by: org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63) at org.eclipse.e4.core.internal.di.InjectorImpl.processAnnotated(InjectorImpl.java:857) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:111) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:81) at org.eclipse.e4.core.contexts.ContextInjectionFactory.inject(ContextInjectionFactory.java:72) at org.eclipse.ui.internal.Workbench.createWorkbenchWindow(Workbench.java:1243) at org.eclipse.ui.internal.Workbench.getActiveWorkbenchWindow(Workbench.java:1215) at org.eclipse.ui.internal.Workbench.updateActiveWorkbenchWindowMenuManager(Workbench.java:2845) at org.eclipse.ui.internal.Workbench.access$0(Workbench.java:2843) at org.eclipse.ui.internal.Workbench$1.bindingManagerChanged(Workbench.java:2838) at org.eclipse.jface.bindings.BindingManager.fireBindingManagerChanged(BindingManager.java:900) at org.eclipse.jface.bindings.BindingManager.setActiveBindings(BindingManager.java:2176) at org.eclipse.jface.bindings.BindingManager.recomputeBindings(BindingManager.java:1742) at org.eclipse.jface.bindings.BindingManager.contextManagerChanged(BindingManager.java:689) at org.eclipse.core.commands.contexts.ContextManager.fireContextManagerChanged(ContextManager.java:165) at org.eclipse.core.commands.contexts.ContextManager.setActiveContextIds(ContextManager.java:295) at org.eclipse.e4.ui.bindings.internal.BindingServiceImpl.setContextIds(BindingServiceImpl.java:237) at sun.reflect.GeneratedMethodAccessor17.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) ... 60 more Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchWindow.updateActionBars(WorkbenchWindow.java:1800) at org.eclipse.ui.internal.WorkbenchWindow.largeUpdateEnd(WorkbenchWindow.java:1851) at org.eclipse.ui.internal.Workbench.largeUpdateEnd(Workbench.java:3052) at org.eclipse.ui.internal.WorkbenchWindow.fillActionBars(WorkbenchWindow.java:2064) at org.eclipse.ui.internal.WorkbenchWindow.setup(WorkbenchWindow.java:523) 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) ... 80 more
|
2012-05-16 10:04:44
| 1,337,180,000 |
resolved fixed
|
9369b53
| 1,344,260,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
|
Eclipse_Platform_UI
|
288 | 385,046 |
Bug 385046 AbstractTableInformationControl - Usage of SWT.LINE_DOT
|
I think the SWT.LINE_DOT is not supported by the SWT Label. RAP seems to have problem with that. Can we replace the following? Label separator = new Label(parent, SWT.SEPARATOR | SWT.HORIZONTAL| SWT.LINE_DOT);
|
2012-07-13 08:37:38
| 1,342,180,000 |
verified fixed
|
44d3a0c
| 1,344,010,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/internal/workbench/renderers/swt/AbstractTableInformationControl.java bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/PopupDialog.java
|
Eclipse_Platform_UI
|
289 | 386,070 |
Bug 386070 HandlerContributionItem updateIcon performance can be improved
| null |
2012-07-26 13:11:48
| 1,343,320,000 |
verified fixed
|
5fdc1da
| 1,344,000,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/DirectContributionItem.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java
|
Eclipse_Platform_UI
|
290 | 379,590 |
Bug 379590 Part dragging not exiting drag mode
|
I20120510-1900 I sometimes get into a state where the workbench thinks I am dragging a part bug I have released the mouse button already. I can now easily reproduce this: - While the mouse is moving over a part tab, do a mouse button down - Stop moving, and mouse up. -> Now I am no longer holding the button down, but the workbench still thinks I am dragging (there are green boxes everywhere I move the mouse). You can easily get back into a good state again by hitting Esc, but it is disconcerting when this happens
|
2012-05-15 13:47:28
| 1,337,100,000 |
verified fixed
|
fb51c11
| 1,343,930,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/DnDManager.java
|
Eclipse_Platform_UI
|
291 | 378,684 |
Bug 378684 Ctrl+L disappears after switching to Emacs and back
| null |
2012-05-07 10:52:07
| 1,336,400,000 |
verified fixed
|
c68d932
| 1,343,310,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/BindingModel.java
|
Eclipse_Platform_UI
|
292 | 385,414 |
Bug 385414 Contributing wizards to toolbar always displays icon and text
|
Build Identifier: 20120614-1722 plugin.xml: <extension point="org.eclipse.ui.menus"> <menuContribution locationURI="toolbar:org.eclipse.ui.workbench.file"> <command commandId="org.eclipse.ui.newWizard" style="push"> <parameter name="newWizardId" value="com.fabasoft.apptest.ui.wizards.newproject" /> </command> </menuContribution> </extension> The button is always displayed with icon and text. Works fine in 3.7 Reproducible: Always Steps to Reproduce: 1. see details 2. 3.
|
2012-07-18 10:28:13
| 1,342,620,000 |
verified fixed
|
db4addb
| 1,343,220,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/DirectContributionItem.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/HandledContributionItem.java
|
Eclipse_Platform_UI
|
293 | 362,522 |
Bug 362522 Theme switching should warn the user that a restart is required
|
Some settings will not apply itself properly. A restart guarantees that the UI matches the defined CSS and the user should be notified that a restart is needed.
|
2011-10-31 14:19:24
| 1,320,090,000 |
verified fixed
|
74e3b65
| 1,343,220,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchMessages.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java
|
Eclipse_Platform_UI
|
294 | 353,628 |
Bug 353628 No binding table for org.eclipse.ui.contexts.dialog
|
I20110729-0200 (4.2) prints this to syserr on startup: No binding table for org.eclipse.ui.contexts.dialog
|
2011-08-02 14:05:21
| 1,312,310,000 |
verified fixed
|
e8654a1
| 1,342,460,000 |
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/src/org/eclipse/e4/ui/workbench/renderers/swt/cocoa/CocoaUIHandler.java bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/src/org/eclipse/e4/ui/workbench/renderers/swt/cocoa/CocoaUIProcessor.java
|
Eclipse_Platform_UI
|
295 | 384,303 |
Bug 384303 [Compatibility] WorkbenchWindows don't have a default title
|
In 3.x, workbench windows normally have a default title set to the product name (see WorkbenchWindow#configureShell(Shell) in 3.x). This code appears to have been lost in 4.x, such that windows have a blank title unless one is set by the WorkbenchWindowAdvisor. Steps to repeat: 1. Create a new plug-in project, and select the RCP Mail example. 2. Run the RCP Mail example. 3. See the app window with a blank title.
|
2012-07-04 14:59:25
| 1,341,430,000 |
verified fixed
|
f8aca91
| 1,341,430,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
|
Eclipse_Platform_UI
|
296 | 364,529 |
Bug 364529 UIEventPublisher does not handle Notification.ADD_MANY and REMOVE_MANY
|
I was walking through some code that sought to respond to changes to the MApplication's menu contributions (formed from the 3.x <menuContributions> stanzas). My event listener was getting a strange event whose type was "UNKNOWN". It turns out that adding the generated MMenuContributions to the app instance (in MenuPersistence#read()) causes an EMF ADD_MANY notification, which we don't interpret properly in UIEventPublisher#getEventType(). We instead map the notification to event type "UNKNOWN", which has the effect that the old and new values are never set in the event properties. I'm not sure what we should be mapping this ADD_MANY to.
|
2011-11-22 19:21:59
| 1,322,010,000 |
verified fixed
|
24bfc76
| 1,341,430,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/MinMaxAddon.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/WBWRenderer.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/util/BindingProcessingAddon.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/UIEventPublisher.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/addons/CommandProcessingAddon.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/addons/ContextProcessingAddon.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/UIEvents.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/e4/ui/workbench/addons/perspectiveswitcher/PerspectiveSwitcher.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessContextPresentationEngine.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/UIEventTypesTest.java
|
Eclipse_Platform_UI
|
297 | 378,959 |
Bug 378959 Appearance preference page misses "Use mixed fonts and colors for labels"
|
In 4.2, the Appearance preference page misses the "Use mixed fonts and colors for labels" option. This is a major problem because a user could have disabled this option in 3.8 but cannot enable it again after migrating to 4.2. BTW: The new Appearance page doesn't use the dialog font.
|
2012-05-09 06:57:41
| 1,336,560,000 |
verified fixed
|
b6a8f91
| 1,340,290,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchMessages.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java
|
Eclipse_Platform_UI
|
298 | 381,219 |
Bug 381219 Remove timestamp check for the base application model
| null |
2012-05-31 11:19:24
| 1,338,480,000 |
verified fixed
|
d1494db
| 1,338,490,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ResourceHandler.java
|
Eclipse_Platform_UI
|
299 | 379,128 |
Bug 379128 Wrong editor is activated
|
I have a couple of Java editors open in the same tabbed pane. The funny bug is every second time I select another tab, the edittor in the first tab is actually selected. The outline shows the right file. "Open type" is broken as well, same with following hyperlinks.
|
2012-05-10 10:02:14
| 1,336,660,000 |
verified fixed
|
7df9398
| 1,338,400,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
|
Eclipse_Platform_UI
|
300 | 380,654 |
Bug 380654 Launching an application with -persistState false causes a NPE
|
Build: Eclipse 4.2 RC1 Starting an application with the argument "-persistState false" causes following NullPointerException: !ENTRY org.eclipse.osgi 4 0 2012-05-25 14:42:16.408 !MESSAGE Application error !STACK 1 java.lang.NullPointerException at org.eclipse.emf.ecore.resource.impl.ResourceFactoryRegistryImpl.getFactory(ResourceFactoryRegistryImpl.java:115) at org.eclipse.emf.ecore.resource.impl.ResourceFactoryRegistryImpl.getFactory(ResourceFactoryRegistryImpl.java:86) at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.createResource(ResourceSetImpl.java:431) at org.eclipse.emf.ecore.resource.impl.ResourceSetImpl.createResource(ResourceSetImpl.java:423) at org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:206) at org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:366) at org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:220) at org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:132) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
|
2012-05-25 08:55:32
| 1,337,950,000 |
verified fixed
|
d5d5ec7
| 1,338,310,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ResourceHandler.java
|
Eclipse_Platform_UI
|
301 | 380,676 |
Bug 380676 NPE when attempting to create keybinding for empty binding contexts
|
Version: 4.2.0 Build id: I20120524-2100 None of the programmatically-contributed keybindings are being loaded (e.g., the CSS Spy, the Live Model Editor). Attempting to create such a binding from the Keys pref page results in an NPE: !ENTRY org.eclipse.ui 4 0 2012-05-25 10:32:24.558 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.keys.BindingService.findPotentialConflict(BindingService.java:509) at org.eclipse.ui.internal.keys.BindingService.persistToModel(BindingService.java:467) at org.eclipse.ui.internal.keys.BindingService.savePreferences(BindingService.java:416) at org.eclipse.ui.internal.keys.model.KeyController.saveBindings(KeyController.java:427) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.performOk(NewKeysPreferencePage.java:1272) at org.eclipse.jface.preference.PreferencePage.performApply(PreferencePage.java:432) at org.eclipse.jface.preference.PreferencePage$2.widgetSelected(PreferencePage.java:281) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:248) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4130) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1458) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1481) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1466) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1271) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3976) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3615) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.open(WorkbenchPreferenceDialog.java:215) at org.eclipse.ui.internal.keys.GlobalKeyAssistDialog.openPreferencePage(GlobalKeyAssistDialog.java:126) at org.eclipse.ui.internal.keys.GlobalKeyAssistDialog.open(GlobalKeyAssistDialog.java:71) at org.eclipse.ui.internal.keys.BindingService.openKeyAssistDialog(BindingService.java:371) at org.eclipse.ui.internal.handlers.ShowKeyAssistHandler.execute(ShowKeyAssistHandler.java:37) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:76) 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.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:276) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:494) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:545) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:366) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:313) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:82) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1068) at org.eclipse.swt.widgets.Display.sendEvent(Display.java:4129) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1458) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1481) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1466) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1495) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1491) at org.eclipse.swt.widgets.Table.sendKeyEvent(Table.java:3064) at org.eclipse.swt.widgets.Control.keyDown(Control.java:2371) at org.eclipse.swt.widgets.Composite.keyDown(Composite.java:600) at org.eclipse.swt.widgets.Table.keyDown(Table.java:1920) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5471) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:221) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2102) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2284) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5533) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4978) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5127) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3612) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1021) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:915) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438)
|
2012-05-25 10:36:18
| 1,337,960,000 |
verified fixed
|
6d51ea7
| 1,338,230,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/BindingService.java
|
Eclipse_Platform_UI
|
302 | 379,818 |
Bug 379818 Inconsistent activation of views
| null |
2012-05-17 10:52:25
| 1,337,270,000 |
verified fixed
|
40f3224
| 1,337,980,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
303 | 379,977 |
Bug 379977 Trying to delete a branch caused CCE
|
I was in the Debug perspective. I selected a breakpoint and hit the delete key. I got the following 2 exceptions. !ENTRY org.eclipse.egit.ui 4 0 2012-05-18 09:24:49.301 !MESSAGE Branch deletion failed !STACK 0 java.lang.ClassCastException: org.eclipse.jdt.internal.debug.core.breakpoints.JavaLineBreakpoint incompatible with org.eclipse.egit.ui.internal.repository.tree.RefNode at org.eclipse.egit.ui.internal.repository.tree.command.DeleteBranchCommand$3.run(DeleteBranchCommand.java:99) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2344) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:2326) at org.eclipse.egit.ui.internal.repository.tree.command.DeleteBranchCommand.deleteBranches(DeleteBranchCommand.java:95) at org.eclipse.egit.ui.internal.repository.tree.command.DeleteBranchCommand.access$0(DeleteBranchCommand.java:90) at org.eclipse.egit.ui.internal.repository.tree.command.DeleteBranchCommand$1.run(DeleteBranchCommand.java:53) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121) !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-05-18 09:24:49.320 !MESSAGE !STACK 0 org.eclipse.e4.core.di.InjectionException: java.lang.NullPointerException at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:63) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:229) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:210) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:131) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:171) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:276) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:494) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:545) at org.eclipse.e4.ui.bindings.keys.OutOfOrderListener.handleEvent(OutOfOrderListener.java:60) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1276) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1300) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1312) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:748) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:3050) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:738) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1758) at org.eclipse.swt.widgets.Control.windowProc(Control.java:5116) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:3444) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4369) 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:8295) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1192) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:2332) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3177) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1021) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:915) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:585) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:540) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:611) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414) Caused by: java.lang.NullPointerException at org.eclipse.egit.ui.internal.repository.tree.command.DeleteBranchCommand.execute(DeleteBranchCommand.java:64) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:76) at sun.reflect.GeneratedMethodAccessor43.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:611) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:56) ... 48 more
|
2012-05-18 09:48:57
| 1,337,350,000 |
verified fixed
|
523f636
| 1,337,880,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/HandlerActivation.java
|
Eclipse_Platform_UI
|
304 | 380,322 |
Bug 380322 Scheme is ignored while selecting the best shortcut to display
|
When you switch to the emacs scheme, Edit>Find/Replace still shows CTRL+F (although that's next word in emacs). It should be ALT+R. That's because getBestSequenceFor(*) ignores the scheme when sorting the bindings. It should sort by scheme first, and then pick best values out of that. PW
|
2012-05-22 15:39:25
| 1,337,720,000 |
verified fixed
|
4b2a72f
| 1,337,720,000 |
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingTable.java bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingTableManager.java
|
Eclipse_Platform_UI
|
305 | 375,762 |
Bug 375762 child scheme keybindings that 'conflict' with parent scheme are not enabled
|
Build Identifier: 20120322-1740 In 3.x the doc for the org.eclipse.ui.bindings includes the following statement: "It is possible for schemes to inherit bindings from a parent scheme. This is intended to make it easier for plug-in developers to create customized binding sets. An active binding defined in a child scheme will always override an active binding in a parent scheme, if they have the same trigger. " I define a child scheme of org.eclipse.ui.emacsAccelatorConfiguration <scheme description="%emacsplus.scheme.description" id="com.mulgasoft.emacsplusConfiguration" name="%emacsplus.scheme.name" parentId="org.eclipse.ui.emacsAcceleratorConfiguration"/> However, all key bindings that should override instead cause the Key Assist Dialog to pop up with my binding and the binding in emacs emacsA.... scheme on invocation. No conflicts are reported in the .log file or in the Keys window. This mechanism worked in 3.x but not in e4. My command handler is defined correctly and is callable through my M-x mechansim. Also, I'm unable to locate the corresponding bindings documentation specific to the e4 platform Reproducible: Always
|
2012-03-30 19:24:05
| 1,333,150,000 |
verified fixed
|
4e9dcd4
| 1,337,700,000 |
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingTableManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/BindingService.java
|
Eclipse_Platform_UI
|
306 | 379,791 |
Bug 379791 SWTException: Graphic is disposed for PlaceholderImpl
|
In Version: 4.2.0 Build id: I20120515-2200 I get frequent exceptions like the one below when closing the workbench. Ids mentioned: elementId: org.eclipse.jdt.ui.JavadocView & elementId: org.eclipse.jdt.ui.SourceView !ENTRY org.eclipse.e4.ui.workbench 4 0 2012-05-17 11:39:53.855 !MESSAGE Exception occurred while unrendering: org.eclipse.e4.ui.model.application.ui.advanced.impl.PlaceholderImpl@4dc6bbd3 (elementId: org.eclipse.jdt.ui.SourceView, tags: [], contributorURI: null) (widget: null, renderer: null, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (closeable: false) !STACK 0 org.eclipse.swt.SWTException: Graphic is disposed at org.eclipse.swt.SWT.error(SWT.java:4361) at org.eclipse.swt.SWT.error(SWT.java:4276) at org.eclipse.swt.SWT.error(SWT.java:4247) at org.eclipse.swt.graphics.Image.getBounds(Image.java:666) at org.eclipse.swt.custom.CTabFolderRenderer.computeSize(CTabFolderRenderer.java:246) at org.eclipse.e4.ui.workbench.renderers.swt.CTabRendering.computeSize(CTabRendering.java:149) at org.eclipse.swt.custom.CTabFolder.setItemSize(CTabFolder.java:2668) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3637) at org.eclipse.swt.custom.CTabFolder.updateItems(CTabFolder.java:3574) at org.eclipse.swt.custom.CTabFolder.destroyItem(CTabFolder.java:737) at org.eclipse.swt.custom.CTabItem.dispose(CTabItem.java:126) at org.eclipse.e4.ui.workbench.renderers.swt.StackRenderer.hideChild(StackRenderer.java:799) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:774) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:789) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:789) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:789) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeRemoveGui(PartRenderingEngine.java:796) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$3(PartRenderingEngine.java:763) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$8.run(PartRenderingEngine.java:758) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.removeGui(PartRenderingEngine.java:743) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.stop(PartRenderingEngine.java:1069) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:1115) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:995) at org.eclipse.ui.internal.Workbench$16.run(Workbench.java:1176) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1174) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1147) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:1155) at org.eclipse.ui.internal.WorkbenchWindow.access$16(WorkbenchWindow.java:1135) at org.eclipse.ui.internal.WorkbenchWindow$10.run(WorkbenchWindow.java:1184) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1182) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:1194) at org.eclipse.ui.internal.WorkbenchWindow$6.close(WorkbenchWindow.java:441) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer$10.shellClosed(WBWRenderer.java:562) 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.Display.sendEvent(Display.java:4130) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1457) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1480) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1465) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:599) at org.eclipse.swt.widgets.Shell.windowShouldClose(Shell.java:2284) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5467) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Widget.callSuper(Widget.java:220) at org.eclipse.swt.widgets.Widget.windowSendEvent(Widget.java:2101) at org.eclipse.swt.widgets.Shell.windowSendEvent(Shell.java:2280) at org.eclipse.swt.widgets.Display.windowProc(Display.java:5533) at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method) at org.eclipse.swt.widgets.Display.applicationSendEvent(Display.java:4978) at org.eclipse.swt.widgets.Display.applicationProc(Display.java:5127) at org.eclipse.swt.internal.cocoa.OS.objc_msgSend(Native Method) at org.eclipse.swt.internal.cocoa.NSApplication.sendEvent(NSApplication.java:128) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3612) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1017) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:911) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:86) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:582) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:537) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:124) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
|
2012-05-17 05:47:08
| 1,337,250,000 |
verified fixed
|
40ffef1
| 1,337,370,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/minmax/TrimStack.java
|
Eclipse_Platform_UI
|
307 | 374,444 |
Bug 374444 [Compatibility] WTP Source Editor "Source" context menu missing items
| null |
2012-03-15 16:52:27
| 1,331,840,000 |
resolved fixed
|
c92d78c
| 1,337,290,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/modeling/MenuService.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditorSite.java
|
Eclipse_Platform_UI
|
308 | 379,717 |
Bug 379717 All views lost after a New Window
|
I20120515-2200 (but also present in earlier builds) Repro steps: 1. Start up a new workspace 2. Close the Welcome page 3. Try minimizing (and restoring) the Package Explorer => works 4. Window > New Window 5. Close the old window 6. Try minimizing the Package Explorer => fails (nothing minimized to the trim and no way to bring it back ever, except full restart)
|
2012-05-16 13:06:47
| 1,337,190,000 |
verified fixed
|
dccd06a
| 1,337,200,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
|
Eclipse_Platform_UI
|
309 | 378,616 |
Bug 378616 New trim-toolbars for minimizes stacks don't fit CSS styling colors scheme
| null |
2012-05-07 02:20:53
| 1,336,370,000 |
resolved fixed
|
23317ba
| 1,337,110,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java
|
Eclipse_Platform_UI
|
310 | 379,573 |
Bug 379573 [Compatibility] Global selection in evaluation context is no longer a java.util.Collection
| null |
2012-05-15 11:54:06
| 1,337,100,000 |
resolved fixed
|
ef309f8
| 1,337,110,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/workbench/modeling/ExpressionContext.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/EvaluationService.java
|
Eclipse_Platform_UI
|
311 | 379,299 |
Bug 379299 Detached Windows cause IllegalArgumentExceptions when switching to a new perspective
|
There's a 'layout' call in the PartRenderingEngine's visibilityHandler that tries to keep the layout up to date when an element's 'visible' flag changes. To reproduce start fresh drag a stack out to have a detached window open some other perspective When we're hiding the detached window we get the following trace: java.lang.IllegalArgumentException: Widget has the wrong parent at org.eclipse.swt.SWT.error(SWT.java:4342) at org.eclipse.swt.SWT.error(SWT.java:4276) at org.eclipse.swt.SWT.error(SWT.java:4247) at org.eclipse.swt.widgets.Widget.error(Widget.java:468) at org.eclipse.swt.widgets.Composite.layout(Composite.java:773) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$2.handleEvent(PartRenderingEngine.java:190) at org.eclipse.e4.ui.services.internal.events.UIEventHandler$1.run(UIEventHandler.java:41) ... The issue is that we can't use the standard layout logic here since the DW *is* a shell.
|
2012-05-11 14:49:40
| 1,336,760,000 |
verified fixed
|
e57a57f
| 1,336,760,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
312 | 375,741 |
Bug 375741 intermittent problems with context menu visibility etc.
| null |
2012-03-30 11:55:36
| 1,333,120,000 |
verified fixed
|
b43745b
| 1,336,760,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/SelectionService.java
|
Eclipse_Platform_UI
|
313 | 374,121 |
Bug 374121 AIOOBE when restoring a window with no perspectives
|
We're working on a platform-style product where the base level product has no default perspective. We've noticed 2 exceptions like the following on subsequent startups. In this case, we're trying to render the following control: org.eclipse.e4.ui.model.application.ui.menu.impl.ToolControlImpl@57125f92 (elementId: org.eclipse.ui.StatusLine, tags: [stretch], contributorURI: null) (widget: null, renderer: org.eclipse.e4.ui.workbench.renderers.swt.ToolControlRenderer@4bc78066, toBeRendered: true, onTop: false, visible: true, containerData: null, accessibilityPhrase: null) (contributionURI: bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim, object: org.eclipse.ui.internal.StandardTrim@16becf68) The tool control object is created, but line 82 of org.eclipse.ui.internal.StandardTrim does not actually create the status line widget as the context doesn't have a corresponding IWorkbenchWindow. !ENTRY org.eclipse.e4.ui.workbench.swt 4 2 2012-03-13 13:34:00.012 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.e4.ui.workbench.swt". !STACK 0 java.lang.ArrayIndexOutOfBoundsException: -1 at org.eclipse.e4.ui.workbench.renderers.swt.ToolControlRenderer.createWidget(ToolControlRenderer.java:71) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createWidget(PartRenderingEngine.java:882) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:616) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:718) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:689) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:683) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:668) at org.eclipse.e4.ui.workbench.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:59) at org.eclipse.e4.ui.workbench.renderers.swt.TrimBarRenderer.processContents(TrimBarRenderer.java:154) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:628) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$6.run(PartRenderingEngine.java:505) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:490) at org.eclipse.e4.ui.workbench.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:647) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:628) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.safeCreateGui(PartRenderingEngine.java:718) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.access$2(PartRenderingEngine.java:689) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$7.run(PartRenderingEngine.java:683) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.createGui(PartRenderingEngine.java:668) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:954) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine.run(PartRenderingEngine.java:909) at org.eclipse.e4.ui.internal.workbench.E4Workbench.createAndRunUI(E4Workbench.java:85) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:580) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:535) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.lgc.ds.rcp.DSApplication.start(DSApplication.java:35) 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:353) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180) 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:629) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:584) at org.eclipse.equinox.launcher.Main.run(Main.java:1438) at org.eclipse.equinox.launcher.Main.main(Main.java:1414)
|
2012-03-13 13:57:02
| 1,331,660,000 |
verified fixed
|
bf34877
| 1,336,750,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolControlRenderer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java
|
Eclipse_Platform_UI
|
314 | 378,992 |
Bug 378992 "Failed to map binding" written to console for certain custom key bindings
|
4.2 M7 - new workspace - bind command "Copy from Right to Left" to Ctrl+Alt+Shift+Left and "Copy from Left to Right" to Ctrl+Alt+Shift+Right. - restart => The following is printed to the console (but not written to the log): Failed to map binding: org.eclipse.e4.ui.model.application.commands.impl.KeyBindingImpl@186ed7a (elementId: null, tags: [type:user], contributorURI: null) (keySequence: Ctrl+Alt+Shift+Left) Failed to map binding: org.eclipse.e4.ui.model.application.commands.impl.KeyBindingImpl@150f0a7 (elementId: null, tags: [type:user], contributorURI: null) (keySequence: Ctrl+Alt+Shift+Right) Despite these messages, the key bindings do work in compare editors.
|
2012-05-09 10:44:04
| 1,336,570,000 |
verified fixed
|
a9da816
| 1,336,670,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/BindingService.java
|
Eclipse_Platform_UI
|
315 | 378,921 |
Bug 378921 Incorrect drag and drop behavior.
|
Build Identifier: I20120503-1800 When I try to split the shared area horizontally it splits vertically. After that, if I close one of the tabs the shared area is shrunk to half its size. See attached video. Reproducible: Always Steps to Reproduce: See the attached video.
|
2012-05-08 19:58:02
| 1,336,520,000 |
verified fixed
|
ae7e568
| 1,336,660,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/ModelServiceImpl.java
|
Eclipse_Platform_UI
|
316 | 377,854 |
Bug 377854 [About] About Features Dialog's Info Area does not scroll when message is long
| null |
2012-04-27 02:20:42
| 1,335,510,000 |
verified fixed
|
d605188
| 1,336,590,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java
|
Eclipse_Platform_UI
|
317 | 378,731 |
Bug 378731 [DnD] Feedback overlay is clipped when dragging in detached windows
|
The overlay shell should *not* adopt the size/position of the top-level shell but rather the shell that the overlay is supplying feedback for...
|
2012-05-07 15:38:48
| 1,336,420,000 |
verified fixed
|
a15c449
| 1,336,500,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/SplitDropAgent.java
|
Eclipse_Platform_UI
|
318 | 378,504 |
Bug 378504 [DnD] if a drag operation fails due to an exception no other drags can be started
|
Found this when another app too over while I was dragging, causing an exception... We have to make sure that the guard boolean 'dragging' is set to false within a finally block....
|
2012-05-04 11:10:22
| 1,336,140,000 |
verified fixed
|
fda10e6
| 1,336,410,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/DnDManager.java
|
Eclipse_Platform_UI
|
319 | 377,963 |
Bug 377963 Restarting brings emacs scheme keybindings back
|
I started up a clean workspace inner. Create a plugin project with one of the examples, then navigate around an open java editor. I switched to the emacs scheme on Preferences>General>Keys, and then CTRL+A moves the the beginning of the line, and CTRL+K deletes the line (with a popup) and F9 is undo. I switched back to the default key scheme. Now CTRL+A selects all and CTRL+Z is undo. If I restart and start moving around, CTRL+A moves to the beginning of the line again, and CTRL+Z is moving the editor up and down. PW
|
2012-04-27 15:08:57
| 1,335,550,000 |
resolved fixed
|
38f63f6
| 1,336,390,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/util/BindingProcessingAddon.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/keys/BindingService.java
|
Eclipse_Platform_UI
|
320 | 378,330 |
Bug 378330 Closing a perspective first creates all parts
|
I20120502-1800. Closing a perspective first creates all not yet realized parts. This makes no sense and is a regression compared to 3.8.
|
2012-05-03 04:42:44
| 1,336,030,000 |
verified fixed
|
5a8bcce
| 1,336,080,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/ui/internal/workbench/PartServiceImpl.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
|
Eclipse_Platform_UI
|
321 | 378,114 |
Bug 378114 REGRESSION: partHidden not fired on perspective close and reset (was: NPE in JavadocView after resetting perspective)
|
- 4.2M7 test build: I20120429-1800 I encountered this problem during normal usage. The steps below may seem slightly un-normal, but they are the simplest means I've found for reproducing the problem consistently. - start with a typical Java perspective - close the Declaration and Problems views at the bottom so that just the Javadoc view is left in that group - Window -> Reset Perspective - close the Declaration view again - the following is written to the Error Log, and starts happening repeatedly in response to almost anything you try to do org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:4361) at org.eclipse.swt.SWT.error(SWT.java:4276) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:138) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4144) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3761) at org.eclipse.e4.ui.internal.workbench.swt.PartRenderingEngine$9.run(PartRenderingEngine.java:1017) ... <snip> ... Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.infoviews.JavadocView.doSetInput(JavadocView.java:1041) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView.doSetInput(AbstractInfoView.java:679) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView.access$2(AbstractInfoView.java:678) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView$2$1.run(AbstractInfoView.java:643) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:135) ... 23 more
|
2012-04-30 15:34:23
| 1,335,810,000 |
verified fixed
|
f7f8292
| 1,336,070,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java
|
Eclipse_Platform_UI
|
322 | 378,332 |
Bug 378332 Toggle Full Screen command should work with the fullscreen button in title bar
|
Eclipse 4.2 I20120502-1800 The Toggle Full Screen command doesn't seem to work in combination with the Full Screen button in the title bar. This happens both when trying to enter and exit fullscreen mode. Steps to reproduce: 1. In the IDE, click on the fullscreen button on title bar to enter fullscreen mode. 2. Click on the Toggle Full Screen menu item or press Cmd+Ctrl+F to return to normal mode. This doesn't work. 3. Clicking on the menu item again works. It also happens when trying to enter fullscreen mode: 1. Click on Toggle Full Screen menu item to enter fullscreen mode. 2. exit fullscreen mode using the exit fullscreen button on the right of the menu bar. 3. Now try to enter fullscreen mode again using menu item or Cmd+Ctrl+F shortcut. This doesn't work. 4. Trying again using menuitem or the shortcut works. I tried this with Mail and Xcode and it works there.
|
2012-05-03 04:58:51
| 1,336,040,000 |
verified fixed
|
01e77a9
| 1,336,060,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/src/org/eclipse/e4/ui/workbench/renderers/swt/cocoa/CocoaUIHandler.java bundles/org.eclipse.e4.ui.workbench.renderers.swt.cocoa/src/org/eclipse/e4/ui/workbench/renderers/swt/cocoa/FullscreenWindowHandler.java
|
Eclipse_Platform_UI
|
323 | 378,109 |
Bug 378109 dragging a view writes "Cross Boundary" to stdout
|
- 4.2M7 test build: I20120429-1800 - observed on Linux and HPUX, presumably happens on all platforms - start with a typical Java perspective open, no editors open - begin dragging the Problems view from the bottom up into the editor area - green rectangles showing the different drop zones are shown in the editor area - drop the dragged view into the bottom zone, and "Cross Boundary" will be written to stdout (I assume this is a debug string that was accidentally released)
|
2012-04-30 15:09:01
| 1,335,810,000 |
verified fixed
|
17c050b
| 1,335,970,000 |
bundles/org.eclipse.e4.ui.workbench.addons.swt/src/org/eclipse/e4/ui/workbench/addons/dndaddon/SplitDropAgent.java
|
Eclipse_Platform_UI
|
324 | 378,138 |
Bug 378138 'Reset Perspective...' must not dispose and reopen parts that remain in the perspective
|
4.2-I20120429-1800. 'Reset Perspective...' must not dispose and reopen parts as this destroys the existing state of the view. If a part will still be visible after resetting the perspective then it should not be closed/disposed and reopened, but simply placed as defined by the perspective layout. This used to work as expected in 3.x.
|
2012-05-01 02:40:15
| 1,335,850,000 |
verified fixed
|
19d81d6
| 1,335,970,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/LazyStackRenderer.java
|
Eclipse_Platform_UI
|
325 | 378,034 |
Bug 378034 CSSRenderingUtils NPEs on widgets with no CSS element
| null |
2012-04-29 17:54:08
| 1,335,740,000 |
verified fixed
|
2ecca05
| 1,335,740,000 |
bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java
|
Eclipse_Platform_UI
|
326 | 378,029 |
Bug 378029 Simplify widget-data accesses for CSS information
|
The CSS WidgetElement class provides several convenience methods for getting and setting CSS information for a widget or display. The codebase should be changed to use these convenience methods.
|
2012-04-29 09:26:36
| 1,335,710,000 |
verified fixed
|
baf6b3f
| 1,335,720,000 |
bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/CSSRenderingUtils.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/PartRenderingEngine.java examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/DetailComposite.java examples/org.eclipse.e4.ui.examples.css.rcp/src/org/eclipse/e4/ui/examples/css/rcp/NavigationView.java examples/org.eclipse.e4.ui.examples.css.rcp/src/org/eclipse/e4/ui/examples/css/rcp/View.java
|
Eclipse_Platform_UI
|
327 | 359,117 |
Bug 359117 [Compatibility] Separators don't show up for .ecorediagram files
| null |
2011-09-27 13:08:56
| 1,317,140,000 |
verified fixed
|
9cba02d
| 1,335,550,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/ui/workbench/renderers/swt/ToolBarManagerRenderer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CoolBarToTrimManager.java
|
Eclipse_Platform_UI
|
328 | 306,623 |
Bug 306623 Application.e4xmi should be default for "applicationXMI"
|
Currently if I do not provide a value in my product configuration for "applicationXMI" I receive: org.eclipse.core.runtime.AssertionFailedException: null argument:applicationXMI argument missing I suggest to add the default that if no parameter "applicationXMI" is specified that the application tries to use "Application.e4xmi".
|
2010-03-21 02:23:37
| 1,269,150,000 |
closed fixed
|
ea91555
| 1,335,550,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
|
Eclipse_Platform_UI
|
329 | 377,150 |
Bug 377150 REGRESSION: Key binding indication in menus unreliable
|
4.2-N20120418-2000. Some key bindings sometimes appear in the menu items and sometimes not.
|
2012-04-19 03:58:37
| 1,334,820,000 |
verified fixed
|
e7896b0
| 1,335,540,000 |
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java
|
Eclipse_Platform_UI
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.