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
1,330
274,198
Bug 274198 [CommonNavigator] Intermittent test failure deleting a file during tearDown
testMissingProjectsInWorkingSet Error Problems encountered while deleting resources. org.eclipse.core.internal.resources.ResourceException: Problems encountered while deleting resources. at org.eclipse.core.internal.resources.Resource.delete(Resource.java:729) at org.eclipse.core.internal.resources.Project.delete(Project.java:317) at org.eclipse.ui.tests.navigator.NavigatorTestBase.clearAll(NavigatorTestBase.java:194) at org.eclipse.ui.tests.navigator.NavigatorTestBase.tearDown(NavigatorTestBase.java:185) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:195) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3855) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3476) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:138) at org.eclipse.test.UITestApplication.run(UITestApplication.java:60) at org.eclipse.test.UITestApplication.start(UITestApplication.java:210) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:32) 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:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) at org.eclipse.equinox.launcher.Main.main(Main.java:1287) at org.eclipse.core.launcher.Main.main(Main.java:34) Contains: Could not delete '/p2/f1'. Contains: Could not delete 'C:\buildtest\I20090428-0100\eclipse-testing\test-eclipse\eclipse\navigator_sniff_folder\p2'.
2009-04-28 18:27:41
1,240,960,000
verified fixed
350e147
1,271,720,000
tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/FileUtil.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java
Eclipse_Platform_UI
1,331
309,698
Bug 309698 Disposing parent context does not cause objects injected by a child context to be destroyed
The test below fails. static class Target { int pc = 0; int pd = 0; @Inject @Named("o") Object o; @PostConstruct void pc() { pc++; } @PreDestroy void pd() { pd++; } } public void testV() { IEclipseContext context = EclipseContextFactory.create(); IEclipseContext child = EclipseContextFactory.create(context, null); child.set("o", new Object()); Target target = (Target) ContextInjectionFactory.make(Target.class, child); assertEquals(1, target.pc); ((IDisposable) context).dispose(); assertEquals(1, target.pd); }
2010-04-19 11:47:07
1,271,690,000
resolved fixed
11bfdca
1,271,710,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SWTPartRenderer.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java
Eclipse_Platform_UI
1,332
299,760
Bug 299760 ContextInjectionFactory's invoke method (with no default return value) seems to ignore superclass methods
null
2010-01-15 08:35:51
1,263,560,000
resolved fixed
a593d12
1,271,690,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityEditor.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityView.java
Eclipse_Platform_UI
1,333
309,665
Bug 309665 Don't eagerly set element ids in the resource
The EMF resource should not be setting a model element's element id given that that is a string that a developer should be making use of.
2010-04-19 09:09:44
1,271,680,000
resolved fixed
1281fc1
1,271,680,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/E4XMIResource.java
Eclipse_Platform_UI
1,334
309,563
Bug 309563 All packages (o.e.e4.ui.model.workbench.edit) of ItemProviders need to be exported
Before, there is only one ApplicationItemProviderAdapterFactory used by e4 Visual Designer. Now with the new model in multiple packages, we need to export all the corresponding ItemProvider.
2010-04-16 21:45:32
1,271,470,000
closed fixed
83170ce
1,271,470,000
bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/commands/provider/HandlerItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/AddonItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ContributionItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/ui/basic/provider/InputPartItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/ui/basic/provider/PartItemProvider.java
Eclipse_Platform_UI
1,335
305,571
Bug 305571 [Forms] Links in forms editors keep getting bolder and bolder
I20100309-0100 I expect that this has already been reported, but I can't find a dupe. If there isn't a dupe I can provide a screenshot and additional details, but it's easy to reproduce. Only noticed recently, but in forms editors (manifest editor, dynamic help, etc), links that get bolded/highlighted when hovering over them, remain that way after the hover ends. By waving the mouse over the links the font gets darker and bolder.
2010-03-11 14:06:10
1,268,330,000
resolved fixed
ccba653
1,271,450,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TextHyperlinkSegment.java
Eclipse_Platform_UI
1,336
309,253
Bug 309253 [Compatibility] Title bar not updated with current perspective name
Eclipse 4.0 SDK, 20100413-1143, Win7 The title bar for the workbench window shows the name of the first perspective shown, and doesn't update as the perspective changes. Not a huge deal but given there is no perspective switcher (and thus no indicator of current perspective) it is easy to lose track of where you are if you are switching around a lot.
2010-04-14 21:28:34
1,271,290,000
resolved fixed
26e86a1
1,271,440,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,337
293,841
Bug 293841 [FieldAssist] NumLock keyDown event should not close the proposal popup [with patch]
User-Agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.0.14) Gecko/2009082707 Firefox/3.0.14 Build Identifier: 20090920-1017 I have a Text widget with a ContentProposalAdapter attached to it. The user shall input some numeric value, but on this platform (Windows 2003 Terminal Server with rdestop unix client, if that matters) there are additional keyDown events generated for num pad input. These events almost immediately close the proposal popup after user input. Input with the normal "digit keys" works as expected. The ContentProposalAdapter.ControlProposalPopup.TargetControlListener class currently does check for keyDown events on the SWT.CAPS_LOCK and SWT.MOD{1-4} keys and does ignore them. Any other key forces the popup to close. I suggest to also NOT close the popup on SWT.NUM_LOCK keyDown events. Reproducible: Always
2009-10-30 19:13:41
1,256,940,000
verified fixed
25cc9e7
1,271,360,000
bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java
Eclipse_Platform_UI
1,338
212,894
Bug 212894 [About] AboutDialog doesn't properly handle invalid plugin certificates
Build: 3.4 M4. Steps: - Alter the signature of a bundle in the platform (add some random chars to ECLIPSE.RSA file of some bundle). - Open Help > About - Click Plugin Details - An "internal error" dialog pops up complaining of an IllegalStateException, and there is some spew in the log. When a plugin has a bad signature, it should just have an appropriate icon in the "Signed" column. It shouldn't open an error dialog or write errors to the log. !ENTRY org.eclipse.core.jobs 4 2 2007-12-13 10:43:53.359 !MESSAGE An internal error occurred during: "org.apache.commons.logging.source". !STACK 0 java.lang.IllegalStateException at org.eclipse.ui.internal.about.AboutBundleData.isSigned(AboutBundleData.java:112) at org.eclipse.ui.internal.dialogs.AboutPluginsDialog$2.run(AboutPluginsDialog.java:105) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) Caused by: java.io.IOException: Not a valid PKCS#7 file at org.eclipse.osgi.internal.verifier.PKCS7Processor.<init>(PKCS7Processor.java:131) at org.eclipse.osgi.internal.verifier.SignedBundleFile.processSigner(SignedBundleFile.java:520) at org.eclipse.osgi.internal.verifier.SignedBundleFile.setBundleFile(SignedBundleFile.java:472) at org.eclipse.osgi.internal.verifier.SignedBundleHook.getVerifier(SignedBundleHook.java:165) at org.eclipse.osgi.internal.verifier.SignedBundleHook.getVerifier(SignedBundleHook.java:177) at org.eclipse.ui.internal.about.AboutBundleData.isSigned(AboutBundleData.java:107) ... 2 more
2007-12-13 11:02:29
1,197,560,000
verified fixed
70a9603
1,271,360,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutBundleData.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/BundleSigningInfo.java
Eclipse_Platform_UI
1,339
301,196
Bug 301196 [FieldAssist] ContentAssistCommandAdapter should provide an activation expression when activating the command handler
by providing an activation expression Eclipse can correctly resolve conflicts should the occur. applies to org.eclipse.ui.fieldassist.ContentAssistCommandAdapter see @org.eclipse.ui.internal.handlers.HandlerAuthority.resolveConflicts(String, SortedSet, MultiStatus)@ for details on how handler conflicts are resolved. The handler should only be active when the control has focus: bc. private void activateHandler() { if (activeHandler == null) { activeHandler = handlerService.activateHandler(commandId, proposalHandler,new ActiveFocusControlExpression(getControl())); } } the focus control expression would look something like this: bc.. public class ActiveFocusControlExpression extends Expression { private final Control focusControl; public ActiveFocusControlExpression(Control control) { focusControl = control; } @Override public void collectExpressionInfo(ExpressionInfo info) { info.markDefaultVariableAccessed(); // give it a very high priority info.addVariableNameAccess(ISources.ACTIVE_SHELL_NAME); info.addVariableNameAccess(ISources.ACTIVE_WORKBENCH_WINDOW_NAME); } @Override public EvaluationResult evaluate(IEvaluationContext context) throws CoreException { if (Display.getCurrent() != null && focusControl.isFocusControl()) { return EvaluationResult.TRUE; } return EvaluationResult.FALSE; } }
2010-01-28 19:34:25
1,264,730,000
verified fixed
135d6d4
1,271,350,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/fieldassist/ContentAssistCommandAdapter.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/fieldassist/TextContentAssistCommandAdapterTest.java
Eclipse_Platform_UI
1,340
304,716
Bug 304716 [UX] [Progress] Show Eclipse startup progress in the Eclipse icon on the Windows 7 Task Bar
null
2010-03-04 13:21:33
1,267,730,000
verified fixed
e69c587
1,271,300,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
1,341
160,242
Bug 160242 [Workbench] use of BundleListener in AbstractUIPlugin
null
2006-10-09 15:18:27
1,160,420,000
verified fixed
792cbbf
1,271,270,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/plugin/AbstractUIPlugin.java
Eclipse_Platform_UI
1,342
148,993
Bug 148993 [Workbench] Wrong Javadoc for IDE.getEditorDescriptor
3.2 and latest 3.3 build The Javadoc of IDE.getEditorDescriptor(...) does not mention that as a very last resort it tries to find the editor descriptor for the default text editor i.e. IDEWorkbenchPlugin.DEFAULT_TEXT_EDITOR_ID (org.eclipse.ui.DefaultTextEditor)
2006-06-28 09:32:59
1,151,500,000
verified fixed
c43866f
1,271,270,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDE.java
Eclipse_Platform_UI
1,343
203,640
Bug 203640 [EditorMgmt] IDE.openEditor(IWorkbenchPage, IMarker, boolean) should look for an editor that matches both editor input and editor ID if o.e.ui.ide.IDE.EDITOR_ID_ATTR is set on the marker
null
2007-09-17 15:07:49
1,190,060,000
verified fixed
16ea8f5
1,271,270,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDE.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java
Eclipse_Platform_UI
1,344
301,820
Bug 301820 Resource Filters UI is not intuitive
Build ID: Eclipse SDK 3.6m5 As a user, I want to hide all backup and object files from my Eclipse resource tree, such that I can concentrate on what's relevant. I want to do this with a simple UI that I can understand intuitively. The resource filters are a great new concept, and the UI is extremely powerful. But I am afraid that as of Eclipse 3.6m5, the most common, simple tasks are too hard to do. I'm sorry for bringing this up late -- Only now, after this feature is sure to go into our commercial product, I have a much stronger interest in making the feature really usable beyond being a preview of technology. Here is a concrete suggestion: 1.) For grouping filters (AND,OR,NOT), have a separate dialog ("Add Group...") rather than managing this through the single "Add..." dialog. Rationale: - I expect that groups will be needed much less than "normal" filters - Groups are conceptionally different than "normal" filters 2.) For search patterns, use the same concept as used in many other places at Eclipse, like the Search dialog for instance: - Use glob patterns by default - Have a checkbox for "Regular Expression" beside. - For glob patterns, allow listing multiple patterns separated by , This is the same as "search" does for file names. Users will intuitively understand and appreciate this metaphor used elsewhere. Plus, I guess that the most common use for filters is hiding stuff like *.o, *.obj, *~, *.bak --> This most common use case should be most easy to use. My 3rd and 4th suggestions are less important: 3.) Instead of the "Include" and "Exclude" icons, which not really fit too well into the iconset used elsewhere at Eclipse, have a checkbox for "hide matching" beside the filter patterns to flip the meaning of the patterns from "include only" to "hide specified". 4.) Instead of the "Inheritable" option, call this option (X) Apply recursively to folder structure and put it below the filter patterns to enter. Again, sorry for bringing this up late, but I am very confident that these suggestions would greatly improve usability of the feature for casual or beginning users.
2010-02-04 07:56:36
1,265,290,000
verified fixed
e5790b9
1,271,260,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceFilterGroup.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/FileInfoAttributesMatcher.java
Eclipse_Platform_UI
1,345
309,103
Bug 309103 [EditorMgmt] Numpad enter not recognized as a confirmation key in editor drop-down
1. Open an editor. 2. Ctrl+E. 3. Hit the numpad's enter key. 4. Nothing happens.
2010-04-14 07:49:09
1,271,250,000
verified fixed
a25082d
1,271,250,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/presentations/AbstractTableInformationControl.java
Eclipse_Platform_UI
1,346
61,038
Bug 61038 [EditorMgmt] drop-down: up/down should wrap around
When pressing down at the bottom of the list you could wrap-around to the first item in the list. I understand that home/end are already supported, but this is the behaviour supported in code assist and I got used to it.
2004-05-05 09:15:40
1,083,760,000
verified fixed
2ca8984
1,271,250,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/presentations/AbstractTableInformationControl.java
Eclipse_Platform_UI
1,347
309,041
Bug 309041 [compatibility] NPE importing preferences
Eclipse 4.0 build #40 1) File > Import > Preferences 2) Pick a preference file exported by 3.6 build 3) Finish java.lang.NullPointerException at org.eclipse.ui.internal.PlatformUIPreferenceListener.preferenceChange(PlatformUIPreferenceListener.java:155) at org.eclipse.core.internal.preferences.EclipsePreferences$2.run(EclipsePreferences.java:753) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42) at org.eclipse.core.internal.preferences.EclipsePreferences.firePreferenceEvent(EclipsePreferences.java:756) at org.eclipse.core.internal.preferences.EclipsePreferences.put(EclipsePreferences.java:769) at org.eclipse.core.internal.preferences.PreferencesService.copyFromTo(PreferencesService.java:357) at org.eclipse.core.internal.preferences.PreferencesService$6.visit(PreferencesService.java:709) at org.eclipse.core.internal.preferences.EclipsePreferences.accept(EclipsePreferences.java:105) at org.eclipse.core.internal.preferences.EclipsePreferences.accept(EclipsePreferences.java:109) at org.eclipse.core.internal.preferences.EclipsePreferences.accept(EclipsePreferences.java:109) at org.eclipse.core.internal.preferences.PreferencesService.internalApply(PreferencesService.java:713) at org.eclipse.core.internal.preferences.PreferencesService.applyPreferences(PreferencesService.java:93) at org.eclipse.ui.internal.wizards.preferences.WizardPreferencesImportPage1.transfer(WizardPreferencesImportPage1.java:185) at org.eclipse.ui.internal.wizards.preferences.WizardPreferencesPage.finish(WizardPreferencesPage.java:619) at org.eclipse.ui.internal.wizards.preferences.PreferencesImportWizard.performFinish(PreferencesImportWizard.java:88) at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:810) at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:429)
2010-04-13 15:53:22
1,271,190,000
resolved fixed
55f4351
1,271,190,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PlatformUIPreferenceListener.java
Eclipse_Platform_UI
1,348
194,988
Bug 194988 [Workbench] Create Browser says it accepts null but it fails with null pointer if you do.
/** * Creates the new web browser instance. This is a simplified method that * creates the instance using default values for style, name and tooltip * parameters. The method can be used to quickly open the URL by calling * <code>createBrowser(id).openURL(url)</code>. * <p> * * @return the browser instance that can be used to open the URL. Clients * intending to reuse the instance for all the URLs should cache the * instance and call IWebBrowser#openURL() on it. Clients are * responsible for closing the browser instance when not needed. * @exception PartInitException * if the operation failed for some reason */ IWebBrowser createBrowser(String browserId) throws PartInitException; The createBrowser method has the following documentation: * @param browserId * if an instance of a browser with the same id is already * opened, it will be returned instead of creating a new one. * Passing <code>null</code> will create a new instance with a * generated id every time. However whenever I pass null I get a null pointer exception on the create call. This was in code that worked in 3.2. Once I changed the code to pass in the url as the browser id it started working fine.
2007-06-29 20:32:41
1,183,160,000
verified fixed
0470fda
1,271,180,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/browser/DefaultWorkbenchBrowserSupport.java
Eclipse_Platform_UI
1,349
286,716
Bug 286716 [Workbench] IWorkbenchPreferenceConstants.PROMPT_WHEN_SAVEABLE_STILL_OPEN has malformed javadocs
null
2009-08-15 14:43:07
1,250,360,000
verified fixed
40c7719
1,271,180,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java
Eclipse_Platform_UI
1,350
297,256
Bug 297256 [Perspectives] Dialog font not honoured completely in the 'Perspectives' preference page
Build id: I20091208-0100 1. Window > Preferences 2. General > Appearance > Colors and Fonts 3. Basic > Dialog Font > Edit... 4. Increase the font size a bit, I went from Tahoma 8 to Tahoma 12. 5. Click 'OK' twice to dismiss the font dialog and the preference dialog. 6. Window > Preferences 7. General > Perspectives 8. In the 'Fast Views' group, the 'Open a new view:' label is still using the default dialog font.
2009-12-08 14:15:51
1,260,300,000
verified fixed
070ffd1
1,271,180,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PerspectivesPreferencePage.java
Eclipse_Platform_UI
1,351
293,466
Bug 293466 [Dialogs] CPD's 'Shortcuts' tab doesn't honour dialog font settings
1. Window > Preferences > General > Appearance > Colors and Fonts 2. Basic > Dialog Font 3. Click the 'Edit...' button and increase the font size a bit. 4. Click 'OK' to close the dialog. 5. Window > Customize Perspective... 6. All the tabs honour the font size change except for the 'Shortcuts' tab.
2009-10-27 12:23:16
1,256,660,000
verified fixed
45c997a
1,271,180,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java
Eclipse_Platform_UI
1,352
304,046
Bug 304046 [EditorMgmt] Editor selection dialog throws SWTException after double-clicking
In our legacy product (so normal Eclipse SDK + e4 on top) use the PkgExplorer>context menu>Open With>Other... and then picking the first Ecore Reflective Sample Editor will correctly open the editor, but also generates this log error: eclipse.buildId=I20100226-0820 java.fullversion=JRE 1.6.0 IBM J9 2.4 Linux x86-32 jvmxi3260sr7-20091214_49398 (JIT enabled, AOT enabled) J9VM - 20091214_049398 JIT - r9_20091123_13891 GC - 20091111_AA BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 -data /opt/pwebster/workspaces/e4-demo Error Fri Feb 26 10:33:16 EST 2010 Unhandled event loop exception org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4083) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.SWT.error(SWT.java:3969) at org.eclipse.swt.widgets.Widget.error(Widget.java:459) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:396) at org.eclipse.swt.widgets.Table.getSelection(Table.java:1614) at org.eclipse.jface.viewers.TableViewer.getItemAt(TableViewer.java:192) at org.eclipse.jface.viewers.ColumnViewer.getViewerRow(ColumnViewer.java:138) at org.eclipse.jface.viewers.ColumnViewer.getCell(ColumnViewer.java:121) at org.eclipse.jface.viewers.ColumnViewer.handleMouseDown(ColumnViewer.java:661) at org.eclipse.jface.viewers.ColumnViewer.access$0(ColumnViewer.java:660) at org.eclipse.jface.viewers.ColumnViewer$1.mouseDoubleClick(ColumnViewer.java:94) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:80) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1223) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3531) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3150) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.actions.OpenWithMenu$3.handleEvent(OpenWithMenu.java:225) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1223) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3531) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3150) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2408) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2372) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:501) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:494) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:195) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363)
2010-02-26 10:35:33
1,267,200,000
verified fixed
74c30b2
1,271,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/EditorSelectionDialog.java
Eclipse_Platform_UI
1,353
293,448
Bug 293448 [Perspectives] Removing new/view/perspective shortcuts hides menu items forever until the perspective is reset
Build id: I20091027-0100 1. Window > Customize Perspective... > Shortcuts 2. Select 'Open Perspective' in the submenus combo control. 3. Turn them all off. 4. Select 'Show View' in the submenus combo control. 5. Turn them all off. 6. Click 'OK'. 7. 'Window > Open Perspective' is now missing. 'Window > Show View' is also missing. I'd expect them to still be there for the 'Other...' option, or is this the intended behaviour? 8. Window > Customize Perspective... > Shortcuts 9. Select 'Open Perspective' in the submenus combo control. 10. Turn some stuff back on. 11. Select 'Show View' in the submenus combo control. 12. Turn some stuff back on. 13. Both 'Window > Open Perspective' and 'Window > Show View' is _still_ missing! o.O
2009-10-27 10:37:18
1,256,650,000
verified fixed
4f7fe30
1,271,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java
Eclipse_Platform_UI
1,354
294,117
Bug 294117 [Commands] Ctrl+C, Ctrl+X, Ctrl+V (Cut, Copy, Paste) shortcuts don't work over SWT_AWT Bridge
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Build Identifier: Version: 3.5.0 Build id: I20090611-1540 In Eclipse 3.5, the Ctrl+C, Ctrl+X, Ctrl+V (Cut, Copy, Paste) shortcuts no longer work in all Swing JTextComponents in a SWT_AWT Bridge frame. In summary the problem is due to the fact that since Eclipse 3.5 was introduced, the JTextComponent (hosted via the bridge Frame) no longer receives the normal sequence of KeyEvents dispatched from the AWT EventQueue when a cut/copy/paste key shortcut occurs. More specifically, the KEY_PRESSED KeyEvent that is normally included in the KeyEvent sequence when one of these CTRL+C, CTRL+X, CTRL+V shortcut operations occurs is now !!!MISSING!!!. The the missing KEY_PRESSED event causes the key shortcut action to fail the Swing KeyEvent processing as illustrated below: 1) The JComponent.processKeyEvent(e) receives the KEY_RELEASED event for the CTRL+V without receiving a prior matching KEY_PRESSED event. 2) The method assigns the flag "shouldProcessKey" by calling method KeyboardState.shouldProcess(e). 3) The KeyboardState.shouldProcess(KeyEvent e) method first checks a registry to determine if a matching KEY_PRESSED event for CTRL+V has been encountered. If not, it assigns the "shouldProcessKey" to "false". 4) Since "shouldProcessKey==false", JComponent.processKeyEvent(e) does not call processKeyBindings(...) for the event like it normally would and IGNORES the event. Reproducible: Always Steps to Reproduce: I am attaching eclipse plugin KeyEvents_1.0.0.200911021616.jar to demonstrate this problem. The plugin contains the Sun Swing Sample KeyEventDemo and a simple eclipse view (KeyEventDemoView) to embed the swing KeyEventDemo panel in a Composite via the SWT_AWT bridge. 1) Include the plugin in your target platform. 2) Launch eclipse. 3) Click Window | Show View | Other...; the "Show View" dialog is displayed. 4) Select "Key Events Category" | "KeyEvent Demo View"; the "KeyEvent Demo View" is displayed in the workbench. 5) Within the workbench go to any SWT view and copy (Ctrl-C) some text into your clipboard. 6) Now go to the "KeyEvent Demo View" and click mouse in JTextField at the top of the panel to give keyboard focus; the caret is flashing in the textfield. 7) Type the Ctrl+V key shortcut in the textfield. Expected Behavior: The contents of the clipboard SHOULD be copied to the textfield. The following list of key events SHOULD appear in the list box below it (as they would in a pure Swing app): KEY PRESSED: key code = 17 (Ctrl) modifiers = 128 (Ctrl) KEY PRESSED: key code = 86 (V) modifiers = 128 (Ctrl) KEY TYPED: key character = CHAR_UNDEFINED modifiers = 128 (Ctrl) KEY RELEASED: key code = 86 (V) modifiers = 128 (Ctrl) KEY RELEASED: key code = 17 (Ctrl) modifiers = 0 (no modifiers) Actual Behavior: The contents of the clipboard ARE NOT copied to the textfield. The following list of key events appears in the list box (NOTICE that the KEY_PRESSED for the Ctrl+V event is !!MISSING!!): KEY PRESSED: key code = 17 (Ctrl) modifiers = 128 (Ctrl) KEY RELEASED: key code = 86 (V) modifiers = 128 (Ctrl) KEY RELEASED: key code = 17 (Ctrl) modifiers = 0 (no modifiers) Additional Info: If you extract the KeyEventDemo.java source (remove the package name from the source), then compile and run it (yes, it already has main() method inside) using jre 1.6.0, then you will see the KeyEventDemo appear as a pure swing app. Try to use the Ctrl+v paste shortcut in the text field as before and you will now see it work as it should. Check the list box and see the proper sequence of KeyEvents fired.
2009-11-03 15:37:08
1,257,280,000
verified fixed
193fa02
1,271,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/WidgetMethodHandler.java
Eclipse_Platform_UI
1,355
273,436
Bug 273436 [Dialogs] InputDialogTest and TitleAreaDialogTest needs to close its opened dialogs when finished
Currently, the two dialogs that are opened by the two test methods stays up for the entire run of the JFace test suite. If another test were to invoke something like display.getShells(), they would get two more shells than what they expected. The tests should close the dialog when the tests are done.
2009-04-23 10:11:40
1,240,500,000
verified fixed
e82208e
1,271,170,000
tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/dialogs/InputDialogTest.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/dialogs/TitleAreaDialogTest.java
Eclipse_Platform_UI
1,356
307,858
Bug 307858 [Markers] UIUpdateJob may throw SWTException if control has been disposed
The runInUIThread(IProgressMonitor) method looks something like this... try { /* ... */ if (viewer.getControl().isDisposed()) { return Status.CANCEL_STATUS; } /* ... */ } finally { viewer.getTree().setRedraw(true); /* ... */ } The problem here is that the 'finally' block gets executed if the control is disposed. Since the control has been disposed, the setRedraw(boolean) invocation throws an SWTException. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4083) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.SWT.error(SWT.java:3969) at org.eclipse.swt.widgets.Widget.error(Widget.java:467) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) at org.eclipse.swt.widgets.Tree.setRedraw(Tree.java:4734) at org.eclipse.ui.internal.views.markers.UIUpdateJob.runInUIThread(UIUpdateJob.java:120) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:95) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
2010-04-01 08:23:24
1,270,120,000
resolved fixed
6876fcc
1,271,170,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/UIUpdateJob.java
Eclipse_Platform_UI
1,357
286,830
Bug 286830 [QuickAccess] Should be able to tell Views with same name apart
null
2009-08-17 12:41:49
1,250,530,000
verified fixed
353d586
1,271,160,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ActionElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/CommandElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/EditorElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PreferenceElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ViewElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/WizardElement.java
Eclipse_Platform_UI
1,358
308,975
Bug 308975 Can't recover from 'invalid' path variable
If a path variable is 'corrupted', the user is unable to recover. Steps to reproduce: 1) new path variable: PROJ_UP = ${PROJECT_LOC}/../ 2) You end up with this in your .project file: <variableList> <variable> <name>PROJ_UP</name> <value>$%7BPARENT-1-PROJECT_LOC%7D</value> </variable> </variableList> In e4 this was a more human readable: <variableList> <variable> <name>PROJ_UP</name> <value>${PARENT-1-PROJECT_LOC}</value> </variable> </variableList> If you change the .project file to contain the above, the Linked Resource property page is no longer accessible, and there's no indication of what went wrong. java.lang.IllegalArgumentException at java.net.URI.create(URI.java:842) at org.eclipse.core.internal.resources.ProjectPathVariableManager.getURIValue(ProjectPathVariableManager.java:123) at org.eclipse.ui.internal.ide.dialogs.PathVariablesGroup.initTemporaryState(PathVariablesGroup.java:542) at org.eclipse.ui.internal.ide.dialogs.PathVariablesGroup.setResource(PathVariablesGroup.java:727) at org.eclipse.ui.internal.ide.dialogs.ProjectLinkedResourcePage.createContents(ProjectLinkedResourcePage.java:66) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:232) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1501) at org.eclipse.jface.preference.PreferenceDialog$14.run(PreferenceDialog.java:1258) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
2010-04-13 05:55:21
1,271,150,000
resolved fixed
e361edf
1,271,160,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariablesGroup.java
Eclipse_Platform_UI
1,359
305,585
Bug 305585 [FastView] FastViewManager assumes all IViewReferences are ViewReferences
Build Identifier: I20080617-2000 In our product, we have views that are not shown in a perspective. We've created our own view reference class that implements IViewReference. When dynamically removing a view extension point for one of these views, the IPerspectiveListener2 perspectiveChanged event is triggered and our view part reference is passed in. While what we are doing may be unconventional, the FastViewManager has an IPerspectiveListener2 listener that assumes that any IViewReference is a ViewReference, resulting in a ClassCastException in our case. Can this be modified such that the check is more appropriate: Inside FastViewManager.handlePerspectiveChange(): if (changeId.equals(IWorkbenchPage.CHANGE_VIEW_HIDE)) { if (partRef instanceof ViewReference) { ViewReference ref = (ViewReference) partRef; instead of: if (changeId.equals(IWorkbenchPage.CHANGE_VIEW_HIDE)) { if (partRef instanceof IViewReference) { ViewReference ref = (ViewReference) partRef; Thanks for your attention on this. Reproducible: Always
2010-03-11 15:02:35
1,268,340,000
verified fixed
9e8d719
1,271,100,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FastViewManager.java
Eclipse_Platform_UI
1,360
308,894
Bug 308894 [EditorMgmt] NPE in PlatformUIPreferenceListener#preferenceChange(..) when changing file editor associations
null
2010-04-12 13:07:33
1,271,090,000
verified fixed
df47d4a
1,271,090,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PlatformUIPreferenceListener.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/IEditorRegistryTest.java
Eclipse_Platform_UI
1,361
300,226
Bug 300226 [EditorMgmt] Create tests for bug 236104
null
2010-01-20 12:34:30
1,264,010,000
verified fixed
5d87f8d
1,271,080,000
tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/IEditorRegistryTest.java
Eclipse_Platform_UI
1,362
303,094
Bug 303094 [EditorMgmt] Save operation does not seem to be closed appropriately in the face of failures
null
2010-02-17 12:14:06
1,266,430,000
verified fixed
1c0d2d9
1,271,080,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveableHelper.java
Eclipse_Platform_UI
1,363
297,184
Bug 297184 [Wizards] [resource filters] New file wizard should not allow to create files that are excluded by resource filter
Build : I20091207-1800 If the user creates a new file from the "File | New..." wizard that is actually filtered out by its parent resource filters, it will show up just after creation, but it will disappear from the resource tree when the user manually refreshes the view. 1) The PE should either not show this file, and hide it from the view if it is filtered, or show a different icon for such files. 2) The wizard should show a warning that the created file is already filtered.
2009-12-08 07:23:02
1,260,270,000
verified fixed
c42547e
1,271,070,000
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java
Eclipse_Platform_UI
1,364
308,675
Bug 308675 [Compatibility] Active workbench window not set on restart
1. Start the compatibility layer. 2. Shut it down. 3. Start it back up. 4. Open a file. 5. Ctrl+W. org.eclipse.core.commands.ExecutionException: No activeWorkbenchWindow found while executing org.eclipse.ui.file.close at org.eclipse.ui.handlers.HandlerUtil.noVariableFound(HandlerUtil.java:40) at org.eclipse.ui.handlers.HandlerUtil.getVariableChecked(HandlerUtil.java:89) at org.eclipse.ui.handlers.HandlerUtil.getActiveWorkbenchWindowChecked(HandlerUtil.java:210) at org.eclipse.ui.internal.CloseEditorHandler.execute(CloseEditorHandler.java:45) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:52) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.internal.di.MethodRequestor.callMethod(MethodRequestor.java:61) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:35) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:220) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:195) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:133) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:134) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:260) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:456) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:506) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:339) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:285) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:74) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
2010-04-09 13:29:58
1,270,830,000
resolved fixed
6f4d138
1,270,830,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
1,365
308,577
Bug 308577 e4 applications don't get focus
Upon startup, e4 based applications (including the 4.0 SDK) don't receive focus. Bogdan mentioned that this has to do something with the splash screen.
2010-04-08 19:07:17
1,270,770,000
resolved fixed
f87e04f
1,270,830,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java
Eclipse_Platform_UI
1,366
308,671
Bug 308671 [Compatibility] Cannot quit from 'File' menu
1. File > Exit 2. The workspace is saved but the workbench is not brought down.
2010-04-09 13:00:50
1,270,830,000
resolved fixed
37e7897
1,270,830,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/QuitHandler.java
Eclipse_Platform_UI
1,367
308,656
Bug 308656 [Compatibility] Cannot execute 'Close' keybinding
1. Open a file. 2. Ctrl+W. 3. An exception is logged. 4. File > Close 5. The editor closes properly. org.eclipse.core.commands.ExecutionException: No activeEditor found while executing org.eclipse.ui.file.close at org.eclipse.ui.handlers.HandlerUtil.noVariableFound(HandlerUtil.java:40) at org.eclipse.ui.handlers.HandlerUtil.getVariableChecked(HandlerUtil.java:89) at org.eclipse.ui.handlers.HandlerUtil.getActiveEditorChecked(HandlerUtil.java:245) at org.eclipse.ui.internal.CloseEditorHandler.execute(CloseEditorHandler.java:46) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:52) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.internal.di.MethodRequestor.callMethod(MethodRequestor.java:61) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:35) at org.eclipse.e4.core.internal.di.InjectorImpl.invokeUsingClass(InjectorImpl.java:220) at org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:195) at org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:133) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:134) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.executeCommand(KeyBindingDispatcher.java:260) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:456) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:506) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:339) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:285) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:74) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
2010-04-09 10:44:47
1,270,820,000
resolved fixed
355303f
1,270,830,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,368
308,544
Bug 308544 [compatibility] Workbench#close never called
Build: 32 When exiting the Eclipse 4.0 SDK, Workbench#close is never invoked. A major conseqence is that the workbench advisor pre/post close methods are never called, and therefore the IWorkspace is never saved. On subsequent starts the workspace needs to perform a crash recovery which makes the startup slower.
2010-04-08 15:03:53
1,270,750,000
resolved fixed
91edbac
1,270,820,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PerspectiveRegistry.java
Eclipse_Platform_UI
1,369
308,592
Bug 308592 [Compatibility] MPEPs with text editors are in a crippled state
This includes SSE XML editors and PDE editors. The 'Source' tabs will not get rendered. Workaround is to just fallback to the standard text editor. This was introduced by the null return in KeyBindingService's getKeyBindingService(IWorkbenchSite) method. java.lang.NullPointerException at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationCodeTrigger.setScopes(AbstractTextEditor.java:856) at org.eclipse.ui.texteditor.AbstractTextEditor.initializeActivationCodeTrigger(AbstractTextEditor.java:3633) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl(AbstractTextEditor.java:3390) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl(StatusTextEditor.java:53) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl(AbstractDecoratedTextEditor.java:429) at org.eclipse.wst.sse.ui.StructuredTextEditor.createPartControl(StructuredTextEditor.java:1449) at org.eclipse.ui.part.MultiPageEditorPart.addPage(MultiPageEditorPart.java:243) at org.eclipse.ui.part.MultiPageEditorPart.addPage(MultiPageEditorPart.java:213) at org.eclipse.wst.xml.ui.internal.tabletree.XMLMultiPageEditorPart.addSourcePage(XMLMultiPageEditorPart.java:493) at org.eclipse.wst.xml.ui.internal.tabletree.XMLMultiPageEditorPart.createPages(XMLMultiPageEditorPart.java:710) at org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:358) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.createPartControl(CompatibilityPart.java:102) at org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor.createPartControl(CompatibilityEditor.java:52) at org.eclipse.ui.internal.e4.compatibility.CompatibilityPart.create(CompatibilityPart.java:158) 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.callMethod(MethodRequestor.java:61) at org.eclipse.e4.core.internal.di.MethodRequestor.execute(MethodRequestor.java:35) at org.eclipse.e4.core.internal.di.InjectorImpl.processPostConstruct(InjectorImpl.java:741) at org.eclipse.e4.core.internal.di.InjectorImpl.processPostConstruct(InjectorImpl.java:717) at org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:93) at org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:294) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:245) at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:237) at org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:167) at org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:184) at org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory.create(ReflectionContributionFactory.java:160) at org.eclipse.e4.workbench.ui.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:60)
2010-04-08 21:48:03
1,270,780,000
resolved fixed
588ae99
1,270,820,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/KeyBindingService.java
Eclipse_Platform_UI
1,370
308,629
Bug 308629 [Compatibility] NPE thrown when restarting Eclipse
It's trying to add bindings to the application and failing. java.lang.NullPointerException at org.eclipse.emf.common.util.AbstractEList.getNonDuplicates(AbstractEList.java:1167) at org.eclipse.emf.common.util.AbstractEList.addAll(AbstractEList.java:372) at org.eclipse.e4.ui.model.application.impl.ApplicationImpl.eSet(ApplicationImpl.java:417) at org.eclipse.emf.ecore.impl.BasicEObjectImpl.eSet(BasicEObjectImpl.java:1081) at org.eclipse.e4.workbench.ui.internal.EMFModelDeltaSet.apply(EMFModelDeltaSet.java:31) at org.eclipse.e4.workbench.ui.internal.ModelReconcilingService.applyDeltas(ModelReconcilingService.java:54) at org.eclipse.e4.workbench.ui.internal.ModelReconcilingService.applyDeltas(ModelReconcilingService.java:36) at org.eclipse.e4.workbench.ui.internal.ResourceHandler.loadMostRecentModel(ResourceHandler.java:173) at org.eclipse.e4.ui.workbench.swt.internal.E4Application.loadApplicationModel(E4Application.java:194) at org.eclipse.e4.ui.workbench.swt.internal.E4Application.createE4Workbench(E4Application.java:129)
2010-04-09 07:57:13
1,270,810,000
resolved fixed
cf6a1b8
1,270,820,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/modeling/ModelReconciler.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerBindingContainerTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerBindingTableTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/xml/XMLModelReconcilerBindingTableTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/xml/XMLModelReconcilerTestSuite.java
Eclipse_Platform_UI
1,371
308,584
Bug 308584 [Compatibility] DND throws InjectionException
Only happens on the first call. Caused by an NPE in the static createCompatibilitySelection(Object) method in SelectionService. Injection failed for the object "org.eclipse.e4.workbench.ui.internal.SelectionServiceImpl@5fea3". Unable to execute "org.eclipse.e4.core.internal.di.MethodRequestor@968df8" org.eclipse.e4.core.di.InjectionException at org.eclipse.e4.core.internal.di.InjectorImpl.logError(InjectorImpl.java:849) at org.eclipse.e4.core.internal.di.InjectorImpl.update(InjectorImpl.java:362) at org.eclipse.e4.core.internal.contexts.ContextObjectSupplier$ContextInjectionListener.notify(ContextObjectSupplier.java:66) at org.eclipse.e4.core.internal.contexts.EclipseContext$TrackableComputationExt.notify(EclipseContext.java:169) at org.eclipse.e4.core.internal.contexts.EclipseContext.processScheduled(EclipseContext.java:483) at org.eclipse.e4.core.internal.contexts.EclipseContext.set(EclipseContext.java:505) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.activate(PartServiceImpl.java:326) at org.eclipse.e4.ui.workbench.swt.internal.AbstractPartRenderer.activate(AbstractPartRenderer.java:136) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer$ActivationJob.run(StackRenderer.java:88) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:4014) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3633) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:553)
2010-04-08 20:29:03
1,270,770,000
resolved fixed
b3a4e9c
1,270,770,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/SelectionService.java
Eclipse_Platform_UI
1,372
308,583
Bug 308583 IPageLayout ratios are being ignored
Because of this, the perspectives don't come up as expected and you have to resize the sashes in every perspective.
2010-04-08 19:47:04
1,270,770,000
resolved fixed
e8b4817
1,270,770,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java
Eclipse_Platform_UI
1,373
308,492
Bug 308492 [Compatibility] NPE thrown when closing SSE editors
This can be reproduced with the SSE XML editor and the e4 workbench designer. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:4083) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.SWT.error(SWT.java:3969) at org.eclipse.swt.widgets.Widget.error(Widget.java:467) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:340) at org.eclipse.swt.widgets.Widget.getData(Widget.java:524) at org.eclipse.ui.part.MultiPageEditorPart.getEditor(MultiPageEditorPart.java:609) at org.eclipse.ui.part.MultiPageEditorPart.getActiveEditor(MultiPageEditorPart.java:533) at org.eclipse.ui.part.MultiPageEditorPart.getAdapter(MultiPageEditorPart.java:1172) at org.eclipse.e4.xwt.tools.ui.designer.core.editor.Designer.getAdapter(Designer.java:858) at org.eclipse.wst.sse.ui.internal.StructuredTextViewer.setErrorMessage(StructuredTextViewer.java:834) at org.eclipse.wst.sse.ui.internal.StructuredTextViewer.unconfigure(StructuredTextViewer.java:867) at org.eclipse.jface.text.source.SourceViewer.handleDispose(SourceViewer.java:745) at org.eclipse.jface.text.source.projection.ProjectionViewer.handleDispose(ProjectionViewer.java:1363) at org.eclipse.wst.sse.ui.internal.StructuredTextViewer.handleDispose(StructuredTextViewer.java:671) at org.eclipse.jface.text.TextViewer$2.widgetDisposed(TextViewer.java:1798) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:117) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1059) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:773) at org.eclipse.swt.custom.StyledText.handleDispose(StyledText.java:5816) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5642) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1055) at org.eclipse.swt.widgets.Widget.release(Widget.java:807) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:167) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:872) at org.eclipse.swt.widgets.Widget.release(Widget.java:810) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:445) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.disposeWidget(SWTPartRenderer.java:119) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.removeGui(PartRenderingEngine.java:405) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$1.handleEvent(PartRenderingEngine.java:95) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:188) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:198) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:139) 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:76) at org.eclipse.e4.workbench.ui.internal.UIEventPublisher.notifyChanged(UIEventPublisher.java:60) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:380) at org.eclipse.e4.ui.model.application.impl.PartImpl.setToBeRendered(PartImpl.java:508) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.hidePart(PartServiceImpl.java:517) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer$6.close(StackRenderer.java:448) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1578)
2010-04-08 11:13:20
1,270,740,000
resolved fixed
bdd1637
1,270,740,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
1,374
308,394
Bug 308394 [Compatibility] ViewReferences are created for hidden parts when the workbench is restarted
1. Window > Navigation > Next View 2. See a bunch of views. 3. Close Eclipse. 4. Restart it. 5. Window > Navigation > Next View 6. See a lot more views in the list now.
2010-04-07 16:08:46
1,270,670,000
resolved fixed
d26738d
1,270,730,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/ModeledFolderLayout.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPlaceholderFolderLayout.java
Eclipse_Platform_UI
1,375
308,382
Bug 308382 [Compatibility] ViewReferences are not destroyed when the view is closed
1. Window > Navigation > Next View 2. See a bunch of views. 3. Close a view. 4. Window > Navigation > Next View 5. The closed view is still there.
2010-04-07 14:43:41
1,270,670,000
resolved fixed
b8ba60b
1,270,670,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,376
304,239
Bug 304239 move each core application service to its own package
In M4, some services have their own package, others are provided in core.services. Boris and I talked about moving each service (API) to its own package. Reasons are: - aids with discoverability - helps separate application services from other public API in the core.services package (such as IDisposable, JSONObject) - helps to emphasize that services can be setup and consumed individually - will make it easier to move to separate bundles if that is ever needed This means moving Adapter, Logger, IStatusHandler to their own packages.
2010-03-01 13:02:05
1,267,470,000
resolved fixed
50910b9
1,270,670,000
bundles/org.eclipse.e4.core.commands/src/org/eclipse/e4/core/commands/internal/CommandServiceCreationFunction.java bundles/org.eclipse.e4.core.commands/src/org/eclipse/e4/core/commands/internal/HandlerServiceCreationFunction.java bundles/org.eclipse.e4.core.commands/src/org/eclipse/e4/core/commands/internal/HandlerServiceImpl.java bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingServiceCreationFunction.java bundles/org.eclipse.e4.ui.css.swt/src/org/eclipse/e4/ui/css/swt/properties/custom/CSSPropertyTabRendererSWTHandler.java bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/events/EventBrokerFactory.java bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ContributionUtils.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ContributedPartRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolItemRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/StatusReporterCreationFunction.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/WorkbenchStatusReporter.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/Activator.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/JobExecutor.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ModelReconcilingService.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ModelServiceCreationFunction.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceCreationFunction.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ReflectionContributionFactory.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/SelectionServiceCreationFunction.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/WorkbenchLogger.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/ExifTable.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Thumbnails.java examples/org.eclipse.e4.examples.services/src/org/eclipse/e4/examples/services/snippets/SnippetSetup.java examples/org.eclipse.e4.examples.services/src/org/eclipse/e4/examples/services/snippets/adapter/AdapterSnippet.java examples/org.eclipse.e4.examples.services/src/org/eclipse/e4/examples/services/snippets/work/SimpleWorkSnippet.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/ContextContentsTest.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/application/HeadlessContextPresentationEngine.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessStartupTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/RenderingTestCase.java
Eclipse_Platform_UI
1,377
308,220
Bug 308220 Test failures in EPartServiceTest, ESelectionServiceTest
null
2010-04-06 11:23:32
1,270,570,000
resolved fixed
d7428e6
1,270,580,000
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/Bug308220Test.java
Eclipse_Platform_UI
1,378
308,212
Bug 308212 ESS should not "reach out" for context in the RAT
We should query for the context from the event instead of accessing it via 'final'.
2010-04-06 10:32:23
1,270,560,000
resolved fixed
d5cf9dd
1,270,560,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/SelectionServiceImpl.java
Eclipse_Platform_UI
1,379
307,427
Bug 307427 ContextTest's testTwoContextsBottom() is failing
Fails individually and as a part of the suite run. junit.framework.AssertionFailedError: expected:<1> but was:<0> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:283) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:195) at junit.framework.Assert.assertEquals(Assert.java:201) at org.eclipse.e4.ui.tests.workbench.ContextTest.testTwoContextsBottom(ContextTest.java:92) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at junit.framework.TestCase.runTest(TestCase.java:168) at junit.framework.TestCase.runBare(TestCase.java:134) at junit.framework.TestResult$1.protect(TestResult.java:110) at junit.framework.TestResult.runProtected(TestResult.java:128) at junit.framework.TestResult.run(TestResult.java:113) at junit.framework.TestCase.run(TestCase.java:124) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.CoreTestApplication.run(CoreTestApplication.java:23) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:587) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:198) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:618) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1406) at org.eclipse.equinox.launcher.Main.main(Main.java:1382)
2010-03-29 13:20:47
1,269,880,000
resolved fixed
fcc4545
1,270,560,000
tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/ContextTest.java
Eclipse_Platform_UI
1,380
294,750
Bug 294750 [Contributions] Allow a handler to update MUIItems
A handler for a command should be able to update text or tooltips on UIItems that point to the command. ex: in 3.x we have this pattern. 1) each item registers as a UIElement for a command 2) the command service can handle a request to refresh all UIElements for a command 3) changing handlers causes a refresh request 4) the client code can also request a refresh We need a similar story for e4 that would allow the active handler to update the appropriate items. It is a little more complicated in e4 as depending on your location (part of the hierarchy you are requesting from) you will potentially have different handlers applicable to different MUIItems. PW
2009-11-10 10:29:41
1,257,870,000
resolved fixed
2861bf8
1,270,480,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolItemRenderer.java
Eclipse_Platform_UI
1,381
305,707
Bug 305707 add a way to contribute object providers to dependency injection
null
2010-03-12 12:04:06
1,268,410,000
resolved fixed
e62a494
1,270,150,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/SelectionServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/Bug299755Test.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessStartupTest.java
Eclipse_Platform_UI
1,382
307,923
Bug 307923 [Compatibility] Workbench's saveAllEditors(boolean) method is implemented incorrectly
1. Select an Ant file. 2. Context menu > Run As > Ant Build 3. Nothing happens. There's a launching code path that'll try to save all editors before launching. We're returning false incorrectly here.
2010-04-01 14:33:48
1,270,150,000
resolved fixed
56ee847
1,270,150,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
1,383
307,901
Bug 307901 EPartService does not short circuit saveAll(boolean) if 'false' and/or no save handler is provided
The code looks like so... boolean success = true; for (MPart dirtyPart : dirtyParts) { if (!savePart(dirtyPart, false)) { success = false; } } return success; ...the first time a save fails, we should return false immediately.
2010-04-01 12:48:49
1,270,140,000
resolved fixed
6da239c
1,270,140,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java
Eclipse_Platform_UI
1,384
307,747
Bug 307747 EPartService doesn't render new parts
1. Have a part in a stack, it is the selected part. 2. Show another part in that stack using PartState.CREATE or PartState.VISIBLE. 3. The part should've been rendered. It is not.
2010-03-31 11:12:57
1,270,050,000
resolved fixed
c25b51a
1,270,050,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/EPartServiceTest.java
Eclipse_Platform_UI
1,385
307,485
Bug 307485 Passing in parameter PRESENTATION_URI_ARG at startup
null
2010-03-30 03:56:07
1,269,940,000
resolved fixed
b78b753
1,270,050,000
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java
Eclipse_Platform_UI
1,386
307,730
Bug 307730 [Compatibility] Workbench window selection not available to 3.x handlers
HandlerUtil's getCurrentSelection(ExecutionEvent) returns null. 1. Select a project. 2. Context menu > Export... 3. General > File System > Next 4. The project is not preselected.
2010-03-31 09:27:42
1,270,040,000
resolved fixed
c16d341
1,270,050,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/SelectionService.java
Eclipse_Platform_UI
1,387
307,570
Bug 307570 [Compatibility] WorkbenchPage's hidePart(MPart, boolean, boolean) should not ignore e4 parts
Right now, we return 'false' if the client implementation is not a CompatibilityPart. The workbench should be capable of closing e4 parts.
2010-03-30 14:45:56
1,269,970,000
resolved fixed
8751ea3
1,270,040,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/WorkbenchPartReference.java
Eclipse_Platform_UI
1,388
307,577
Bug 307577 [UI] Allow the CSS engine access to the 'tag' info
We need to define multiple CSS 'class' names to allow clients to style against tag information (such as "View", "ViewStack"...). We will also add the model element's type ("MWindow", "MPart"...) This will allow for example style sheets that have all stacks use a particular tab style but also allow it to differentiate the style of a "PartStack" from that of an "EditorStack".
2010-03-30 15:47:42
1,269,980,000
resolved fixed
90dbdf6
1,269,980,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SWTPartRenderer.java
Eclipse_Platform_UI
1,389
307,163
Bug 307163 DBCS3.6: Resource Filter UI didn't restore grouped filters
Build Identifier: I20100313-1044 When reopening Resource Filters property editor after adding several filters under either of top-level AND/OR/NOT group, none of children in such top-level group filter is shown while settings are actually persisted in .project. Reproducible: Always Steps to Reproduce: 1. Create a project and add some files and folders. 2. Add resource filters to the project or the folder just created, and filters are grouped by AND/OR/NOT. 3. Ensure filters are active for exiting resources under the project. 4. Reopen "Resource Fileters" property editor 5. Verify the filters added in Step 2 are restored. Problem: None of child filters under top-level AND/OR/NOT group is shown Expected: All nested child filters under top-level AND/OR/NOT group are totally shown. Note that persistent entries for all filters are actually existing in a .project file.
2010-03-26 05:14:26
1,269,590,000
closed fixed
a61d13f
1,269,980,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceFilterGroup.java
Eclipse_Platform_UI
1,390
307,158
Bug 307158 DBCS3.6: DBCS names are broken in Web Browser preference after Eclipse restart.
Build Identifier: I20100313-1044 DBCS names are broken in Web Browser preference after Eclipse restart. The broken DBCS must be the characters out of the default code page, such as U+20B9F, U+309A against Shift-JIS. This bug happens only under Windows 7, XP and so on. It does not happen under SLES11(linux). Reproducible: Always Steps to Reproduce: 1.Select [Window] -> [Preferences] -> [General] -> [Web Browser] 2.Click [New] and type U+20B9F U+30AB U+309A in the name field 3.Type a browser location and click OK 4.You may see the correct name (in figure1.jpg attached in this report.) 5.Restart Eclipse. 6.Select [Window] -> [Preferences] -> [General] -> [Web Browser] 7.You may see the broken name (in figure2.jpg attached in this report.)
2010-03-26 02:29:54
1,269,590,000
verified fixed
45a5f88
1,269,880,000
bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/BrowserManager.java
Eclipse_Platform_UI
1,391
307,398
Bug 307398 [Perspectives] 'Show In' targets not added to existing perspectives
null
2010-03-29 10:42:04
1,269,870,000
verified fixed
02e1199
1,269,880,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Perspective.java
Eclipse_Platform_UI
1,392
307,389
Bug 307389 [Compatibility] NPE thrown in IWorkbench's getWorkbenchWindows()
I hit this once in a while and John did also. We have no reproducible steps. I'll safe up the code. Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.Workbench.getWorkbenchWindows(Workbench.java:1173) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider.install(ASTProvider.java:248) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider.<init>(ASTProvider.java:236) at org.eclipse.jdt.internal.ui.JavaPlugin.getASTProvider(JavaPlugin.java:693) at org.eclipse.jdt.internal.ui.JavaPlugin.start(JavaPlugin.java:376) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:783) at java.security.AccessController.doPrivileged(AccessController.java:251) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:774) ... 48 more
2010-03-29 09:21:54
1,269,870,000
resolved fixed
826e566
1,269,870,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
1,393
307,193
Bug 307193 [Compatibility] Exception thrown when opening 'EMF Javascript Scrapbook' view
java.lang.NullPointerException at org.eclipse.emf.common.util.URI.createURIWithCache(URI.java:669) at org.eclipse.emf.common.util.URI.createURI(URI.java:541) at org.eclipse.ui.internal.registry.ViewDescriptor.getImageDescriptor(ViewDescriptor.java:99) at org.eclipse.ui.internal.ViewReference.<init>(ViewReference.java:36) at org.eclipse.ui.internal.Workbench.createViewReference(Workbench.java:1554) at org.eclipse.ui.internal.Workbench.setReference(Workbench.java:1538) at org.eclipse.ui.internal.Workbench.access$16(Workbench.java:1532) at org.eclipse.ui.internal.Workbench$27.handleEvent(Workbench.java:1485) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:188) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:198) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:139) 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:74) at org.eclipse.e4.workbench.ui.internal.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:280) at org.eclipse.e4.ui.model.application.impl.PartImpl.setContext(PartImpl.java:421) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:287) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showTab(StackRenderer.java:450) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:66) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:188) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:198) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:139) 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:74) at org.eclipse.e4.workbench.ui.internal.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:280) at org.eclipse.e4.ui.model.application.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:135) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.activate(PartServiceImpl.java:309) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.showNewPart(PartServiceImpl.java:492) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.showPart(PartServiceImpl.java:517) at org.eclipse.e4.internal.ide.application.ShowViewHandler.execute(ShowViewHandler.java:31) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.services.internal.context.InjectionMethod.callMethod(InjectionMethod.java:104) at org.eclipse.e4.core.services.internal.context.InjectionMethod.invoke(InjectionMethod.java:65) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invokeUsingClass(InjectorImpl.java:270) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invoke(InjectorImpl.java:255) at org.eclipse.e4.core.services.context.spi.ContextInjectionFactory.invoke(ContextInjectionFactory.java:140) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:132) at org.eclipse.ui.handlers.ShowViewHandler.execute(ShowViewHandler.java:55) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:51) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.services.internal.context.InjectionMethod.callMethod(InjectionMethod.java:104) at org.eclipse.e4.core.services.internal.context.InjectionMethod.invoke(InjectionMethod.java:65) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invokeUsingClass(InjectorImpl.java:270) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invoke(InjectorImpl.java:255) at org.eclipse.e4.core.services.context.spi.ContextInjectionFactory.invoke(ContextInjectionFactory.java:140) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:132) at org.eclipse.e4.workbench.ui.renderers.swt.MenuItemRenderer$5.widgetSelected(MenuItemRenderer.java:257) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4037) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3628) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:560) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:484) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:100) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:527) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:513) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1406) at org.eclipse.equinox.launcher.Main.main(Main.java:1382) Unable to find matching arguments for org.eclipse.ui.internal.e4.compatibility.CompatibilityView java.lang.IllegalArgumentException: Unable to find value for "org.eclipse.ui.internal.ViewReference" at org.eclipse.e4.core.services.internal.context.InjectionAbstract.getValue(InjectionAbstract.java:87) at org.eclipse.e4.core.services.internal.context.InjectionConstructor.processParams(InjectionConstructor.java:64) at org.eclipse.e4.core.services.internal.context.InjectionConstructor.make(InjectionConstructor.java:39) at org.eclipse.e4.core.services.internal.context.InjectorImpl.make(InjectorImpl.java:316) at org.eclipse.e4.core.services.context.spi.ContextInjectionFactory.make(ContextInjectionFactory.java:173) at org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:183) at org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory.create(ReflectionContributionFactory.java:159) at org.eclipse.e4.workbench.ui.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:58) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createWidget(PartRenderingEngine.java:444) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:342) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showTab(StackRenderer.java:450) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer$1.handleEvent(LazyStackRenderer.java:66) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:188) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:198) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:139) 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:74) at org.eclipse.e4.workbench.ui.internal.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:280) at org.eclipse.e4.ui.model.application.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:135) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.activate(PartServiceImpl.java:309) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.showNewPart(PartServiceImpl.java:492) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.showPart(PartServiceImpl.java:517) at org.eclipse.e4.internal.ide.application.ShowViewHandler.execute(ShowViewHandler.java:31) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.services.internal.context.InjectionMethod.callMethod(InjectionMethod.java:104) at org.eclipse.e4.core.services.internal.context.InjectionMethod.invoke(InjectionMethod.java:65) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invokeUsingClass(InjectorImpl.java:270) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invoke(InjectorImpl.java:255) at org.eclipse.e4.core.services.context.spi.ContextInjectionFactory.invoke(ContextInjectionFactory.java:140) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:132) at org.eclipse.ui.handlers.ShowViewHandler.execute(ShowViewHandler.java:55) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:293) at org.eclipse.ui.internal.handlers.E4HandlerProxy.execute(E4HandlerProxy.java:51) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.services.internal.context.InjectionMethod.callMethod(InjectionMethod.java:104) at org.eclipse.e4.core.services.internal.context.InjectionMethod.invoke(InjectionMethod.java:65) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invokeUsingClass(InjectorImpl.java:270) at org.eclipse.e4.core.services.internal.context.InjectorImpl.invoke(InjectorImpl.java:255) at org.eclipse.e4.core.services.context.spi.ContextInjectionFactory.invoke(ContextInjectionFactory.java:140) at org.eclipse.e4.core.commands.internal.HandlerServiceImpl.executeHandler(HandlerServiceImpl.java:132) at org.eclipse.e4.workbench.ui.renderers.swt.MenuItemRenderer$5.widgetSelected(MenuItemRenderer.java:257) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4037) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3628) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:560) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:484) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:100) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:527) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:513) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1406) at org.eclipse.equinox.launcher.Main.main(Main.java:1382)
2010-03-26 10:39:26
1,269,610,000
resolved fixed
8be1a97
1,269,610,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewDescriptor.java
Eclipse_Platform_UI
1,394
307,134
Bug 307134 [Compatibility] Editors cannot be materialized on restart
It seems if an editor is one of the first things to render (leftmost stack, first item), ERs are not being created in time. The fix would most likely be in Workbench's initializeE4Services() method. java.lang.IllegalArgumentException: Unable to find value for "org.eclipse.ui.internal.EditorReference"Unable to find matching arguments for org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor at org.eclipse.e4.core.services.internal.context.InjectionAbstract.getValue(InjectionAbstract.java:87) at org.eclipse.e4.core.services.internal.context.InjectionConstructor.processParams(InjectionConstructor.java:64) at org.eclipse.e4.core.services.internal.context.InjectionConstructor.make(InjectionConstructor.java:39) at org.eclipse.e4.core.services.internal.context.InjectorImpl.make(InjectorImpl.java:316) at org.eclipse.e4.core.services.context.spi.ContextInjectionFactory.make(ContextInjectionFactory.java:173) at org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:183) at org.eclipse.e4.workbench.ui.internal.ReflectionContributionFactory.create(ReflectionContributionFactory.java:159) at org.eclipse.e4.workbench.ui.renderers.swt.ContributedPartRenderer.createWidget(ContributedPartRenderer.java:58) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createWidget(PartRenderingEngine.java:444) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:342) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showTab(StackRenderer.java:450) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:358) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:100) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) at org.eclipse.e4.workbench.ui.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:74) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:358) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:399) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:535) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:484) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:100) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:527) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:513) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1406) at org.eclipse.equinox.launcher.Main.main(Main.java:1382)
2010-03-25 16:21:51
1,269,550,000
resolved fixed
5e3045e
1,269,600,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,395
307,128
Bug 307128 [Compatibility] NPE thrown when rerendering a 3.x view that no longer has tool items
The basic gist of the problem is that a 3.x view's toolbar may be tagged with "LegacyTB" when it's constructed. There is an assumption here that the part's control has the JFace IToolBarManager set in it. However, this is only set if the toolbar actually has items. It may have had items in the beginning but not anymore in the reset. Hence, when the renderer tries to ask the part's control for the ITBM, null is returned. java.lang.NullPointerException at org.eclipse.e4.workbench.ui.renderers.swt.ToolBarRenderer.createWidget(ToolBarRenderer.java:53) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createWidget(PartRenderingEngine.java:444) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:342) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.getToolbar(StackRenderer.java:509) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showTab(StackRenderer.java:466) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:358) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:100) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) at org.eclipse.e4.workbench.ui.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:74) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:358) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:399) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:354) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:404) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:535) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:484) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:100) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:526) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
2010-03-25 15:52:49
1,269,550,000
resolved fixed
9a009fe
1,269,550,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityView.java
Eclipse_Platform_UI
1,396
307,122
Bug 307122 SelectionServiceImpl leaks RATs
SelectionServiceImpl.track adds an IRunAndTrack that is never removed. So for example each time an editor is opened and closed two extra RATs are added to the application context (once for open and once for close).
2010-03-25 15:05:31
1,269,540,000
resolved fixed
03075ca
1,269,540,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/SelectionServiceImpl.java
Eclipse_Platform_UI
1,397
307,074
Bug 307074 [Compatibility] Cannot use open with to a browser
1. Select an HTML file. 2. Context menu > Open With > Other... 3. Select 'Web Browser' from the 'Internal editors' list. 4. Click OK. 5. An internal error occurs. java.lang.NoSuchMethodError: org/eclipse/ui/internal/WorkbenchPage.openEditorFromDescriptor(Lorg/eclipse/ui/IEditorInput;Lorg/eclipse/ui/IEditorDescriptor;ZLorg/eclipse/ui/IMemento;)Lorg/eclipse/ui/IEditorPart; at org.eclipse.ui.actions.OpenWithMenu.openEditor(OpenWithMenu.java:339) at org.eclipse.ui.actions.OpenWithMenu$3.handleEvent(OpenWithMenu.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:4037) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3628) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:560)
2010-03-25 10:58:12
1,269,530,000
resolved fixed
20ff091
1,269,530,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,398
306,738
Bug 306738 Renderer does not synchronize ToolItem selection state with MToolItem
Build: I20100318-2100 I have an app with an MToolBar defining a set of tool items of type "radio". When I select a different tool item, the button states change. Upon quitting the application, however, the change of state is not written to the delta. As a result, when running the application again, the toolbar item states are not what they should be.
2010-03-22 12:37:09
1,269,280,000
resolved fixed
52a9d2f
1,269,460,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolItemRenderer.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MMenuItemTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MToolItemTest.java
Eclipse_Platform_UI
1,399
306,898
Bug 306898 [Compatibility] NPE thrown when bringing up context menu on the MANIFEST.MF editor's form header
java.lang.NullPointerException at org.eclipse.pde.internal.ui.editor.plugin.ManifestEditorContributor.contextMenuAboutToShow(ManifestEditorContributor.java:51) at org.eclipse.pde.internal.ui.editor.PDEFormEditorContributor.contextMenuAboutToShow(PDEFormEditorContributor.java:174) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.contextMenuAboutToShow(PDEFormEditor.java:293) at org.eclipse.pde.internal.ui.editor.PDEFormEditor$1.menuAboutToShow(PDEFormEditor.java:237) at org.eclipse.jface.action.MenuManager.fireAboutToShow(MenuManager.java:338) at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:469) at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:465) at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:491) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:235) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1055) at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:4464) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4167) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1598) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:2032) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4830) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:254) at org.eclipse.swt.widgets.Display.runPopups(Display.java:4078) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3622) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:554)
2010-03-23 21:42:05
1,269,390,000
resolved fixed
7cc1f1e
1,269,450,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,400
306,883
Bug 306883 Accelerators are never shown on MacOS X
Build Identifier: I20100318-2100 I noticed a while back that the main menus in my app no longer showed keystroke accelerators. Turns out that the EBindingServiceImpl's contextSet is always empty. EBindingServiceImpl#setContexIds() is called a few times, but always with an empty set. As a result, EBS.getBestSequenceFor() always returns null and MenuItemRenderer#setItemText() shows nothing. I'm assuming that setContextIds() should be provided something at some point. But I can't seem to find any users of IServiceConstants.ACTIVE_CONTEXTS nor EBundleService.ACTIVE_CONTEXTS nor any other occurrences of "activeContexts". Reproducible: Always
2010-03-23 17:46:52
1,269,380,000
resolved fixed
6558647
1,269,450,000
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java
Eclipse_Platform_UI
1,401
306,938
Bug 306938 [Compatibility] Progress dialog comes up when opening a file
This doesn't happen on 3.x and is rather annoying now that John's performance improvements have made this dialog pretty much obsolete. I believe I implemented a renegade/naive implementation of IRunnableContext methods or something somewhere. Will check what happens on 3.x and compare...
2010-03-24 09:28:21
1,269,440,000
resolved fixed
d9061cf
1,269,440,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
Eclipse_Platform_UI
1,402
306,896
Bug 306896 [Compatibility] IEditorMatchingStrategy processing is unimplemented
Opening a bundle's MANIFEST.MF and plugin.xml file should just spawn one editor instead of two.
2010-03-23 21:33:49
1,269,390,000
resolved fixed
6448cd9
1,269,430,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/CompatibilityEditor.java
Eclipse_Platform_UI
1,403
306,821
Bug 306821 [Compatibility] Status line contributions are not disposed
1. Synchronize a project that has changes. 2. The 'Synchronize' view shows up displaying the changes and the change indicators are displayed in the status line. 3. Close the 'Synchronize' view. 4. The change indicators are still there. 5. Alt+Tab and then Alt+Tab back to Eclipse. 6. SWTExceptions are thrown. org.eclipse.swt.SWTException: Graphic is disposed at org.eclipse.swt.SWT.error(SWT.java:4083) at org.eclipse.swt.SWT.error(SWT.java:3998) at org.eclipse.swt.SWT.error(SWT.java:3969) at org.eclipse.swt.graphics.Image.getBounds(Image.java:1160) at org.eclipse.swt.custom.CLabel.getTotalSize(CLabel.java:262) at org.eclipse.swt.custom.CLabel.onPaint(CLabel.java:407) at org.eclipse.swt.custom.CLabel$1.paintControl(CLabel.java:120) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:217) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1059) at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:1555) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4195) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:341) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4843) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2456) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3626) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:554)
2010-03-23 10:10:16
1,269,350,000
resolved fixed
d86136a
1,269,360,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewSite.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java
Eclipse_Platform_UI
1,404
306,740
Bug 306740 [Compatibility] Closing a dirty editor from 'Switch to Editor' dialog incorrectly recognizes the file as being opened in multiple places
1. Open a file. 2. Make it dirty. 3. Window > Navigate > Switch to Editor... 4. Select the editor and click the 'Close Selected Editors' button. 5. The framework incorrectly flags the file as being opened in multiple places.
2010-03-22 12:42:58
1,269,280,000
resolved fixed
280e962
1,269,280,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
1,405
306,744
Bug 306744 [Compatibility] Editors can no longer be restored across workbench restarts
null
2010-03-22 12:55:53
1,269,280,000
resolved fixed
e9f7245
1,269,280,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java
Eclipse_Platform_UI
1,406
306,719
Bug 306719 Bug 306719 [Compatibility] Active part/editor information not available in the ExecutionEvent
'Window > Navigation > Activate Editor' does not work. Many handlers rely on the active editor so we need this working properly.
2010-03-22 10:33:40
1,269,270,000
resolved fixed
1dcfafc
1,269,270,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,407
306,700
Bug 306700 [Compatibility] 'Next View'/'Previous View' does not include an editor
Right now, it only includes views. The editor also needs to be listed.
2010-03-22 08:10:51
1,269,260,000
resolved fixed
e9f8c83
1,269,260,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CycleViewHandler.java
Eclipse_Platform_UI
1,408
296,456
Bug 296456 [Import/Export] File -> Import filesystem w/cyclical symbolic folder links causes OOME
null
2009-11-30 07:03:33
1,259,580,000
verified fixed
c4926a6
1,269,250,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/filesystem/FileSystemStructureProvider.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardFileSystemResourceImportPage1.java
Eclipse_Platform_UI
1,409
306,545
Bug 306545 The changes in the Saveable Service causes the Save button to disable for our modeling resources
Build Identifier: I20100313-1044 (eclipse version 3.6.0) The code changes in eclipse break our saveable provider functionality. class: org.eclipse.ui.internal.navigator.NavigatorSaveablesService method: createSaveablesProvider changed: calling internalGetContentProvider instead of getContentProvider cause: In previous older build, the return value from getContentProvider() for the contentProvider is UMLNavigatorContentProviderWrapper. But in the new build, the value from internalGetContentProvider() is org.eclipse.ui.internal.navigator.extensions.SafeDelegateTreeContentProvider (wrapper of UMLNavigatorContentProviderWrapper) and it is not an adaptable. ===== new code ===== private SaveablesProvider createSaveablesProvider(NavigatorContentDescriptor descriptor) { NavigatorContentExtension extension = contentService.getExtension(descriptor, true); ITreeContentProvider contentProvider = extension.internalGetContentProvider(); return (SaveablesProvider)AdaptabilityUtility.getAdapter(contentProvider, SaveablesProvider.class); } ===== Old code ===== private SaveablesProvider createSaveablesProvider(NavigatorContentDescriptor descriptor) { NavigatorContentExtension extension = contentService.getExtension(descriptor, true); ITreeContentProvider contentProvider = extension.getContentProvider(); return (SaveablesProvider)AdaptabilityUtility.getAdapter(contentProvider, SaveablesProvider.class); } Reproducible: Always Steps to Reproduce: 1.Create a UML modeling project P1 and a UML model file (such as M.emx) 2.Restart the workspace 3.After the workbench shown up, switch to Modeling Perspective. 4.In the Project Explorer, click the + infront of the project P1 to expand and show it contents. Expect: The ModelerSaveablesProvider is created and added to eclipse's saveablesProviderMap in the org.eclipse.ui.internal.navigator.NavigatorSaveablesService class. Result: The ModelerSaveablesProvider is NOT added to the eclipse's saveablesProviderMap. So, when user selected the model tree item in dirty state, the Save button on the toolbar and main menu bar always disable. Thus, user can not save the dirty model.
2010-03-19 12:09:23
1,269,010,000
verified fixed
4e73e6d
1,269,020,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorSaveablesService.java
Eclipse_Platform_UI
1,410
306,551
Bug 306551 [Compatibility] ViewReferences are being eagerly instantiated
We made a mistake of instantiating VRs for every single MPart without regard as to whether it was being rendered or not. This caused Ctrl+(Shift+)F7 to show every single view that was in the perspective even if it was just a "placeholder".
2010-03-19 12:44:02
1,269,020,000
resolved fixed
3bd232d
1,269,020,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java
Eclipse_Platform_UI
1,411
271,956
Bug 271956 [Forms] SharedHeaderFormEditor should check for null header
The SharedHeaderFormEditor should be coded to handle null header. A null header may happen in some cases: although it is hard for me to pinpoint the exact cases, I did encounter a NullPointerException resulting from the following method: public boolean isDirty() { return headerForm.isDirty() || super.isDirty(); } I believe a simple null check (defaulting to false) would solve this situation.
2009-04-12 01:42:44
1,239,520,000
resolved fixed
9edb371
1,268,940,000
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/editor/SharedHeaderFormEditor.java
Eclipse_Platform_UI
1,412
306,366
Bug 306366 [Model] Allow ModelComponent to contribute KeyBindings to a BindingTable
Currently one can only contribute a complete binding table but is not allowed to contribute a single keybinding.
2010-03-18 09:57:07
1,268,920,000
resolved fixed
10d71ae
1,268,920,000
bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ModelComponentItemProvider.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MApplicationPackage.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MModelComponent.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ApplicationPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ModelComponentImpl.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ModelExtensionProcessor.java
Eclipse_Platform_UI
1,413
306,251
Bug 306251 MContext's properties needs to actually be populated into the context
Need to fix CPR and then add the code in PRE.
2010-03-17 14:33:42
1,268,850,000
resolved fixed
f6f6db7
1,268,920,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ContributedPartRenderer.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java
Eclipse_Platform_UI
1,414
306,231
Bug 306231 The Regular Expression Resource Filter must gracefully handle invalid patterns
null
2010-03-17 12:57:41
1,268,850,000
resolved fixed
58f143e
1,268,860,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceFilterGroup.java
Eclipse_Platform_UI
1,415
306,229
Bug 306229 [Compatibility] NPE thrown when spawning another console
null
2010-03-17 12:40:42
1,268,840,000
resolved fixed
d0909bb
1,268,850,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,416
306,204
Bug 306204 [Compatibility] 'Quick Access' throws NPE
null
2010-03-17 10:38:20
1,268,840,000
resolved fixed
576c664
1,268,840,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewRegistry.java
Eclipse_Platform_UI
1,417
305,542
Bug 305542 [Filters] CompoundFileInfoMatcher#filterTypes should be renamed to #matchers
As in the summary.
2010-03-11 12:08:52
1,268,330,000
resolved fixed
318d2fa
1,268,840,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/AndFileInfoMatcher.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/NotFileInfoMatcher.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/OrFileInfoMatcher.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/StringFileInfoMatcher.java
Eclipse_Platform_UI
1,418
306,185
Bug 306185 [Compatibility] 'Window > New Window' creates a shell of zero width and height
null
2010-03-17 09:30:32
1,268,830,000
resolved fixed
0b7377a
1,268,830,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
1,419
305,807
Bug 305807 iconURI does not work for HandledMenuItem
Given the following declaration, the menu item shows up but does not have the specified icon. The same iconURI attribute works when used with a part descriptor. <components parentID="org.eclipse.ui.main.menu"> <children xsi:type="application:MenuItem" label="Fa&amp;vorites"> <children xsi:type="application:HandledMenuItem" label="Open Favorites View" command="com.qualityeclipse.favorites.commands.openView" iconURI="platform:/plugin/com.qualityeclipse.favorites_e4/icons/sample.gif" /> </children> </components>
2010-03-14 20:24:56
1,268,610,000
resolved fixed
9759635
1,268,770,000
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java
Eclipse_Platform_UI
1,420
306,052
Bug 306052 [Compatibility] IWorkbenchPage's closeEditors(IEditorReference[], boolean)
The handler invokes the right method but only one editor is closed. :/
2010-03-16 13:32:13
1,268,760,000
resolved fixed
f7525c2
1,268,760,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,421
306,045
Bug 306045 [Compatibility] NPE thrown when restoring Eclipse with a 'Console' view open
org.eclipse.e4.core.services.internal.context.InjectionException: Unexpected error invoking method "setPart" at org.eclipse.e4.core.services.internal.context.InjectionMethod.invoke(InjectionMethod.java:66) at org.eclipse.e4.core.services.internal.context.InjectionMethod.notify(InjectionMethod.java:44) at org.eclipse.e4.core.services.internal.context.EclipseContext$TrackableComputationExt.notify(EclipseContext.java:175) at org.eclipse.e4.core.services.internal.context.EclipseContext.processScheduled(EclipseContext.java:461) at org.eclipse.e4.core.services.internal.context.EclipseContext.set(EclipseContext.java:483) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.activate(PartServiceImpl.java:320) at org.eclipse.e4.ui.workbench.swt.internal.AbstractPartRenderer.activate(AbstractPartRenderer.java:136) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer$5.widgetSelected(StackRenderer.java:409) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:228) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1059) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:773) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2722) at org.eclipse.swt.custom.CTabFolder.onFocus(CTabFolder.java:1306) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:253) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1050) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1055) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:2597) at org.eclipse.swt.widgets.Widget.wmSetFocus(Widget.java:2399) at org.eclipse.swt.widgets.Control.WM_SETFOCUS(Control.java:4771) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4208) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4843) at org.eclipse.swt.internal.win32.OS.SetFocus(Native Method) at org.eclipse.swt.widgets.Control.forceFocus(Control.java:978) at org.eclipse.swt.widgets.Control.setFixedFocus(Control.java:2959) at org.eclipse.swt.widgets.Composite.setFixedFocus(Composite.java:1039) at org.eclipse.swt.widgets.Control.fixFocus(Control.java:936) at org.eclipse.swt.widgets.Control.setVisible(Control.java:3386) at org.eclipse.swt.custom.CTabItem.setControl(CTabItem.java:301) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.createTab(StackRenderer.java:277) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.childRendered(StackRenderer.java:322) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:355) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showTab(StackRenderer.java:455) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:347) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:343) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:343) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:343) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.workbench.ui.renderers.swt.PerspectiveStackRenderer.showTab(PerspectiveStackRenderer.java:100) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.postProcess(LazyStackRenderer.java:98) at org.eclipse.e4.workbench.ui.renderers.swt.PerspectiveStackRenderer.postProcess(PerspectiveStackRenderer.java:74) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:347) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:56) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:397) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:343) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:393) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$5.run(PartRenderingEngine.java:528) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:473) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:100) at org.eclipse.ui.internal.Workbench$3.run(Workbench.java:526) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:512) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:115) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574) at org.eclipse.equinox.launcher.Main.run(Main.java:1406) at org.eclipse.equinox.launcher.Main.main(Main.java:1382) Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.e4.core.services.internal.context.InjectionMethod.callMethod(InjectionMethod.java:102) at org.eclipse.e4.core.services.internal.context.InjectionMethod.invoke(InjectionMethod.java:63) ... 80 more Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.contexts.ContextService.deactivateContext(ContextService.java:147) at org.eclipse.ui.internal.console.ConsoleView.partDeactivated(ConsoleView.java:693) at org.eclipse.ui.internal.WorkbenchPage.firePartDeactivated(WorkbenchPage.java:2470) at org.eclipse.ui.internal.WorkbenchPage.access$6(WorkbenchPage.java:2459) at org.eclipse.ui.internal.WorkbenchPage$E4PartListener.partDeactivated(WorkbenchPage.java:125) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.firePartDeactivated(PartServiceImpl.java:177) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.setPart(PartServiceImpl.java:125)
2010-03-16 13:07:10
1,268,760,000
resolved fixed
66dce11
1,268,760,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java
Eclipse_Platform_UI
1,422
305,918
Bug 305918 Restarting causes the New menu cascade to be empty
Start with a fresh WS Right click in the Package Explorer and expand the 'New' cascade...looks OK Close Restart, do *not* clear the WS Right click again, you get a disabled menu item reading '<No Applicable Items>' I originally saw this while testing 'Install new software' and was blaming the changes on the installation not working but it appears to be more basic than that.
2010-03-15 15:54:27
1,268,680,000
resolved fixed
a1c7117
1,268,740,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,423
305,796
Bug 305796 model reconciler tests need rework
They need re-work as there is a level of indirection between a binding container and the bindings. PW
2010-03-14 15:48:28
1,268,600,000
resolved fixed
b86bde4
1,268,670,000
bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/EBindingService.java bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingServiceImpl.java 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 bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/ContextSet.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ApplicationItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ApplicationItemProviderAdapterFactory.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/BindingContextItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/BindingTableItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/ModelComponentItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/PartItemProvider.java bundles/org.eclipse.e4.ui.model.workbench.edit/src/org/eclipse/e4/ui/model/application/provider/WindowItemProvider.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MApplication.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MApplicationFactory.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MApplicationPackage.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MBindingContainer.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MBindingContext.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MBindingTable.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MBindings.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MPart.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MWindow.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ApplicationFactoryImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ApplicationImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ApplicationPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/BindingContextImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/BindingTableImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ModelComponentImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/PartImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/WindowImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/util/ApplicationAdapterFactory.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/util/ApplicationSwitch.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/modeling/ModelReconciler.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/E4CommandProcessor.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/BindingLookupTest.java tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerBindingContainerTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerKeyBindingTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerKeySequenceTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerScenarioTest.java
Eclipse_Platform_UI
1,424
305,852
Bug 305852 [Compatibility] NPE thrown when closing all editors
1. Open a file. 2. File > Close All 3. NPE is logged though the editor is closed as expected. java.lang.NullPointerException at org.eclipse.ui.part.PageBookView$4.partHidden(PageBookView.java:1027) at org.eclipse.ui.internal.WorkbenchPage.firePartHidden(WorkbenchPage.java:2517) at org.eclipse.ui.internal.WorkbenchPage.access$7(WorkbenchPage.java:2510) at org.eclipse.ui.internal.WorkbenchPage$E4PartListener.partHidden(WorkbenchPage.java:129) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.firePartHidden(PartServiceImpl.java:183) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.access$1(PartServiceImpl.java:181) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl$1.handleEvent(PartServiceImpl.java:72) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:188) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:198) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:139) 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:74) at org.eclipse.e4.workbench.ui.internal.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:280) at org.eclipse.e4.ui.model.application.impl.ElementContainerImpl.setSelectedElement(ElementContainerImpl.java:135) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.hideChild(StackRenderer.java:373) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.removeGui(PartRenderingEngine.java:407) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$1.handleEvent(PartRenderingEngine.java:97) at org.eclipse.e4.ui.services.internal.events.UIEventHandler.handleEvent(UIEventHandler.java:41) at org.eclipse.equinox.internal.event.EventHandlerWrapper.handleEvent(EventHandlerWrapper.java:188) at org.eclipse.equinox.internal.event.EventHandlerTracker.dispatchEvent(EventHandlerTracker.java:198) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:227) at org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous(ListenerQueue.java:149) at org.eclipse.equinox.internal.event.EventAdminImpl.dispatchEvent(EventAdminImpl.java:139) 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:74) at org.eclipse.e4.workbench.ui.internal.UIEventPublisher.notifyChanged(UIEventPublisher.java:59) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl.eNotify(BasicNotifierImpl.java:280) at org.eclipse.e4.ui.model.application.impl.PartImpl.setToBeRendered(PartImpl.java:507) at org.eclipse.e4.workbench.ui.internal.PartServiceImpl.hidePart(PartServiceImpl.java:533) at org.eclipse.ui.internal.WorkbenchPage.hidePart(WorkbenchPage.java:769) at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:719) at org.eclipse.ui.internal.WorkbenchPage.closeAllEditors(WorkbenchPage.java:612) at org.eclipse.ui.internal.CloseAllHandler.execute(CloseAllHandler.java:48)
2010-03-15 10:02:47
1,268,660,000
resolved fixed
21358cb
1,268,660,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
1,425
287,319
Bug 287319 [CommonNavigator] ClassCastExceptions in NavigatorPipelineService when content provider can't be loaded
Build ID: I351I20090817 Steps To Reproduce: If there is a content provider registered on the org.eclipse.ui.navigator.navigatorContent extension point that overrides another extension and the content provider can't be instantiated for whatever reason, you start to see a bunch of ClassCastExceptions. The problem is that the methods of the NavigatorPipelineService blindly cast the content provider returned by extensions to the IPipelinedTreeContentProvider interface (look, for example at the method NavigatorPipelineService#pipelineInterceptAdd). However, if a content provider can't be instantiated for whatever reason, the singleton SkeletonTreeContentProvider gets returned by default (see NavigatorContentExtension#internalGetContentProvider), which can't be cast to IPipelinedTreeContentProvider. We obviously need to fix our content provider so that it can be initialized, but the navigator service should be more robust against this kind of problem. More information:
2009-08-21 12:07:14
1,250,870,000
verified fixed
5df3f5c
1,268,620,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPipelineService.java
Eclipse_Platform_UI
1,426
304,393
Bug 304393 [CommonNavigator] Custom tabbed property sheets non functional when using CN w/ view id different from project explorer
Build Identifier: 3.5.X and 3.6 all builds. Created a custom common navigator with a unique id. Enable and use the tabbed property sheets extensions for this view id. Use the TabDescriptorProvider portion of the tabbed.PropertyContributor. This worked in 3.4.x, but starting in 3.5 the tabbed property sheet fails to load. I've traced back the code to where I believe the defect was introduced. package org.eclipse.ui.internal.navigator.resources.workbench; public class TabbedPropertySheetAdapterFactory implements IAdapterFactory { /* * (non-Javadoc) * * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, * java.lang.Class) */ public Object getAdapter(Object adaptableObject, Class adapterType) { if (adaptableObject instanceof CommonNavigator) { if (!((CommonNavigator)adaptableObject).getViewSite().getId().equals(ProjectExplorer.VIEW_ID)) return null; if (IPropertySheetPage.class == adapterType) return new TabbedPropertySheetPage( new TabbedPropertySheetProjectExplorerContributor( (CommonNavigator) adaptableObject)); } return null; } Notice the if statement above that checks for the ProjectExplorer.VIEW_ID. This line was not in 3.4.2 and a TabbedPropertySheetPage was returned and functioned well. Starting in 3.5.X only a null is returned due to my common navigator view having a different view id. Reproducible: Always Steps to Reproduce: 1. Create a custom CommonNavigator view with unique id 2. Create a TabDescriptorProvider and custom tabbed property sheet 3. Run eclipse and try and activate the tabbed property sheet. Property sheet will not show up/be activated.
2010-03-02 13:15:24
1,267,550,000
verified fixed
65135e9
1,268,620,000
bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/workbench/TabbedPropertySheetAdapterFactory.java
Eclipse_Platform_UI
1,427
302,791
Bug 302791 [CommonNavigator] Associated editor does not close when deleting resource (editorInput) through CommonNavigator
null
2010-02-12 18:29:25
1,266,020,000
verified fixed
aa9cd2a
1,268,620,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CustomAndExpression.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPlugin.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/CommonActionProviderDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/dnd/CommonDropAdapterDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/LinkHelperDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/filters/CoreExpressionFilter.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/sorters/CommonSorterDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/wizards/CommonWizardDescriptor.java
Eclipse_Platform_UI
1,428
305,375
Bug 305375 [ui] Many dialogs about unavailable sites
I20100309-0100 I ran a "Check for Updates" immediately after my machine had come out of standby. I don't think the wireless had fully connected yet, and the check for updates failed (fine). However, I got a half dozen nested dialogs about each of the sites that it could not find. They were all stacked on top of one another, and I had to dismiss each one individually. I would expect it to accumulate this into a single dialog rather than one dialog per repository.
2010-03-10 13:58:01
1,268,250,000
verified fixed
deae143
1,268,600,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentService.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceContentProvider.java
Eclipse_Platform_UI
1,429
305,800
Bug 305800 [CommonNavigator] Small tracing improvement
null
2010-03-14 16:47:02
1,268,600,000
resolved fixed
f137edb
1,268,600,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptor.java
Eclipse_Platform_UI