issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
93,998 | Bug 93998 [Editor Mgmt] [MPE] MultiPageEditorSite.registerContextMenu methods are inconsistent in whether they delegate | build N20050505 In MultiPageEditorPartSite, the old registerContextMenu methods delegate to the parent part, but the new ones (the ones with the boolean for editorInput) are handled locally. They should probably all work locally, but unfortunately this is contrary to the spec. Alternatively, the new ones should be changed to delegate to the parent. It's not a great problem that they're not handled locally, as long as all parts within the MPE use different ids. | verified fixed | 3ae6785 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/MultiPageEditorSite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-09T15:09:18Z" | "2005-05-06T20:06:40Z" |
25,387 | Bug 25387 [Wizards] [resources] File System Import changes file permissions | Creating a Project (simple or otherwise) and importing files into it using the import->File System wizard takes away the executable permission from the imported exec files. | verified fixed | 57e7d17 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ImportOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-09T14:58:00Z" | "2002-10-25T15:33:20Z" |
94,060 | Bug 94060 [Undo] - some dialog messages have &Undo when not appropriate | some of the dialogs that say something like... Continue with "Undo blort"? have an ampersand in the Undo. The menu commands should not be used in text since there may be mnemonics assigned. | verified fixed | 6879f76 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/operations/AdvancedValidationUserApprover.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-08T17:53:08Z" | "2005-05-08T16:33:20Z" |
93,030 | Bug 93030 [Import/Export] Tarfile Inputstream Broken | There appears to be issues with a InputSource created from a TarFile input stream. Steps to reproduce: 1. Export a project as a tar or tar.gz 2. Go File > Import > Import Existing Project, and select the archived project to be imported. Then click finish. 3. Fails The problem is the .project is not parsed correctly in the archived files. This is handled in org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage with the call, if (projectArchiveFile != null) { newDescription = IDEWorkbenchPlugin.getPluginWorkspace() .loadProjectDescription( provider.getContents(projectArchiveFile)); which goes to org.eclipse.core.internal.resources.Workspace result = new ProjectDescriptionReader().read(new InputSource(stream)); Here result is returned as null when is should be a ProjectDescription, this is because the SAXParser fails to parse the InputSource created from the InputStream of the TarFile as gotten with TarLeveledStructureProvider.getContents(Object element) Zip and Tar files seem to be dealt with identically which suggests the problem lies somewhere in the handling of the Tar format itself. | verified fixed | 8018971 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarInputStream.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-08T15:27:17Z" | "2005-04-27T22:13:20Z" |
94,007 | Bug 94007 Views without view icon get red box by default | Please remove this feature. If a few does not specify a icon it should not get one for free. | verified fixed | e6a8c11 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T21:21:30Z" | "2005-05-06T20:06:40Z" |
75,130 | Bug 75130 [Workbench] Workbench could avoid re-reading feature ini's to speed startup | Build 3.0.1. This is a very small improvement, but it was large enough to show up on my list of potential optimizations. Essentially it avoids re-reading the feature INI's on startup. Our product has LOTS of feature plug-ins (103), so this adds up. Attached is the proposed change; it isn't sophisticated, essentially saying "if I had at least one tips and tricks / welcome page before, I probably have one now". To be more robust, the stored preference would have to be cleared on a -clean. The net savings on a 3GHz P4 / 2G RAM was 181ms for multiple warm runs. It obviously should be a tad larger for cold runs on a less performant machine. | resolved fixed | c0374ae | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T21:03:15Z" | "2004-09-27T21:20:00Z" |
92,988 | Bug 92988 [Viewers] potential NPE in AbstractTreeViewer | I0426, found with FindBugs 1. AbstractTreeViewer line 832 invokes "siblings.length", but the "if" statement above implies that siblings could be null here. 2. StringFieldEditor line 187 does an unnecessary null check since Text.getText() never returns null (FindBugs was using this to point to line 190 as a potential NPE). | verified fixed | 27496ba | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/StringFieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T20:57:37Z" | "2005-04-27T19:26:40Z" |
93,993 | Bug 93993 [Workbench] PartSite.getContextMenuIds() can get array index out of bounds | build N20050505 The code for PartSite.getContextMenuIds() does not properly handle the case where a menu extender has multiple menu ids. It assumes that the number of ids is the same as the number of menu extenders. | verified fixed | aade951 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T20:04:27Z" | "2005-05-06T20:06:40Z" |
88,629 | Bug 88629 [Commands] ConcurrentModificationException in command manager | I20050315-1100 I added new code that was removing an excecution listener while being notified about an command execution. !ENTRY org.eclipse.ui 4 4 2005-03-21 13:24:54.125 !MESSAGE Unhandled event loop exception Unhandled event loop exception Reason: !ENTRY org.eclipse.ui 4 0 2005-03-21 13:24:54.125 !MESSAGE java.util.ConcurrentModificationException !STACK 0 java.util.ConcurrentModificationException at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:448) at java.util.AbstractList$Itr.next(AbstractList.java:419) at org.eclipse.core.commands.CommandManager$ExecutionListener.postExecuteSuccess(CommandManager.java:78) at org.eclipse.core.commands.Command.firePostExecuteSuccess(Command.java:425) at org.eclipse.core.commands.Command.execute(Command.java:337) at org.eclipse.core.commands.ParameterizedCommand.execute(ParameterizedCommand.java:395) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:418) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:695) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:738) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:509) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:452) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:219) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:777) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:841) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:879) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:875) at org.eclipse.swt.widgets.Widget.wmSysKeyDown(Widget.java:2045) at org.eclipse.swt.widgets.Control.WM_SYSKEYDOWN(Control.java:3762) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3097) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3466) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1548) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java:648) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1624) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2525) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1520) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1484) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:305) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:338) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:151) 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:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:268) at org.eclipse.core.launcher.Main.basicRun(Main.java:260) at org.eclipse.core.launcher.Main.run(Main.java:887) at org.eclipse.core.launcher.Main.main(Main.java:871) java.util.ConcurrentModificationException | verified fixed | 7713f16 | ["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Command.java", "bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/CommandManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T18:49:03Z" | "2005-03-21T13:00:00Z" |
92,785 | Bug 92785 Properties and preferences dialog should disable combo when only one page | null | verified fixed | c5d72f7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T18:44:20Z" | "2005-04-26T15:40:00Z" |
86,362 | Bug 86362 [PropertiesView] Can not access AdapterFactory, when plugin is not loaded | I added propertysheet support to my application. When I had it working more or less ok, I refactored this support to a separate plugin and suddenly my property sheet stopped working. No error messages or log - my view just did not manage to get the IPropertySheetPage for my view. Closer inspection and debugging lead me to conclude that the problem lies in the overzealously lazy loading of the AdapterFactory, which avoids loading of the plugin bundle at any cost when retrieving adapters. The lazy loading in AdapterFactoryProxy should either force the plugin to be loaded, or if this behavior is intentional, there should be a (preferably declarative) way of forcing the plugin to be loaded. | verified fixed | 0048cc1 | ["bundles/org.eclipse.ui.views/src/org/eclipse/ui/views/properties/PropertySheet.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T18:03:38Z" | "2005-02-23T20:20:00Z" |
88,919 | Bug 88919 [KeyBindings] registry: Preference changes should update bindings immediately | steps: - add a new key binding in the keys preference page for something (I use Ctrl+shift+alt+k for the first command that appears - File > Export > Preferences > Export All (you could also choose just to export key preferences here) - remove the key binding set above - File > Import > Preferences - choose file exported to above - finish - now go to the keys preferences page, note that the new key binding is not there until after a restart. I sugest there be a listener on the keys preferences to re-calculate the bindings when they are changed | verified fixed | c07ed3e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingPersistence.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/BindingPersistenceTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/KeysTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T17:59:11Z" | "2005-03-23T20:33:20Z" |
93,245 | Bug 93245 [Dialogs] Error messages show up in two locations in the properties dialog | Force an error message: 1) select a Java project 2) open the properties dialog 3) navigate to Java Compiler>Building 4) enable project specific settings 5) enter a letter into the maximum number of problems field ->the error message shows up at the bottom 6) resize the dialog ->the error message also shows up in the banner | verified fixed | 98b45e0 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogMessageArea.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T15:29:03Z" | "2005-04-29T10:20:00Z" |
93,840 | Bug 93840 [Help] Dynamic Help menu item does not show the accelerator | This has been a long story about Help keys being different on different WSs. However, we DO know that F1 is the accelerator used for dynamic help on Windows and that users cannot change it (unlike on Carbon or GTK+). I will attach a patch that adds F1 to the menu item label on Windows. Note that we cannot use key bindings because the accelerator is implied - we should not process the key ourselves. | verified fixed | 279bb5a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/DynamicHelpAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T14:19:16Z" | "2005-05-05T19:06:40Z" |
93,907 | Bug 93907 [Editor Mgmt] [Contributions] Editor actions enabled when editor opened without activating it | build N20050505 - change to open on single-click - in the Navigator or Package Explorer, single-click on a .readme file - the readme editor's "1" toolbar button is enabled, but it should not be because the editor is not activated The problem is that EditorActionBars initializes enabledAllowed to true instead of false. It should only be enabled when setEnabledAllowed(true) is called. | verified fixed | 2b83f16 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorActionBars.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-06T14:05:25Z" | "2005-05-06T14:33:20Z" |
93,636 | Bug 93636 [Preferences] ESC no longer closes the preference dialog | Hitting escape does not close the preference dialog - it only clears the filter combo. | resolved fixed | 77e6155 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredComboTree.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T20:58:06Z" | "2005-05-04T12:33:20Z" |
70,088 | Bug 70088 [Actions] ActionContributionItem.fill(Composite) creates button with wrong text | 1. Create an action with setText ("&Go@Ctrl+G"); 2. Use ActionContributionItem.fill(Composite) to create a button 3. The label of the button will be "_G_o@Ctrl+G" Looking at the source, it seems that the code which handles the text for buttons doesn't take the accelerator in account. Quick fix: Remove any text after the @ (incl) in the "set text for button" code. Suggested fix: Remove the ugly "@text" hack and use the real accelerator (set with setAccelerator()) instead (removes code duplication, too). | verified fixed | 9351ef1 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ActionContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T20:24:49Z" | "2004-07-15T08:26:40Z" |
93,355 | Bug 93355 [Perspectives] NPE in CustomizePerspectiveDialog | Happens when you have an RCP app with no action sets defined. Create a "Hello RCP" app with PDE tooling. add configurer.setShowPerspectiveBar(true); to ApplicationWorkbenchWindowAdvisor#preWindowOpen Start app. Invoke "Customize..." from coolbar. @@@@@ !ENTRY org.eclipse.ui 4 0 2005-04-30 22:15:58.612 !MESSAGE null argument; !STACK 0 org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at org.eclipse.jface.util.Assert.isNotNull(Assert.java:149) at org.eclipse.jface.util.Assert.isNotNull(Assert.java:125) at org.eclipse.jface.viewers.StructuredSelection.<init>(StructuredSelection.java:66) at org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog.setInitialSelections(CustomizePerspectiveDialog.java:1772) at org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog.createDialogArea(CustomizePerspectiveDialog.java:1186) at org.eclipse.jface.dialogs.Dialog.createContents(Dialog.java:687) at org.eclipse.jface.window.Window.create(Window.java:418) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:996) at org.eclipse.jface.window.Window.open(Window.java:770) at org.eclipse.ui.internal.WorkbenchPage.editActionSets(WorkbenchPage.java:1462) at org.eclipse.ui.internal.EditActionSetsAction.run(EditActionSetsAction.java:49) at org.eclipse.ui.internal.PerspectiveAction.run(PerspectiveAction.java:70) at org.eclipse.ui.internal.PerspectiveSwitcher$14.widgetSelected(PerspectiveSwitcher.java:1089) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2900) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2533) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at de.sdavids.ui.internal.application.Application.run(Application.java:13) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) @@@@ Version: 3.1.0 Build id: I20050426-1700 | verified fixed | 4b1f8b5 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T19:18:12Z" | "2005-04-30T19:40:00Z" |
93,796 | Bug 93796 [Help] Help menu cleanup | As per the polish dynamic team call, Help menu should be cleaned up to look like this: Welcome ------ Help Contents Search Dynamic Help ------ Key Assist Tips and Tricks... Cheat Sheets... ----- Software Updates -> Find and Install... Manage Configuration ----- About Eclipse Platform | verified fixed | 6508a62 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEPreferenceInitializer.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T18:41:41Z" | "2005-05-05T16:20:00Z" |
93,263 | Bug 93263 [Preferences] Properties and Preference Dialog is inconsistent | We need to make the properties and preferences dialog consistent in thier look and feel. | verified fixed | ee106cc | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PreferencePageHistory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T18:24:33Z" | "2005-04-29T13:06:40Z" |
93,262 | Bug 93262 [Workbench] [Tests] Need regression tests for XMLMemento | null | verified fixed | 6c46f84 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/XMLMementoTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T15:20:41Z" | "2005-04-29T13:06:40Z" |
93,720 | Bug 93720 [Workbench] (Regression) XMLMemento converts newlines in string values to spaces on deserialization | A String value containing newline characters, set using xmlMemento.putString("key", "\nvalue\nwith\nnewlines\n"); will come back with spaces instead of newlines after serialization and subsequent deserialization. This was not the case with XMLMemento of release 3.0.1. | verified fixed | 577636c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/XMLMemento.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T15:18:32Z" | "2005-05-04T20:53:20Z" |
93,718 | Bug 93718 [Workbench] XMLMemento loses text data on deserialization when createChild called before putText | When you first create a child memento and then set the text data, as in: mementoToSerialize.createChild("type","id"); mementoToSerialize.putTextData(textData); the text data will no longer be there after serializing and then deserializing the memento. | verified fixed | e176c23 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/XMLMemento.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T15:15:04Z" | "2005-05-04T20:53:20Z" |
93,414 | Bug 93414 keep search history in filteredCombo in dialog settings | the search contents will be cleared each time when preference dialog is closed, it's more reasonable if we save the search history as a dialog setting. | verified fixed | ef9a07c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredComboTree.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-05T14:23:16Z" | "2005-05-02T16:06:40Z" |
93,516 | Bug 93516 [HeapStatus] Heap status indicator accesses the preference store too often | There are calls to HeapStatus.this.prefStore.getInt(IHeapStatusConstants.PREF_UPDATE_INTERVAL) that happen far too frequently. This value should be cached and a preference listener should be added. This is accessed so often that running the preference debug options for "get" is useless. | verified fixed | 0918110 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/HeapStatus.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-04T21:39:36Z" | "2005-05-03T11:33:20Z" |
80,570 | Bug 80570 [Dialogs] Low Vision test - hover test is not present for icons in MessageDialogs | Our testers found that MessageDialog (org.eclipse.jface.dialogs.MessageDialog) dialogs do not conform to Low Vision compliance quidelines (T&M 162A). There is no hover text for the icons is these dialogs. See below for test case of Low Vision Compliance. High Contrast: Under Control Panel_accessibility_display tab change to high contrast white or yellow on a black background. This test will remove color and render everything on screen in black and white. These settings are used by low vision users who can only see text when there is a high degree of contrast between the foreground and background colors, as well as some color blind users. Text must not be illegible, gray, or any other color other than black and white (or yellow depending on the settings you chose). "Bleed through" (the text behind a control shows within the control) on any controls or text should also be reported. Check that alt text is present on each icon by using the mouse to "hover over" the icon. | verified fixed | ef50205 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/IconAndMessageDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-04T19:39:20Z" | "2004-12-09T05:26:40Z" |
93,658 | Bug 93658 [Preferences] pref. page shows only one content type (Text) | n20050503 With this build, the content type pref. page shows only one node: the text content type. Happens on existing/new workspaces. | verified fixed | 3b6c6f3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ContentTypesPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-04T15:38:02Z" | "2005-05-04T15:20:00Z" |
92,835 | Bug 92835 [Viewers] retrieving projects from CVS creates duplicate resources in Navigator | observed in I0420 and I0426, did not happen in M6 happens on solaris-motif, aix, and hpux, but NOT linux-motif or others I could have the wrong component here, but I guessed UI since WorkbenchContentProvider seems to ultimately populate the Navigator view. - start a new eclipse - show the CVS Repositories view - connect to dev.eclipse.org - start retrieving the org.eclipse.swt and org.eclipse.swt.motif.linux.x86 projects - click "Run In Background" and switch to the Navigator view - the two projects will appear as they're retrieved from CVS (fine), but then at the end of Building there will be two duplicate projects added to the Navigator My initial thought was that this must be a motif Tree bug, but I don't think it is because: -> the problem does not happen on linux-motif -> I inserted several println's in Tree and TreeItem apis, ran through the scenario, and noted that twice as many TreeItem creation apis are being invoked in the unix cases compared to linux-motif, so there seems to be some platform differentiation happening outside of swt | verified fixed | c1ad73d | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-04T13:47:32Z" | "2005-04-26T21:13:20Z" |
93,635 | Bug 93635 [Preferences] Need to add new constant to ExtensionFactory | null | verified fixed | a3622da | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ExtensionFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-04T13:29:41Z" | "2005-05-04T12:33:20Z" |
59,037 | Bug 59037 [Navigator] Package explorer flicker when switching/closing editors | If 'Link with editor' is active I see a lot of redrawing going on in the Package Explorer view when I switch between editors (or close an open editor). If the file opened in the second editor already appears in the Package Explorer, it is simply selected and there is no flicker. If, however, the view has to be scrolled to show the second file, I see a lot of redrawing before the view is shown in the new position. The Outline view also seems to draw a white background before drawing the content for the active editor, but it's not nearly as annoying as the Package Explorer (it's true that hte PAckage Explorer has much more items, though). | verified fixed | 6ea103a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-03T17:03:02Z" | "2004-04-19T10:20:00Z" |
73,722 | Bug 73722 [Perspectives] [ViewMgmt] No API for adding multiple instances of the same view in IPageLayout | It isn't currently possible to add multiple instances of the same view to a perspective through IPageLayout. Because of this you cannot create a perspective with multiple instances of the same view in its default layout. | verified fixed | daedfa2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FolderLayout.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LayoutHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PageLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-03T02:34:38Z" | "2004-09-11T13:40:00Z" |
93,193 | Bug 93193 [Dialogs] Infinite search in project import dialog | Using UI from HEAD 1) Open the Existing project import wizard 2) Type "c:\" in the first text field 3) Toggle the radio button to search in archive 4) Type "d:\" in the archive search text field (or some other large directory) 5) Hit Tab to begin search 6) Click Cancel -> It cancels, but when the cancel button gets disabled, focus traverses to the first radio button, which kicks off another search. The result is an infinite search that cannot be canceled. | verified fixed | 1fc2ce9 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/DataTransferMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-02T21:58:08Z" | "2005-04-28T20:26:40Z" |
93,077 | Bug 93077 Next / Previous Editor list not updated when active editor changes without having focus | I20050426-1700 The Window > Navigation > Next / Previous Editor list is not updated when the current editor changes while the editor does not have focus. I see this when I have multiple editors open and switch between them when another view has focus: - stepping though search results with the up/down buttons in the search view - drop to frame in Debug view - select an already open type in the type hierarchy view When I press Ctrl+F6 after such a switch-editor-in-background, the top element of the list is still the last editor that had focus (expected: the active editor is on top) | verified fixed | 97c0672 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-02T21:04:43Z" | "2005-04-28T09:20:00Z" |
93,352 | Bug 93352 [ErrorHandling] IDEExceptionHandler should not use magic number | null | verified fixed | fd48d0b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEExceptionHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-02T19:56:30Z" | "2005-04-30T19:40:00Z" |
93,360 | Bug 93360 [Viewers] getChild still used in indexForElement | indexForElement() in AbstractTreeViewer still uses getChild() and not getChildren(). This should probably also change to using getChildren() and do the same thing as insertionPosition(). | verified fixed | 1a6bff1 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-05-02T12:52:22Z" | "2005-05-01T04:00:00Z" |
78,179 | Bug 78179 [Progress] ProgressManager's 'subTask' throws NPE on null string | Most progress monitors work correctly when 'subTask' is called with an empty string EXCEPT for 'org.eclipse.ui.internal.progress.ProgressManager' which blindly does: if (name.length() == 0) return; instead of... if (name != null && name.length() == 0) return; | verified fixed | 490119d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T17:21:06Z" | "2004-11-09T17:06:40Z" |
78,225 | Bug 78225 [Preferences] Clarify spec w.r.t. threads and change notification | null | verified fixed | f28fd66 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/IPreferenceStore.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T17:00:13Z" | "2004-11-09T22:40:00Z" |
2,175 | Bug 2175 [Navigator] Changing the default editor does not refresh the navigator (1GEX9PY) | 1) install the UI examples 2) create a project 3) create a file file.people the icon is a 'E' 4) go to Window->Preferences->Workbench->File Editor and change the default editor for .people 5) Apply The icon has not changed in the navigator NOTES: KH (9/10/2001 3:53:03 PM) See also: 1GC2VOL: ITPUI:WIN2000 - Icons in navigator not updated on default editor change | verified fixed | a771b3b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/model/WorkbenchLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T16:37:01Z" | "2001-10-11T03:13:20Z" |
93,238 | Bug 93238 [Workbench] CCE in XMLMemento while exiting my workspace | Using build I20050426-1700. While exiting my workspace I got following exception: !ENTRY org.eclipse.ui.workbench 4 2 2005-04-29 10:40:17.127 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.ClassCastException: org.apache.crimson.tree.TextNode at org.eclipse.ui.XMLMemento$DOMWriter.save(XMLMemento.java:430) at org.eclipse.ui.XMLMemento$DOMWriter.save(XMLMemento.java:430) at org.eclipse.ui.XMLMemento$DOMWriter.save(XMLMemento.java:430) at org.eclipse.ui.XMLMemento$DOMWriter.save(XMLMemento.java:430) at org.eclipse.ui.XMLMemento$DOMWriter.save(XMLMemento.java:430) at org.eclipse.ui.XMLMemento$DOMWriter.save(XMLMemento.java:430) at org.eclipse.ui.XMLMemento.save(XMLMemento.java:404) at org.eclipse.ui.internal.Workbench.saveMementoToFile(Workbench.java:1618) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:1609) at org.eclipse.ui.internal.Workbench$9.run(Workbench.java:500) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1026) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:496) at org.eclipse.ui.internal.Workbench.access$6(Workbench.java:461) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:644) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:642) at org.eclipse.ui.internal.Workbench.close(Workbench.java:617) at org.eclipse.ui.internal.QuitAction.run(QuitAction.java:57) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2900) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2533) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.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:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) | verified fixed | 1bea1ad | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/XMLMemento.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T16:13:50Z" | "2005-04-29T07:33:20Z" |
81,675 | Bug 81675 [Progress] ArrayIndexOutOfBoundsException in progress viewer code | Using 3.1M4 build. Unfortunately I do not have a reproducible test case yet, but thought I would log this anyway... java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at java.util.ArrayList.toArray(ArrayList.java:276) at org.eclipse.ui.internal.progress.JobInfo.getChildren(JobInfo.java:146) at org.eclipse.ui.internal.progress.ProgressTreeContentProvider.getChildren(ProgressTreeContentProvider.java:52) at org.eclipse.ui.internal.progress.NewProgressViewer.contentProviderGetChildren(NewProgressViewer.java:1750) at org.eclipse.ui.internal.progress.NewProgressViewer$JobItem.refresh(NewProgressViewer.java:1029) at org.eclipse.ui.internal.progress.NewProgressViewer$JobItem.<init>(NewProgressViewer.java:725) at org.eclipse.ui.internal.progress.NewProgressViewer.createItem(NewProgressViewer.java:1526) at org.eclipse.ui.internal.progress.NewProgressViewer.findJobItem(NewProgressViewer.java:1543) at org.eclipse.ui.internal.progress.NewProgressViewer.add(NewProgressViewer.java:1420) at org.eclipse.ui.internal.progress.ProgressTreeContentProvider.add(ProgressTreeContentProvider.java:81) at org.eclipse.ui.internal.progress.ProgressViewUpdater$1.runInUIThread(ProgressViewUpdater.java:257) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:96) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2780) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2451) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) | verified fixed | 9651348 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobInfo.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T16:04:08Z" | "2004-12-20T19:13:20Z" |
93,258 | Bug 93258 [Preference] new bolding of pages in filtered preference tree uses wrong font | The bolding in the preference tree leaves does not honour dialog font but the rest of the tree does. Screencap forthcoming. | verified fixed | 6cdffb7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PreferenceBoldLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T15:51:12Z" | "2005-04-29T13:06:40Z" |
93,236 | Bug 93236 [Properties] keywords for property pages | 20050429 Property pages don't seem to support keywords. Shouldn't thay also allow the <keywordReference id="org.eclipse.jdt.ui.buildpath"/> tag? | verified fixed | 050e380 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PropertyPagesRegistryReader.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T14:55:11Z" | "2005-04-29T07:33:20Z" |
85,147 | Bug 85147 [Preferences] filter field: Looses focus on type | 20050208 When you type in the filter field, the focus ofter switched to the tree. You have to give the filter field the focus again to continue typing | verified fixed | 1bc040b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T14:12:22Z" | "2005-02-14T16:53:20Z" |
77,372 | Bug 77372 [RCP][Progress] Clicking on the progress button generates an error | org.eclipse.ui.workkbench doesn't include the progress view definition in it's plugin.xml file. However, the job completed button that appears in the progress viewer region in the status line tries to open the progress view even in the view isn't available. It should be smarter. Either allow an application to provide the view id to open when this button is pressed, or disable the buttons action when the IDE plug-in is not available. | verified fixed | 4253383 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T13:54:57Z" | "2004-11-01T14:40:00Z" |
67,467 | Bug 67467 [Presentaions] Toolbar layout missing buttons for stack view in Breakpoints view | Build: 3.0 RC2 I have a layout where the Breakpoints view is stacked with several other views. When I first open Eclipse and bring the Breakpoints view to the top, several buttons are missing from its local button bar. If I maximize and then restore the view, it is back to normal. | resolved fixed | abe4264 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/PaneFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabFolder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-29T00:16:42Z" | "2004-06-16T15:33:20Z" |
93,192 | Bug 93192 Operation history MUST make sure that dispose is called whenever a undo/redo object is removed from the histroy | To avoid leaking change object it is absolutely important that we always dispose undo/redo object when they are removed or replace in the history. The reproduce the problem apply the attached patch to LTK core to simpulate an unvalid operation. Then do the following: - open an editor - execute an extract method operation - execute undo observe that dispose isn't called on the refactoring undo object. The problem is that field triggeringOperation in TriggeredOperations is already null when dispose is called on TriggeredOperations. The triggeredOperation is set to null by the followin stack trace Thread [main] (Suspended (breakpoint at line 84 in TriggeredOperations)) TriggeredOperations.remove(IUndoableOperation) line: 84 TriggeredOperations.removeContext(IUndoContext) line: 110 DefaultOperationHistory.flushUndo(IUndoContext) line: 544 DefaultOperationHistory.dispose(IUndoContext, boolean, boolean, boolean) line: 258 UndoActionHandler.flush() line: 49 OperationHistoryActionHandler$2.run() line: 275 RunnableLock.run() line: 35 UISynchronizer(Synchronizer).runAsyncMessages(boolean) line: 118 Display.runAsyncMessages(boolean) line: 2877 Display.readAndDispatch() line: 2536 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1569 Workbench.runUI() line: 1533 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 306 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 143 IDEApplication.run(Object) line: 103 PlatformActivator$1.run(Object) line: 228 EclipseStarter.run(Object) line: 345 EclipseStarter.run(String[], Runnable) line: 158 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 85 NativeMethodAccessorImpl.invoke(Method, Object, Object[]) line: 58 DelegatingMethodAccessorImpl.invoke(Method, Object, Object[]) line: 60 Method.invoke(Object, Object[]) line: 391 Main.invokeFramework(String[], URL[]) line: 319 Main.basicRun(String[]) line: 272 Main.run(String[]) line: 951 Main.main(String[]) line: 935 An easy fix might be swapping the two lines in remove triggeringOperation = null; history.replaceOperation(this, (IUndoableOperation[]) children .toArray(new IUndoableOperation[children.size()])); Susan, I don't know the code well however flushing the undo histroy via a async exec seems strange. Why is the necessary ? Wouldn't it make sense to flush the histroy synchron and update the UI on the event asynchornously. | verified fixed | 90e077d | ["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/TriggeredOperations.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T22:37:38Z" | "2005-04-28T20:26:40Z" |
92,203 | Bug 92203 [Preferences] preferences package needs cleanup | org.eclipse.ui.preferences contains classes that should not be API by my estimation. These should be cleaned up before 3.1 ships. | verified fixed | ae787d8 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/preferences/PreferencesExportWizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/preferences/PreferencesImportWizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/preferences/PreferencesMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesExportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesImportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ExtensionFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/preferences/PreferenceTransferElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/preferences/PreferenceTransferManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PreferenceTransferRegistryReader.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/wizards/preferences/PreferencesExportWizard.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/wizards/preferences/PreferencesImportWizard.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/wizards/preferences/PreferencesMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesExportPage1.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesImportPage1.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/PreferenceTransferElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/PreferenceTransferManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T21:46:58Z" | "2005-04-21T13:26:40Z" |
93,175 | Bug 93175 [Preferences] PreferencePage.createControl is tagged as experimental | build I20050426 PreferencePage.createControl in JFace still states: * <strong>NOTE:</strong> This API is experimental * and subject to change before the 3.1 release. Should remove this for M7. | verified fixed | 6611385 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T20:34:32Z" | "2005-04-28T20:26:40Z" |
93,176 | Bug 93176 [JFace] Window.getDefaultOrientation() is marked as experimental | build I20050426 Window.getDefaultOrientation states: * <strong>NOTE</strong> This API is experimental and may * be subject to change during the development cycle for * Eclipse 3.1. Should address for M7. | verified fixed | 3e0cffb | ["bundles/org.eclipse.jface/src/org/eclipse/jface/window/Window.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T20:32:39Z" | "2005-04-28T20:26:40Z" |
93,178 | Bug 93178 ViewSettingsDialog is tagged as experimental | build I20050426 ViewSettingsDialog has: * <strong>NOTE: This API is experimental and may change * before Eclipse 3.1 is released. <strong> Should address for M7. | verified fixed | 585afc6 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/ViewSettingsDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T20:31:34Z" | "2005-04-28T20:26:40Z" |
92,433 | Bug 92433 [DnD] Drag'n'drop test failures (8) in HEAD | FAILURE: drag Navigator to out of the window(org.eclipse.ui.tests.dnd.DragTest) (762) junit.framework.ComparisonFailure: expected:<..._nofocus...> but was:<......> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Navigator to top of window(org.eclipse.ui.tests.dnd.DragTest) (763) junit.framework.ComparisonFailure: expected:<...active (*Navigator)-(layout ((Mock Editor 1, *Mock Editor 2)|active_nofocus...> but was:<...(*Navigator)-(layout ((Mock Editor 1, *Mock Editor 2)|active...> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Navigator folder to out of the window(org.eclipse.ui.tests.dnd.DragTest) (784) junit.framework.ComparisonFailure: expected:<..._nofocus...> but was:<......> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Navigator folder to top of window(org.eclipse.ui.tests.dnd.DragTest) (785) junit.framework.ComparisonFailure: expected:<...active (*Navigator)-(layout ((Mock Editor 1, *Mock Editor 2)|active_nofocus...> but was:<...(*Navigator)-(layout ((Mock Editor 1, *Mock Editor 2)|active...> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Problems to out of the window(org.eclipse.ui.tests.dnd.DragTest) (806) junit.framework.ComparisonFailure: expected:<..._nofocus...> but was:<......> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Problems to top of window(org.eclipse.ui.tests.dnd.DragTest) (807) junit.framework.ComparisonFailure: expected:<...active (*Problems)-(((*Navigator)|layout ((Mock Editor 1, *Mock Editor 2)|active_nofocus...> but was:<...(*Problems)-(((*Navigator)|layout ((Mock Editor 1, *Mock Editor 2)|active...> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Problems folder to out of the window(org.eclipse.ui.tests.dnd.DragTest) (828) junit.framework.ComparisonFailure: expected:<..._nofocus...> but was:<......> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) FAILURE: drag Problems folder to top of window(org.eclipse.ui.tests.dnd.DragTest) (829) junit.framework.ComparisonFailure: expected:<...active (*Outline, Problems, Properties)-((*Navigator)|layout ((Mock Editor 1, *Mock Editor 2)|active_nofocus...> but was:<...(*Outline, Problems, Properties)-((*Navigator)|layout ((Mock Editor 1, *Mock Editor 2)|active...> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.autotests.TestResultFilter.assertResult(TestResultFilter.java:62) at org.eclipse.ui.tests.autotests.AutoTestLogger.reportResult(AutoTestLogger.java:62) at org.eclipse.ui.tests.autotests.UITestCaseWithResult.runTest(UITestCaseWithResult.java:39) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.ui.tests.autotests.AutoTestSuite.run(AutoTestSuite.java:55) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:474) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:342) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:99) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:39) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) | resolved fixed | d9a8890 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartPane.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T20:29:57Z" | "2005-04-22T20:00:00Z" |
48,784 | Bug 48784 [MPE] ClassCast exception Workbench page isPartVisiable for MultiPageSite | This causes problems when you have nested editors in a MulitPageEditor. Nested editors share one site, and when a nested editor calls isPartVisible it returns the parent MultiPageEditorSite. I not sure why MultiPageEditorSite does not inherit from PartSite, but it doesnt and the call throws a classException. public boolean isPartVisible(IWorkbenchPart part) { return ((PartSite)part.getSite()).getPane().isVisible(); } Thanks for your help, | verified fixed | dcfee6a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T19:04:34Z" | "2003-12-15T20:26:40Z" |
85,146 | Bug 85146 [Preferences] keywords: Only first word taken | 20050214 As discussed, I was adding keywords like: <page name="%compliancePrefName" category="org.eclipse.jdt.ui.preferences.JavaBasePreferencePage" class="org.eclipse.jdt.internal.ui.preferences.CompliancePreferencePage" id="org.eclipse.jdt.ui.preferences.CompliancePreferencePage"> <keywordReference id="org.eclipse.jdt.ui.compiler"/> </page> <extension point="org.eclipse.ui.keywords"> <keyword label="%preferenceKeywords.compiler" id="org.eclipse.jdt.ui.compiler"/> </extension> preferenceKeywords.compiler=Compliance Compatibilty 5.0 The filter dialog only reacts on 'Compliance', but not on 'Compatibilty' | verified fixed | 73a9dd5 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PatternItemFilter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T18:55:42Z" | "2005-02-14T16:53:20Z" |
92,871 | Bug 92871 [Wizards] [api] PopulateElementOperation | 3.1 HEAD org.eclipse.ui.wizards.datatransfer.PopulateElementOperation public PopulateElementOperation(MinimizedFileSystemElement rootObject, IImportStructureProvider structureProvider) - this is API class - in 3.0, MinimizedFileSystemElement was in org.eclipse.ui.wizards.datatransfer an API package - in 3.1, MinimizedFileSystemElement is in org.eclipse.ui.internal.wizards.datatransfer an internal package - this would be a breaking API change, and would have an internal class appear in the signature of an API method | verified fixed | 0a1552a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/PopulateElementOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T17:48:16Z" | "2005-04-27T05:33:20Z" |
92,777 | Bug 92777 [Contributions] Spec clarification: ContributionItem.getParent() can return null | null | verified fixed | 995656e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T17:00:38Z" | "2005-04-26T15:40:00Z" |
90,415 | Bug 90415 [Contributions] NPE in ActionContributionItem.update when trying to set accelerator in menu | Exception in thread "main" java.lang.NullPointerException at org.eclipse.jface.action.ActionContributionItem.update(ActionContributionItem.java:749) at org.eclipse.jface.action.ActionContributionItem.fill(ActionContributionItem.java:281) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:627) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:549) at org.eclipse.jface.action.MenuManager.createMenuBar(MenuManager.java:158) at org.eclipse.jface.window.ApplicationWindow.createTrimWidgets(ApplicationWindow.java:332) at org.eclipse.jface.window.ApplicationWindow.configureShell(ApplicationWindow.java:320) at org.eclipse.jface.window.Window.createShell(Window.java:483) at org.eclipse.jface.window.Window.create(Window.java:417) at org.eclipse.jface.window.Window.open(Window.java:770) at MenuActionTest.main(MenuActionTest.java:76) | verified fixed | f3a46c6 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ActionContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T15:19:20Z" | "2005-04-06T09:33:20Z" |
92,851 | Bug 92851 [Viewers] [api] protected field StructuredViewer.colorAndFontCollector | 3.1 HEAD colorAndFontCollector protected ColorAndFontCollector colorAndFontCollector This read-write field was added as API in the 3.1 cycle. Exposing fields as API (other than public static final ones) is bad practice because a client can change the field and there's nothing the class can do to prevent or even track that change. All access to read-write field should be through accessor methods, including access from subclasses. Also, this field is missing an @since 3.1 tag. | verified fixed | 93776e5 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T15:03:11Z" | "2005-04-27T00:00:00Z" |
93,118 | Bug 93118 Heap status plug-in generates a lot of Color garbage | 20050428 The Heap status plug-in is constantly calling Display.getSystemColor() which is creating new Color instances all of the time. This generates a lot of garbage and should be cached. | verified fixed | 480544d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/HeapStatus.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T14:58:24Z" | "2005-04-28T12:06:40Z" |
93,116 | Bug 93116 Performance optimizatioin in ScopedPreferenceStore | null | verified fixed | c9520e7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/ScopedPreferenceStore.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T14:01:33Z" | "2005-04-28T12:06:40Z" |
92,764 | Bug 92764 [ActivityMgmt][Contributions] NPE when capabilities turned off and try to show all in new wizard | Version: 3.1.0 Build id: I20050420-1200 - open eclipse on an existing workspace with existing CVS connections and projects loaded. - turn off Team capabilities - went to CVS Respositories perspective and found that I could not checkout a project (forgot that i had turned the capability off) - went to File > New > Project and clicked on show all (thinking CVS would show up and enable CVS at the same time) - NPE !ENTRY org.eclipse.jface 4 0 2005-04-26 09:48:09.562 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.PluginActionContributionItem.identifierChanged(PluginActionContributionItem.java:115) at org.eclipse.ui.internal.activities.Identifier.fireIdentifierChanged(Identifier.java:106) at org.eclipse.ui.internal.activities.MutableActivityManager.notifyIdentifiers(MutableActivityManager.java:233) at org.eclipse.ui.internal.activities.MutableActivityManager.setEnabledActivityIds(MutableActivityManager.java:481) at org.eclipse.ui.internal.activities.ws.WorkbenchActivitySupport.setEnabledActivityIds(WorkbenchActivitySupport.java:314) at org.eclipse.ui.activities.ActivityCategoryPreferencePage.performOk(ActivityCategoryPreferencePage.java:618) at org.eclipse.jface.preference.PreferenceDialog$12.run(PreferenceDialog.java:843) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1026) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:40) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:823) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:312) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:226) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2897) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2530) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:66) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2897) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2530) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) | verified fixed | 44393a7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginActionContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-28T13:10:41Z" | "2005-04-26T12:53:20Z" |
92,148 | Bug 92148 [WorkbenchParts] Global Refactorings disabled after opening editor | In build Build id: I20050419-1200, I selected some code in a class that was read only for the purpose of extracting a method. All the entries in the refactor menu were disabled. Making the file writable made all the menu items enabled. This is regression since this used to work OK for me. | verified fixed | c3ef102 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-27T23:18:47Z" | "2005-04-20T20:46:40Z" |
92,974 | Bug 92974 [IDE] (tests) Perf tests generate CCEs and NPEs in perf_301 branch | build I20050425-1700 When running the performance tests in the perf_301 branch against 3.0.1, several ClassCastExceptions and NullPointerExceptions in the console output, although no tests fail due to this. It's actually the Java browsing views that are failing, but it's due to the tests setting the workspace itself as the workbench page input, instead of the workspace root. The tests have been this way for a long time, but it's only the perf tests that show the problem, not the regular tests, because we iterate over all perspectives and views for the resize and layout tests. I'm adding a static method UITestCase.getPageInput(), which returns the workspace root, and using this in all the tests, in both HEAD and the perf_301 branches. Using the workspace root instead of the workspace itself is consistent with what the IDE does (see IDEWorkbenchAdvisor.getDefaultPageInput()). | verified fixed | d702bd1 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IDeprecatedWorkbenchPageTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IPageServiceTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/SessionCreateTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/dnd/DragTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/performance/layout/EditorWidgetFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/performance/layout/PerspectiveWidgetFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/performance/layout/ViewWidgetFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/stress/OpenCloseTest.java", "tests/org.eclipse.ui.tests/UI", "Test", "Utils/org/eclipse/ui/tests/util/UITestCase.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-27T18:41:36Z" | "2005-04-27T19:26:40Z" |
85,587 | Bug 85587 [IDE] Save before clean all | The test plan for Platform UI states that a build should prompt to save unsaved resources. However, when we "clean all", no such prompt appears. Should it? | verified fixed | ad3f93f | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/BuildAction.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/GlobalBuildAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildUtilities.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CleanDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-27T18:24:44Z" | "2005-02-16T21:40:00Z" |
88,998 | Bug 88998 Clean dialog layout is wasteful | The clean dialog has a large empty space on the left that will never be used. I think the layout should be improved. Perhaps the radio buttons on the top and table underneath. | verified fixed | a529e63 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CleanDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-27T16:14:39Z" | "2005-03-24T16:00:00Z" |
92,814 | Bug 92814 [api] NewWizardMenu.setEnabled(boolean) was deleted | 3.1 HEAD NewWizardMenu public void setEnabled(boolean enabledValue) { This API method appears to have been deleted during 3.1 cycle. This is a breaking API change. What's the scoop? | verified fixed | 463291a | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/NewWizardMenu.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-27T14:06:13Z" | "2005-04-26T18:26:40Z" |
92,707 | Bug 92707 NPE in OperationHistroy while shutting down Eclipse | I20050420-1200 & latest command and workbench.ui code Did the following - execute a rename method refactoring form the editor which affected several files - did some undo/redo (don't know how often) - exit eclispe. The problem is that site.getShell() == null since the workbench is already gone Thread [System Bundle Shutdown] (Suspended (exception NullPointerException)) UndoActionHandler(OperationHistoryActionHandler).historyNotification(OperationHistoryEvent) line: 261 DefaultOperationHistory.notifyRemoved(IUndoableOperation) line: 926 DefaultOperationHistory.internalRemove(IUndoableOperation) line: 751 DefaultOperationHistory.replaceOperation(IUndoableOperation, IUndoableOperation[]) line: 1104 TriggeredOperations.remove(IUndoableOperation) line: 83 TriggeredOperations.removeContext(IUndoContext) line: 108 DefaultOperationHistory.flushUndo(IUndoContext) line: 544 DefaultOperationHistory.dispose(IUndoContext, boolean, boolean, boolean) line: 253 WorkbenchOperationSupport.dispose() line: 55 WorkbenchPlugin.stop(BundleContext) line: 893 BundleContextImpl$3.run() line: 1035 AccessController.doPrivileged(PrivilegedExceptionAction<T>) line: not available [native method] BundleContextImpl.stop() line: 1031 BundleHost.stopWorker(boolean) line: 402 BundleHost(AbstractBundle).stop() line: 410 BundleStopper.basicStopBundles() line: 73 BundleStopper.stopBundles() line: 62 EclipseAdaptor.frameworkStopping(BundleContext) line: 695 Framework.shutdown() line: 502 SystemBundle$1.run() line: 171 Thread.run() line: 595 | verified fixed | 9fb5c00 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/OperationHistoryActionHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-26T00:06:01Z" | "2005-04-25T23:00:00Z" |
82,988 | Bug 82988 [Import/Export] Importing Existing Projects should support Archive Files | Importing from Archive File and from File System should include options for importing as projects (similar to CVS). I've constructed a patch to do so, I've completed the najor functionality for Archive File (File System isn't done yet but should be very easy since it should be almost identical) but I'm running into some difficulties regarding the UI, as you can see the radio button for selecting an existing folder is not next to the text field and button which specify the folder, this is because these components are in WizardResourceImportPage which I can't really alter. The only options I can think of are to make them protected instead of private (did that a few times already) and start pulling out some components so I can stuff my radio button in there too. I'll attach the patch I have so far, ignore the "File System" section as that's going to be redone when I figgure out the solution, "Archive File" is the part I've been working on. I'm looking for opinions anyone may have on the current functionality and how to fix this UI issue. thanks | verified fixed | 6940735 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ArchiveFileManipulations.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/DataTransferMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ILeveledImportStructureProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileStructureProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarLeveledStructureProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardArchiveFileResourceImportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ZipLeveledStructureProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ImportOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T20:26:40Z" | "2005-01-17T16:40:00Z" |
69,667 | Bug 69667 [Dialogs] TVT3.0: Truncated text in Customize Perspective window. | OS : RHEL 3.0 Must fix Severity: Build date: 070704 Language: DEU Blocking: NO Problem Description: In the Customize Perspective window, the complete description cannot be viewed even when the slide bar is pulled all the way over to the right. Increasing the window size only distorts the font. See attached screen capture. | verified fixed | 5c6524e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T20:06:42Z" | "2004-07-08T20:53:20Z" |
84,056 | Bug 84056 [Contexts] Next/Previous Editor/View/Perspective does not work | This bug is specific for my system, as it works on another system. Pressing F6 brings up the "next editor" box, but I cannot step further than one entry, and cannot change to the selected editor. This happens with editors, views and perspectives. Error does not depend on VM (1.5.0 and 1.4.1 checked). No errors displayed in console. Reproducable in both GTK and Motif versions. I am running build eclipse.buildId=I200411050810 on a SuSE Linux 8.2 (i586) Kernel 2.4.20-64GB-SMP / i686 (which is a rather outdated version, about two years old or so) Please advice on required information about system libs, where I assume the problem to originate from. As the bug is a show stopper (for me), I assume it is rare and updating libraries will help, so please advice on possible candidates that I might try updating. Thank you. | verified fixed | 84044ea | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/contexts/ContextAuthority.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T20:05:12Z" | "2005-01-31T16:46:40Z" |
81,460 | Bug 81460 [Workbench] (regression) Close all perspectives, open Java perspective, layout wrong | I20041216-1200, Solaris, Motif, CDE If you close all perspectives and then open the Java perspective, the layout of the Java perspective is wrong. The editor area is given almost all of the space, and the outline/explorer/problems views are all squished. | verified fixed | 026164d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T18:58:43Z" | "2004-12-16T20:46:40Z" |
79,123 | Bug 79123 [Presentations] wrong cursor positions when switching editors with ctrl-pageup | affected version 3.1m3 steps to reproduce: - open several files with e.g. texteditors (no multipageeditors) - place the cursor in the middle of the text - switch to the next editor with ctrl-pageup - switch back to the editor you started with ctrl-pagedown - cursorposition is changed seems as if the pageup gets to the editor instead of only affecting the editorselection | verified fixed | bff043b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartPane.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T18:26:20Z" | "2004-11-20T00:20:00Z" |
62,097 | Bug 62097 [Perspectives] Toolbar MenuDetect listeners leaking | When I reset perspective we are leaking ToolBarContributionItem MenuDetect Listeners. STEPS 1) Look at workbench with Optimize It 2) Reset perspective 3) 10 menu detect listeners on items will be left around. Toolbars are not being leaked and we create this listener in ToolBarContributionItem fill(Coolbar,int) using an inner class that we have no reference too. The reference graphs indicates that the Display still has the listener in the event table | verified fixed | 873ac70 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ToolBarContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T17:42:37Z" | "2004-05-13T14:53:20Z" |
91,764 | Bug 91764 [Decorators] Need to optimize the fullDefinitions case | As you will most of the time have no full decorator definitions we should do the following: 1) If there are no full decorators skip the conversion to the array 2) enabledFullDefinitions should have the same short circuit 3) writeDecoratorsPreference should also short circuit | verified fixed | 38a87ee | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/DecoratorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-25T13:36:46Z" | "2005-04-18T18:46:40Z" |
53,333 | Bug 53333 [Workbench] Way too many selection change events are being fired | There are way to many selection change events being sent. Since much of the UI is based on responding to selection changes any optimizations in this code path will have a significant benefit. To recreate: Start with the "Hello World" example but write something to the console on every selection change event. Launch the example and activate the action set. Start clicking around in the UI and notice: In several views you get multiple selection change events being processed for single clicks. REALLY IMPORTANT: Try extending selection in an editor and notice that you get tons of events. | resolved fixed | 84b7a0b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AbstractSelectionService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WWinPartService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WindowSelectionService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPagePartList.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-23T03:43:55Z" | "2004-02-27T22:13:20Z" |
88,031 | Bug 88031 [Preferences] Allow to show all preferences | I20050315-0800 When we open the preferences from the editors we only show some preference nodes. When the user now wants to change some other preference he has to close and reopen the preference dialog via Window > Preferences in order to get all preferences. There needs to be a way to show all preferences. A possible solution might be to use the filter field: make it read-only and show: "Filtered". Then the "Clear" button could be used to show all preferences. | verified fixed | 9f1e00e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredTree.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeyAssistDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T19:36:21Z" | "2005-03-15T12:33:20Z" |
63,251 | Bug 63251 [KeyBindings] interactions: If a key doesn't match while a prefix exists, then the key is not swallowed | I200405200800, Linux 2.6.4, GTK+ 2.4.0, KDE 3.2.2. Press "Ctrl+X I" while using the Emacs key binding. The "I" is inserted into the file. | verified fixed | c4d9e55 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/WorkbenchKeyboard.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T19:34:14Z" | "2004-05-20T16:20:00Z" |
66,436 | Bug 66436 [KeyBindings] errors: Commands should forward to WorkbenchAdvisor exception handling | Build: I20040609 1200 If code that runs as a result of dispatching a command cancels, it is now reported in the UI with an error dialog that says, "The command for the key you pressed failed". Cancelation (signalled by OperationCanceledException) should not be reported to the user as a failure. This seems to have only changed recently (since RC1). Here is the log entry that is created: !ENTRY org.eclipse.ui 4 0 Jun 09, 2004 17:48:57.999 !MESSAGE The command for the key you pressed failed !STACK 0 org.eclipse.core.runtime.OperationCanceledException at java.lang.Throwable.<init>(Throwable.java) at org.eclipse.core.runtime.OperationCanceledException.<init>(OperationCanceledException.java:22) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:147) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:87) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:170) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:95) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1628) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1668) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:744) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2650) at org.eclipse.jdt.core.JavaCore$3.run(JavaCore.java:3433) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:34) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:700) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1673) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3246) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3416) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:109) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1248) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers(JavaModelManager.java:1222) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:833) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1184) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1888) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1798) at org.eclipse.jdt.internal.core.search.JavaSearchScope.add(JavaSearchScope.java:78) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.initialize(JavaWorkspaceScope.java:80) at org.eclipse.jdt.internal.core.search.JavaSearchScope.<init>(JavaSearchScope.java:52) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.<init>(JavaWorkspaceScope.java:31) at org.eclipse.jdt.core.search.SearchEngine.createWorkspaceScope(SearchEngine.java:424) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:54) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:80) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:276) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:206) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:141) at org.eclipse.ui.internal.commands.Command.execute(Command.java:132) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:469) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:887) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:928) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:546) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:494) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:259) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:713) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:795) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1725) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1721) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3049) at org.eclipse.swt.widgets.Control.windowProc(Control.java) at org.eclipse.swt.widgets.Display.windowProc(Display.java) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1460) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2383) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1362) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:252) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:272) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:128) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41) at java.lang.reflect.Method.invoke(Method.java:386) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:638) at org.eclipse.core.launcher.Main.main(Main.java:622) | verified wontfix | ac79044 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/WorkbenchKeyboard.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T15:09:44Z" | "2004-06-09T22:26:40Z" |
92,291 | Bug 92291 [Commands] Util.compare uses toString() | build I20050420-1200 Noticed that Util.compare(Object, Object) compares the toString()s of the args. This could be very inefficient (not to mention inaccurate). The only callers are: org.eclipse.ui.commands.HandlerSubmission.compareTo(Object) (3 matches) org.eclipse.ui.contexts.EnabledSubmission.compareTo(Object) (2 matches) where they compare site objects. Not sure why it's necessary to do this. There's no well-defined order between site objects. | verified fixed | 5385792 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/util/Util.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T15:03:09Z" | "2005-04-21T21:46:40Z" |
69,430 | Bug 69430 [presentations] content description with '&' treated as mnemonic indicator | null | verified fixed | 14d46f0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T04:58:18Z" | "2004-07-07T03:13:20Z" |
81,934 | Bug 81934 [DnD] Maximize intro, then put intro in stand-by, now can't resize views | Do the following (with a normal workbench window): Help - Welcome (i.e. show full window welcome) Double click tab, or click the restore icon Now try to resize the package explorer or any view and you will not be able to. You won't get the size grips either. Dragging a view will clear this up, as well as lots of other GUI actions. This also happens to me pretty consistently, but there were times when this didn't occur. It happened to me 4 out of 5 times I performed the above steps. | verified fixed | 9c66dc5 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LayoutPartSash.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T03:47:19Z" | "2004-12-27T17:53:20Z" |
75,945 | Bug 75945 [Markers] Bookmark, problem and tasks view don't restore column widths | org.eclipse.ui.views.markers.internal.TableView#saveState() only saves visible column widths but restoreColumnWidths() expects the memento to have widths for all columns. A simple one-line patch is attached. | verified fixed | 6d8cb9a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TableView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-22T01:20:18Z" | "2004-10-08T18:26:40Z" |
89,596 | Bug 89596 [EditorMgmt] Editor drop-down handler registered in two different places | null | verified fixed | 7a20afd | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorAreaHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T19:59:52Z" | "2005-03-30T16:26:40Z" |
11,407 | Bug 11407 [Preferences] ScopedPreferenceStore#needsSaving always returns true | CVSDecoratorPreferencesPage performOk() does a CVSDecorator.refresh() even if the user has already hit Apply. Since decorator updating is expensive, this is needlessly expensive. | verified fixed | 51ec658 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/ScopedPreferenceStore.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T18:57:41Z" | "2002-03-14T21:06:40Z" |
90,579 | Bug 90579 [Preferences] unable to search DBCS on Properties and Preferences | Driver M6, WindowsXP Japanese Steps 1. Install 3.0's NL pack 2. open a properties or the preferences 3. enter DBCS to filter result No item hit | verified fixed | 31807a1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T18:09:59Z" | "2005-04-07T07:46:40Z" |
77,787 | Bug 77787 [Commands] misc: dependency on Swing and AWT | null | verified fixed | 1666c67 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/WidgetMethodHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T16:14:22Z" | "2004-11-03T22:13:20Z" |
86,628 | Bug 86628 [Decorators] IAE: beginRule: R/, does not match outer scope rule | build I20050222-0821 - opened existing workspace - did a search - opened a CU from the matches - noticed the following in the log !ENTRY org.eclipse.ui 4 4 2005-02-25 09:44:04.439 !MESSAGE Attempted to beginRule: R/, does not match outer scope rule: org.eclipse.ui.internal.decorators.DecorationScheduler$1@f55e8c !STACK 0 java.lang.IllegalArgumentException: Attempted to beginRule: R/, does not match outer scope rule: org.eclipse.ui.internal.decorators.DecorationScheduler$1@f55e8c at org.eclipse.core.internal.runtime.Assert.isLegal(Assert.java:58) at org.eclipse.core.internal.jobs.ThreadJob.illegalPush(ThreadJob.java:107) at org.eclipse.core.internal.jobs.ThreadJob.push(ThreadJob.java:201) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:81) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:186) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:96) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1657) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1697) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:766) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2739) at org.eclipse.jdt.core.JavaCore$3.run(JavaCore.java:4004) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:34) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:710) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1702) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3817) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3987) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1274) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:848) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1280) at org.eclipse.jdt.internal.core.search.JavaSearchScope.add(JavaSearchScope.java:134) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.initialize(JavaWorkspaceScope.java:80) at org.eclipse.jdt.internal.core.search.JavaSearchScope.<init>(JavaSearchScope.java:56) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.<init>(JavaWorkspaceScope.java:31) at org.eclipse.jdt.internal.core.search.BasicSearchEngine.createWorkspaceScope(BasicSearchEngine.java:147) at org.eclipse.jdt.core.search.SearchEngine.createWorkspaceScope(SearchEngine.java:372) at org.eclipse.jdt.internal.core.BinaryType.newSupertypeHierarchy(BinaryType.java:758) at org.eclipse.jdt.internal.core.BinaryType.newSupertypeHierarchy(BinaryType.java:711) at org.eclipse.jdt.internal.corext.util.SuperTypeHierarchyCache.getTypeHierarchy(SuperTypeHierarchyCache.java:88) at org.eclipse.jdt.internal.corext.util.SuperTypeHierarchyCache.getTypeHierarchy(SuperTypeHierarchyCache.java:78) at org.eclipse.jdt.ui.OverrideIndicatorLabelDecorator.getOverrideIndicators(OverrideIndicatorLabelDecorator.java:160) at org.eclipse.jdt.ui.OverrideIndicatorLabelDecorator.computeAdornmentFlags(OverrideIndicatorLabelDecorator.java:128) at org.eclipse.jdt.ui.OverrideIndicatorLabelDecorator.decorate(OverrideIndicatorLabelDecorator.java:239) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:220) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:65) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1015) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:287) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:273) at org.eclipse.ui.internal.decorators.DecorationScheduler$2.run(DecorationScheduler.java:317) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) | verified fixed | c8c440f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/DecorationScheduler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T14:11:29Z" | "2005-02-25T14:00:00Z" |
92,161 | Bug 92161 [DynamicUI] Avoid getDeclaringExtension().getNamespace() | Build: I20050419 Now that the extension registry is loaded from disk lazily, every API call to the extension registry is potentially slower. One common example is code that wants to find the plugin ID for a configuration element. This is commonly done like so: IConfigurationElement.getDeclaringExtension().getNamespace() Since obtaining the declaring extension might require loading from disk, the namespace value is now cached on the configuration element. Calls like the above can now be replaced by: IConfigurationElement.getNamespace() This shorter call is 50% faster on average. Here are the references I found in the org.eclipse.ui.* plugins that can be improved in this way (I did a text search for "getDeclaringExtension().getNamespace(): org.eclipse.ui.editors/src/org/eclipse/ui/editors/text/templates - ContributionTemplateStore.java org.eclipse.ui.editors/src/org/eclipse/ui/texteditor - MarkerAnnotationPreferences.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs - WorkbenchWizardElement.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro - IntroDescriptor.java (2 matches) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc - ExternalEditor.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/services - WorkbenchPartFactory.java (2 matches) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry - StickyViewDescriptor.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry - ViewDescriptor.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry - WorkingSetDescriptor.java (2 matches) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes - ThemeRegistryReader.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal - ActionDescriptor.java (2 matches) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal - PartSite.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal - PluginAction.java (2 matches) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part - IntroPart.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part - WorkbenchPart.java org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences - PreferenceTransferElement.java org.eclipse.ui.workbench/Eclipse UI Components/org/eclipse/ui/internal/components - ComponentUtil.java org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/quickdiff - ReferenceProviderDescriptor.java org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/spelling - SpellingEngineDescriptor.java org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor - AnnotationPreference.java | verified fixed | 1e65b97 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI", "Components/org/eclipse/ui/internal/components/ComponentUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActionDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSite.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/intro/IntroDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/ExternalEditor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/part/services/WorkbenchPartFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/StickyViewDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/WorkingSetDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorUtils.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeRegistryReader.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/IntroPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/WorkbenchPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/PreferenceTransferElement.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T13:30:33Z" | "2005-04-20T23:33:20Z" |
92,019 | Bug 92019 IAE in TextStyle constructor when disposing PDEFormEditor | build I20050419-1200 Saw the following in the (linux-gtk) console output for this build. There are some earlier exceptions (reported separately), so this may be a secondary effect. [java] !ENTRY org.eclipse.ui.workbench 4 2 2005-04-19 14:35:14.491 [java] !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". [java] !STACK 0 [java] java.lang.IllegalArgumentException: Argument not valid [java] at org.eclipse.swt.SWT.error(SWT.java:2924) [java] at org.eclipse.swt.SWT.error(SWT.java:2863) [java] at org.eclipse.swt.SWT.error(SWT.java:2834) [java] at org.eclipse.swt.graphics.TextStyle.<init>(TextStyle.java:73) [java] at org.eclipse.swt.custom.StyledTextRenderer.getTextLayout(StyledTextRenderer.java:437) [java] at org.eclipse.swt.custom.StyledText.getXAtOffset(StyledText.java:4731) [java] at org.eclipse.swt.custom.StyledText.getLocationAtOffset(StyledText.java:3884) [java] at org.eclipse.jface.text.CursorLinePainter.drawHighlightLine(CursorLinePainter.java:182) [java] at org.eclipse.jface.text.CursorLinePainter.deactivate(CursorLinePainter.java:200) [java] at org.eclipse.jface.text.PaintManager.removePainter(PaintManager.java:214) [java] at org.eclipse.jface.text.TextViewer.removePainter(TextViewer.java:4746) [java] at org.eclipse.ui.texteditor.SourceViewerDecorationSupport.hideCursorLine(SourceViewerDecorationSupport.java:736) [java] at org.eclipse.ui.texteditor.SourceViewerDecorationSupport.updateTextDecorations(SourceViewerDecorationSupport.java:316) [java] at org.eclipse.ui.texteditor.SourceViewerDecorationSupport.dispose(SourceViewerDecorationSupport.java:399) [java] at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.dispose(AbstractDecoratedTextEditor.java:232) [java] at org.eclipse.ui.editors.text.TextEditor.dispose(TextEditor.java:101) [java] at org.eclipse.pde.internal.ui.editor.PDESourcePage.dispose(PDESourcePage.java:171) [java] at org.eclipse.pde.internal.ui.editor.XMLSourcePage.dispose(XMLSourcePage.java:43) [java] at org.eclipse.ui.part.MultiPageEditorPart$3.run(MultiPageEditorPart.java:541) [java] at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1026) [java] at org.eclipse.core.runtime.Platform.run(Platform.java:757) [java] at org.eclipse.ui.part.MultiPageEditorPart.disposePart(MultiPageEditorPart.java:534) [java] at org.eclipse.ui.part.MultiPageEditorPart.dispose(MultiPageEditorPart.java:268) [java] at org.eclipse.ui.forms.editor.FormEditor.dispose(FormEditor.java:338) [java] at org.eclipse.pde.internal.ui.editor.PDEFormEditor.dispose(PDEFormEditor.java:422) [java] at org.eclipse.ui.internal.WorkbenchPartReference.dispose(WorkbenchPartReference.java:527) [java] at org.eclipse.ui.internal.EditorReference.dispose(EditorReference.java:235) [java] at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:1153) [java] at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:1176) [java] at org.eclipse.ui.internal.CloseEditorAction.run(CloseEditorAction.java:40) [java] at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) [java] at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) [java] at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) [java] at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) [java] at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) [java] at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) [java] at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1036) [java] at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) [java] at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:891) [java] at org.eclipse.pde.internal.ui.tests.macro.BooleanSelectionCommand.doClick(BooleanSelectionCommand.java:140) [java] at org.eclipse.pde.internal.ui.tests.macro.BooleanSelectionCommand.playback(BooleanSelectionCommand.java:130) [java] at org.eclipse.pde.internal.ui.tests.macro.MacroCommandShell$4.run(MacroCommandShell.java:509) [java] at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) [java] at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) [java] at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:153) [java] at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:303) [java] at org.eclipse.jface.window.ApplicationWindow$1.run(ApplicationWindow.java:624) [java] at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) [java] at org.eclipse.jface.window.ApplicationWindow.run(ApplicationWindow.java:621) [java] at org.eclipse.ui.internal.WorkbenchWindow.run(WorkbenchWindow.java:2133) [java] at org.eclipse.pde.internal.ui.tests.macro.MacroManager.play(MacroManager.java:228) [java] at org.eclipse.pde.ui.tests.PDETestCase.playScript(PDETestCase.java:55) [java] at org.eclipse.pde.ui.tests.wizards.plugin.SimplePluginTestCase.testSimplePluginWithoutManifest(SimplePluginTestCase.java:39) [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) [java] at java.lang.reflect.Method.invoke(Method.java:324) [java] at junit.framework.TestCase.runTest(TestCase.java:154) [java] at junit.framework.TestCase.runBare(TestCase.java:127) [java] at junit.framework.TestResult$1.protect(TestResult.java:106) [java] at junit.framework.TestResult.runProtected(TestResult.java:124) [java] at junit.framework.TestResult.run(TestResult.java:109) [java] at junit.framework.TestCase.run(TestCase.java:118) [java] at junit.framework.TestSuite.runTest(TestSuite.java:208) [java] at junit.framework.TestSuite.run(TestSuite.java:203) [java] at junit.framework.TestSuite.runTest(TestSuite.java:208) [java] at junit.framework.TestSuite.run(TestSuite.java:203) [java] at junit.framework.TestSuite.runTest(TestSuite.java:208) [java] at junit.framework.TestSuite.run(TestSuite.java:203) [java] at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:313) [java] at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:199) [java] at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:188) [java] at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2755) [java] at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2475) [java] at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) [java] at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) [java] at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) [java] at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) [java] at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) [java] at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:131) [java] at org.eclipse.test.UITestApplication.run(UITestApplication.java:58) [java] at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) [java] at java.lang.reflect.Method.invoke(Method.java:324) [java] at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) [java] at org.eclipse.core.launcher.Main.basicRun(Main.java:272) [java] at org.eclipse.core.launcher.Main.run(Main.java:951) [java] at org.eclipse.core.launcher.Main.main(Main.java:935) | verified fixed | 8e30d88 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPartReference.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IEditorPartTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IViewPartTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPartTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/MockPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T05:28:59Z" | "2005-04-20T01:20:00Z" |
92,171 | Bug 92171 WorkbenchPage.getViewStack is too eager to activate views | This method is too eager to activate views. The method states that it returns the IViewParts that are stacked with the given part, but it actually causes new parts to be created in the stack by calling getView(true). This is a performance issue due to unnecessary part creation. The current behavior may also mislead callers into believing that the method returns the set of *tabs* in the stack (the method could never do so because not every tab has an associated IViewPart). | verified fixed | fed971a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-21T01:17:43Z" | "2005-04-20T23:33:20Z" |
92,137 | Bug 92137 [ActivityMgmt] IActivity still uses "activity activity bindings" | build I20050413 IActivity.getActivityRequirementBindings still uses "activity activity bindings" in a few places, even though we changed the API to IActivityRequirementBinding. | verified fixed | 3347d8e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/IActivity.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-20T19:42:30Z" | "2005-04-20T20:46:40Z" |
92,016 | Bug 92016 [Workbench] [RCP] IDEWorkbenchWindowAdvisor does not respond to changes in editor title | Load the org.eclipse.ui.tests plugin. create a file ending in .test, and open it in the "Name Test Editor". Change the title of the editor by typing gibberish in the "title" field. Notice that the window title does not change to reflect the new editor until you select a new editor tab and then go back to the original. | resolved fixed | e37aa87 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchWindowAdvisor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-20T18:52:59Z" | "2005-04-20T01:20:00Z" |
91,994 | Bug 91994 [Commands] errors: Duplicate log entry for command warnings | Build: I20050419-1200 When problems occur parsing commands, you get entries in the log like the ones below. The first entry is an ERROR severity, and repeats the same information as the second entry, which is a warning. This duplication occurs because CommandPersistence#readCategoriesFromCommandsExtensionPoint calls the convenience method WorkbenchPlugin.log(String, IStatus), which creates a separate status object for the provided message. In this case the message is identical to the status, so WorkbenchPlugin.log(IStatus) should be used instead to avoid the duplication. !ENTRY org.eclipse.ui 4 4 2005-04-19 16:51:09.442 !MESSAGE Warnings while parsing the commands from the 'org.eclipse.ui.commands' and 'org.eclipse.ui.actionDefinitions' extension points. !ENTRY org.eclipse.ui 1 0 2005-04-19 16:51:09.473 !MESSAGE Warnings while parsing the commands from the 'org.eclipse.ui.commands' and 'org.eclipse.ui.actionDefinitions' extension points. !SUBENTRY 1 org.eclipse.ui 1 0 2005-04-19 16:51:09.473 !MESSAGE Commands should really have a category, not categoryId='': plug-in='org.eclipse.ui.tests', commandId='org.eclipse.ui.tests.commands.categoryLessCommand'. | verified fixed | 7613839 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/CommandPersistence.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/contexts/ContextPersistence.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerPersistence.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingPersistence.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-20T15:37:06Z" | "2005-04-19T19:46:40Z" |
89,900 | Bug 89900 [Progress] showInDialog blocks if the parentShell is modal | 20050331 IProgressService#showInDialog blocks until all modal shells are closed. This will mean that it will not open if it is called on a modal parent. ProgressMonitorFocusJobDialog should check if the shell blocking it is the specified parent - if so then it should proceed. We also should remove the code that looks for a non modal parent in the null case and fall through to the new shell provider. | verified fixed | f5b5145 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorFocusJobDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorJobsDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-20T12:57:38Z" | "2005-03-31T23:00:00Z" |
92,000 | Bug 92000 [Workbench] (regression) AssertionFailedException in PartList.removePart when editors closed on shutdown | build I20050413 + latest UI from head - run with -pluginCustomization d:\custom.ini where custom.ini has: org.eclipse.ui/CLOSE_EDITORS_ON_EXIT=true - open some editors - File > Exit Get the following in the log. Not sure if the "leaked a refcount" messages are related. !ENTRY org.eclipse.ui.workbench 4 2 2005-04-19 17:10:48.820 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 org.eclipse.jface.util.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.util.Assert.isTrue(Assert.java:180) at org.eclipse.jface.util.Assert.isTrue(Assert.java:165) at org.eclipse.ui.internal.PartList.removePart(PartList.java:141) at org.eclipse.ui.internal.WorkbenchPage.partRemoved(WorkbenchPage.java:1316) at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:1143) at org.eclipse.ui.internal.WorkbenchPage.closeAllEditors(WorkbenchPage.java:994) at org.eclipse.ui.internal.Workbench$8.run(Workbench.java:485) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1026) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:478) at org.eclipse.ui.internal.Workbench.access$6(Workbench.java:461) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:644) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:642) at org.eclipse.ui.internal.Workbench.close(Workbench.java:617) at org.eclipse.ui.internal.QuitAction.run(QuitAction.java:57) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2895) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2528) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.626 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.pde.ui.PluginsView !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.636 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.ui.views.TaskList !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.646 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.ui.views.PropertySheet !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.646 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.team.ccvs.ui.AnnotateView !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.646 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.pde.runtime.LogView !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.646 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.ui.views.ContentOutline !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.646 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.team.ccvs.ui.HistoryView !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.676 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.jdt.ui.PackageExplorer !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.676 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.ui.views.ProblemView !ENTRY org.eclipse.ui 2 0 2005-04-19 17:10:52.686 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.team.ccvs.ui.RepositoriesView | verified fixed | 47006ab | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-20T03:06:38Z" | "2005-04-19T22:33:20Z" |
91,956 | Bug 91956 leaked refcount warnings in log | Build: I20050419-1200 On every startup with this build, I get the following warnings printed to my log. Let me know if more details are needed... !ENTRY org.eclipse.ui 2 0 2005-04-19 14:07:10.87 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.jdt.junit.ResultView !ENTRY org.eclipse.ui 2 0 2005-04-19 14:07:10.87 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.team.sync.views.SynchronizeView !ENTRY org.eclipse.ui 2 0 2005-04-19 14:07:10.87 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.ui.views.ResourceNavigator !ENTRY org.eclipse.ui 2 0 2005-04-19 14:07:10.87 !MESSAGE WorkbenchPage leaked a refcount for view org.eclipse.team.ccvs.ui.RepositoriesView | resolved fixed | f446b80 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-20T01:52:19Z" | "2005-04-19T17:00:00Z" |
88,867 | Bug 88867 [DetachedViews] NPE with detached views | - I get the following NPE on shutdown. - I have 2 detached views. (hidden) - On subsequent startups my views appear open but are greyed out and contain nothing. eclipse.buildId=I20050315-1100 java.fullversion=J2RE 1.4.2 IBM J9 2.2 Windows XP x86-32 j9n142-20040915 (JIT enabled) J9VM - 20040914_1123_lHdSMR JIT - r7_level20040912_1800 BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_CA Framework arguments: -showlocation Command-line arguments: -os win32 -ws win32 -arch x86 -debug -data \eclipse\target\head\plugins\ -showlocation -consoleLog -console Error 2005-03-23 06:06:10.773 Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". java.lang.NullPointerException at org.eclipse.ui.internal.DetachedWindow.close(DetachedWindow.java:121) at org.eclipse.ui.internal.PerspectiveHelper.deactivate(PerspectiveHelper.java:580) at org.eclipse.ui.internal.Perspective.onDeactivate(Perspective.java:787) at org.eclipse.ui.internal.WorkbenchPage.onDeactivate(WorkbenchPage.java:2109) at org.eclipse.ui.internal.WorkbenchWindow$4.run(WorkbenchWindow.java:2153) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:2148) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages(WorkbenchWindow.java:645) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1236) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:540) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:521) at org.eclipse.ui.internal.WorkbenchWindow$1.run(WorkbenchWindow.java:622) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:620) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$10.run(Workbench.java:527) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1015) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:524) at org.eclipse.ui.internal.Workbench.access$6(Workbench.java:460) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:644) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:642) at org.eclipse.ui.internal.Workbench.close(Workbench.java:617) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:537) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:521) at org.eclipse.ui.internal.WorkbenchWindow$1.run(WorkbenchWindow.java:622) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:620) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:719) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:666) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:158) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:256) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1568) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3026) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1493) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3466) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1619) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:403) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3109) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1493) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3466) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1619) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:403) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3109) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1493) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3466) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1624) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2525) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1520) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1484) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:305) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:338) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:151) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:268) at org.eclipse.core.launcher.Main.basicRun(Main.java:260) at org.eclipse.core.launcher.Main.run(Main.java:887) at org.eclipse.core.launcher.Main.main(Main.java:871) | verified fixed | e269b6b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DetachedWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShellPool.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-19T23:17:55Z" | "2005-03-23T15:00:00Z" |
89,910 | Bug 89910 [WorkbenchParts] (regression) PartStack does not remember active part when switching among perspectives | Using 0330, the partstack always activates the first part in the stack and not the last activated part. This is not during shutdown/restart, but just swithing among open perspectives. | resolved fixed | c934ccb | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-19T20:57:48Z" | "2005-03-31T23:00:00Z" |
81,444 | Bug 81444 [Contributions] ordering: Team menus (Compare, Replace, Team) not consistently ordered | I20041216-0800 The team menus in the context menu are not consistently ordered. On Compilation Units, the order is: Team, Compare With, Replace With, Restore from Local History... On Types, the order is: Compare With, Replace With, Restore from Local History..., Team | verified fixed | 12ff825 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectActionContributorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-19T20:54:30Z" | "2004-12-16T18:00:00Z" |
91,781 | Bug 91781 [WorkbenchParts] Adding a selection listener to a view causes view to be opened | Build: I20050413 AbstractDebugActionDelegate in org.eclipse.debug.ui adds a selection listener on startup to a particular view, like so: window.getSelectionService().addSelectionListener(IDebugUIConstants.ID_DEBUG_VIEW, this); This causes the corresponding view (the debug view in this case) to be eagerly created. The view shouldn't need to be created at the time this listener is installed. Here is the complete activation stack trace: Thread [main] (Suspended (breakpoint at line 123 in PartListenerList2)) PartListenerList2.firePartOpened(IWorkbenchPartReference) line: 123 WorkbenchPage.firePartOpened(IWorkbenchPart) line: 1547 ViewFactory.busyRestoreViewHelper(ViewFactory$ViewReference) line: 480 ViewFactory.busyRestoreView(IViewReference) line: 299 ViewFactory$1.run() line: 697 BusyIndicator.showWhile(Display, Runnable) line: 69 ViewFactory.restoreView(IViewReference) line: 694 ViewFactory$ViewReference.getPart(boolean) line: 119 ViewFactory$ViewReference.getView(boolean) line: 172 WorkbenchPage.findView(String) line: 1459 PagePartSelectionTracker.<init>(IWorkbenchPage, String) line: 59 PageSelectionService.createPartTracker(String) line: 48 PageSelectionService(AbstractSelectionService).getPerPartTracker(String) line: 202 PageSelectionService(AbstractSelectionService).addSelectionListener(String, ISelectionListener) line: 96 WorkbenchPage.addSelectionListener(String, ISelectionListener) line: 652 WindowPartSelectionTracker.pageOpened(IWorkbenchPage) line: 85 WindowPartSelectionTracker.<init>(IWorkbenchWindow, String) line: 63 WindowSelectionService.createPartTracker(String) line: 51 WindowSelectionService(AbstractSelectionService).getPerPartTracker(String) line: 202 WindowSelectionService(AbstractSelectionService).addSelectionListener(String, ISelectionListener) line: 96 RemoveAllBreakpointsAction(AbstractDebugActionDelegate).init(IWorkbenchWindow) line: 141 RemoveAllBreakpointsAction(AbstractListenerActionDelegate).init(IWorkbenchWindow) line: 101 RemoveAllBreakpointsAction.init(IWorkbenchWindow) line: 117 WWinPluginAction.initDelegate() line: 183 WWinPluginAction(PluginAction).createDelegate() line: 121 WWinPluginAction.refreshActionList() line: 160 AbstractUIPlugin$1.run() line: 480 RunnableLock.run() line: 35 UISynchronizer(Synchronizer).runAsyncMessages(boolean) line: 118 Display.runAsyncMessages(boolean) line: 2874 Display.readAndDispatch() line: 2533 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1570 Workbench.runUI() line: 1534 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 306 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 143 IDEApplication.run(Object) line: 103 PlatformActivator$1.run(Object) line: 228 EclipseStarter.run(Object) line: 344 EclipseStarter.run(String[], Runnable) line: 156 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 85 NativeMethodAccessorImpl.invoke(Method, Object, Object[]) line: 58 DelegatingMethodAccessorImpl.invoke(Method, Object, Object[]) line: 60 Method.invoke(Object, Object[]) line: 391 Main.invokeFramework(String[], URL[]) line: 319 Main.basicRun(String[]) line: 272 Main.run(String[]) line: 951 Main.main(String[]) line: 935 | resolved fixed | 48ecdd3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPartReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-18T22:52:18Z" | "2005-04-18T18:46:40Z" |
90,357 | Bug 90357 [WorkbenchParts] Avoid redundant part activation when switching perspectives | Whenever possible, the workbench maintains the same active part when switching perspectives. However, the workbench still deactivates and reactives the active part during a perspective switch even if it ends up remianing unchanged. A large portion (about 30%) of the runtime for switching perspectives currently goes into recomputing commands, action sets, contribution items, etc. that occurs as a result of the activation change. | verified fixed | 45ab2be | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorAreaHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorPane.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorSashContainer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorSite.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ExtensionEventHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ILayoutContainer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LayoutHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LayoutPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartList.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartPane.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PinEditorAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewSashContainer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WWinPartService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WindowSelectionService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchImages.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/WorkbenchPagePartList.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPartReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/UIListenerLogging.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/SystemMenuPinEditor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/EditorDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/IntroPart.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/UiTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IDeprecatedWorkbenchPageTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IPartServiceTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/OpenEditorTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ShowViewTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ZoomedViewCloseTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-04-18T21:15:24Z" | "2005-04-05T19:40:00Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.