issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
timestamp[us, tz=UTC] | report_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
76,506 | Bug 76506 [Preferences] UIPreferenceInitializer aggressively accesses instance preferences | null | verified fixed | 35aac71 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PlatformUIPreferenceListener.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPreferenceInitializer.java", "bundles/org.eclipse.ui/src/org/eclipse/ui/internal/UIPreferenceInitializer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-19T19:16:42Z | 2004-10-18T20:06:40Z |
76,565 | Bug 76565 [KeyBindings] Esc Ctrl+F does not work properly | I200410190800, GTK+ 2.4.9, KDE 3.3.0, Linux 2.6.8.1 If you press "Esc" to start a multi-stroke key binding, "Esc" appears in the status line. Before the pop-up appears, press "Ctrl" and "Esc" disappears. So, pressing "Esc Ctrl+F" is not possible (unless you wait for the pop-up to appear). I've made rather significant changes to WorkbenchKeyboard in the past few days, so this is likely the cause. | verified fixed | 4f502a3 | ["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 | 2004-10-19T19:06:18Z | 2004-10-19T15:33:20Z |
76,276 | Bug 76276 [IDE] File deletion obtains workspace root rule | Build 20041013 1. Select all projects in the workspace. 2. Right click -> Team -> Update (Run in Background) 3. While the Update is running, select a few files in the package explorer and press Delete. 4. A modal progress dialog comes up and the user has to wait until the Update finishes for the Delete to be processed. The Update action should only lock the project that it's currently working on. When I performed the above steps the Update action was only working on the first of about 20 projects in my workspace. The files I was trying to delete were from one of the last projects. I had to wait five to ten minutes (I just got up and walked away) for an action that should have taken a few seconds. | resolved fixed | 7592353 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/DeleteResourceAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-19T18:43:20Z | 2004-10-14T16:06:40Z |
76,319 | Bug 76319 [Perspectives] Poor error reporting when unable to create perspective | build I20041015 If you try to open a perspective that is missing, for example if the result of WorkbenchAdvisor.getInitialPerspectiveId() has no corresponding perspective extension, you get a cryptic error dialog stating "Error recreating perspective", with no further details as to which perspective was the problem, or why (plus it's not recreating the perspective, it's creating it for the first time). | verified fixed | f9eeadf | ["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 | 2004-10-14T21:21:29Z | 2004-10-14T21:40:00Z |
74,468 | Bug 74468 [Preferences]deprecated preference initialization | IDEWorkbenchPlugIn uses initializeDefaultPreferences to set up its defaults. This was deprecated in 2.0 and is no longer called as we are not on the compatibility layer any more. Here is the code to migrate: store.setDefault(IDEInternalPreferences.SAVE_ALL_BEFORE_BUILD, false); store.setDefault(IDEInternalPreferences.SAVE_INTERVAL, 5); //5 minutes store.setDefault(IDEInternalPreferences.WELCOME_DIALOG, true); store.setDefault(IDEInternalPreferences.REFRESH_WORKSPACE_ON_STARTUP, false); store.setDefault( IDEInternalPreferences.EXIT_PROMPT_ON_CLOSE_LAST_WINDOW, true); store.setDefault(IDEInternalPreferences.PROJECT_SWITCH_PERSP_MODE, IDEInternalPreferences.PSPM_PROMPT); store.setDefault(IDE.Preferences.PROJECT_OPEN_NEW_PERSPECTIVE, IWorkbenchPreferenceConstants.OPEN_PERSPECTIVE_REPLACE); | verified fixed | 40291c5 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEPreferenceInitializer.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-14T21:07:09Z | 2004-09-21T20:53:20Z |
76,113 | Bug 76113 [Commands] "Aggressive" error reporting for action def with definitionId and no command | null | verified fixed | df3b94c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/CommandCallback.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-12T22:17:24Z | 2004-10-12T19:40:00Z |
76,098 | Bug 76098 [PerspectiveBar] [DND] Leaking workbench windows | I200410050800, Windows XP DragUtil is leaking workbench windows through its defaultTargets array. The defaultTargets ends up holidng on to a PerspectiveSwitcher, which holds on to the old window. | resolved fixed | 7a76585 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-12T21:44:40Z | 2004-10-12T16:53:20Z |
55,453 | Bug 55453 [DnD] ClassCastException in MarkerTransfer.lazyInit | build I20040318 Noticed this in my .log. Not sure what triggered it. I don't think I was doing DnD from any of the marker views. Perhaps the editor area one got triggered somehow? !SESSION Mar 20, 2004 11:44:17.537 --------------------------------------------- java.version=1.4.2_01 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Command-line arguments: -data d:\eclipse-new\plugins -showLocation !ENTRY org.eclipse.ui 4 4 Mar 20, 2004 11:44:17.537 !MESSAGE Category org.eclipse.swt.sleak not found for view org.eclipse.swt.sleak.views.SleakView. This view added to 'Other' category. !ENTRY org.eclipse.ui 4 4 Mar 20, 2004 11:55:18.337 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 Mar 20, 2004 11:55:18.337 !MESSAGE java.lang.ClassCastException !STACK 0 java.lang.ClassCastException at org.eclipse.ui.part.MarkerTransfer.lazyInit(MarkerTransfer.java:144) at org.eclipse.ui.part.MarkerTransfer.javaToNative(MarkerTransfer.java:113) at org.eclipse.swt.dnd.DragSource.GetData(DragSource.java:373) at org.eclipse.swt.dnd.DragSource.access$7(DragSource.java:334) at org.eclipse.swt.dnd.DragSource$4.method3(DragSource.java:233) at org.eclipse.swt.internal.ole.win32.COMObject.callback3(COMObject.java:88) at org.eclipse.swt.internal.ole.win32.COM.VtblCall(Native Method) at org.eclipse.swt.internal.ole.win32.IDataObject.GetData(IDataObject.java:25) at org.eclipse.swt.dnd.ByteArrayTransfer.nativeToJava(ByteArrayTransfer.java:202) at org.eclipse.ui.part.MarkerTransfer.nativeToJava(MarkerTransfer.java:152) at org.eclipse.swt.dnd.DropTarget.Drop(DropTarget.java:416) at org.eclipse.swt.dnd.DropTarget.access$7(DropTarget.java:363) at org.eclipse.swt.dnd.DropTarget$3.method6(DropTarget.java:232) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:115) at org.eclipse.swt.internal.ole.win32.COM.DoDragDrop(Native Method) at org.eclipse.swt.dnd.DragSource.drag(DragSource.java:277) at org.eclipse.swt.dnd.DragSource.access$0(DragSource.java:263) at org.eclipse.swt.dnd.DragSource$1.handleEvent(DragSource.java:157) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:810) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2424) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2102) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1448) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1419) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:257) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:260) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:173) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:106) 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.basicRun(Main.java:305) at org.eclipse.core.launcher.Main.run(Main.java:729) at org.eclipse.core.launcher.Main.main(Main.java:713) | verified fixed | 223f83b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-08T22:46:49Z | 2004-03-20T19:13:20Z |
73,067 | Bug 73067 [DnD] Dock views is very hard if there is no editor area | I created an RCP application without editor area. Created some views. Undocked all of them by dragging with the mouse. So all they are outside the workbench window. Now it is very hard to bring them back into the workbench window by dragging them. The dark gray line border appears in the workbench window but if I release the mouse button the view jumps back outside the workbench window. If the editor area is enabled this bug doesn't occur. | verified fixed | 416c1e1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSashContainer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-08T22:13:37Z | 2004-09-01T14:46:40Z |
74,762 | Bug 74762 [Workbench] Dual screen (Matrox DualHead MultiDisplay) startup only on one monitor | Hi, I'm working with two screens, connected to a Matrox "DualHead" Card... That configuration is if I maximize a program window, it maximize only on one of the two screens, but I can open it on the two screens (as if it was a unique wide screen) manually by extending edges of the window to the bounds of that "big" screen... With eclipse version 2.1 everything worked fine, at startup my eclipse window was using both screens as if I had a unique wide-wide screen. With 3.0 & 3.0.1 I have to resize my window manually each time I start eclipse up to fit on both screens. Strange is : -The splash screen appears on my left monitor -The window (not maximized, but open wide) fit only on the rightmost screen -I can manually fit the screen on the two screensby moving eclipse left edge to my leftmost screen left border. But nothing seems saved, and next time I'll startup eclipse I'll have to resize it manually again... | verified fixed | b5e4825 | ["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 | 2004-10-08T21:11:51Z | 2004-09-23T11:46:40Z |
67,311 | Bug 67311 [ViewMgmt] [RCP] Other views may be docked with standalone views | RC2 Steps to reproduce: 1) Modify the Browser example plugin.xml so that the Browser perspective is not fixed. 2) Modify the first line of BrowserPerspectiveFactory.createInitialLayout to be: layout.addStandaloneView(BrowserApp.BROWSER_VIEW_ID, false, IPageLayout.RIGHT, .25f, IPageLayout.ID_EDITOR_AREA); 2) Launch the Browser 3) Show the history view 4) Drag the history view on top of the Browser view. This should not be possible should it? | verified fixed | b1694be | ["bundles/org.eclipse.jface/src/org/eclipse/jface/util/Geometry.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/LayoutPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSashContainer.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/PerspectiveHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/EmptyTabFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/EmptyTabItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/newapi/ReplaceDragHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/ReplaceDragHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/presentations/WorkbenchPresentationFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/presentations/StandaloneViewPerspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-08T20:22:38Z | 2004-06-15T17:20:00Z |
66,967 | Bug 66967 [Contributions] PropertyParser should be deprecated (or removed) | Internal class org.eclipse.ui.ide/org.eclipse.ui.internal.ide.model/PropertyParser should be deprecated. People should be using the extension point org.eclipse.core.runtime.contentTypes instead Note that the tags XML_FIRST_TAG and XML_DTD_NAME have already been deprecated. Can we actually remove these instead of deprecating them? | verified fixed | 9f11fc7 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/PropertyParser.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/WorkbenchResource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-08T20:15:48Z | 2004-06-14T16:20:00Z |
38,085 | Bug 38085 [IDE] Open Resource shows files in build directory as well as source directories | In a Java project, I have a Source and a Build directory. When I use the Open Resource menu to look at a non-Java file, the Open Resource window shows me both the copy in the Source directory(s) and also the one in the Build directory. I think the Build directory source should be filtered out, since it is more natural to want to edit the one in the Source directory(s) -- otherwise changes may be overwritten with the next edit to the Source file. Clearly when the source and build directories are the same then the result should not be filtered, but it should be filtered from the build directory when they are different. | verified fixed | 3315adc | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceListSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-08T18:22:55Z | 2003-05-24T21:00:00Z |
75,689 | Bug 75689 [Progress] Progress bar does not work while creating patch | Using build I200410050800. While creating a patch file, progress is always empty even if the cvs diff takes a long time. Seem to be a regression as it worked with M2... | verified fixed | 7b56216 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/operation/AccumulatingProgressMonitor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-07T14:38:53Z | 2004-10-06T08:06:40Z |
50,071 | Bug 50071 [Tasks] Got AssertionFailedException | Using 200401060800, I got this exception editing a cu with a lot of errors. org.eclipse.jface.util.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.util.Assert.isTrue(Assert.java:168) at org.eclipse.jface.util.Assert.isTrue(Assert.java:154) at org.eclipse.ui.views.markers.internal.MarkerView.getTotalMarkers(MarkerView.java:713) at org.eclipse.ui.views.markers.internal.MarkerView.updateTitle(MarkerView.java:583) at org.eclipse.ui.views.markers.internal.MarkerView$3.runInUIThread(MarkerView.java:147) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:90) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:102) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2288) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1996) at org.eclipse.jface.window.Window.runEventLoop(Window.java:586) at org.eclipse.jface.window.Window.open(Window.java:566) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate(RefactoringStarter.java:56) at org.eclipse.jdt.internal.ui.refactoring.UserInterfaceStarter.activate(UserInterfaceStarter.java:112) at org.eclipse.jdt.internal.ui.refactoring.UserInterfaceStarter.run(UserInterfaceStarter.java:68) at org.eclipse.jdt.internal.ui.refactoring.reorg.DeleteAction.run(DeleteAction.java:99) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:212) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:509) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:461) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:408) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2311) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1992) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1482) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:246) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:85) 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.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581) | verified fixed | 3f296bf | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-06T04:02:57Z | 2004-01-15T15:20:00Z |
69,424 | Bug 69424 TVT3.0: Multiple Mnemonics in Tasks -> Filters | From the main Workbench view, click the Task menu (drop down arrow) and select Filters. There are duplicated mnemonics for (D). See the attached screenshot. | resolved wontfix | 14b34bb | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogBookmarkFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogMarkerFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogProblemFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogTaskFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MnemonicAssigner.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-06T02:01:23Z | 2004-07-06T21:40:00Z |
69,423 | Bug 69423 [Tasks] TVT3.0: Multiple Mnemonics in Tasks -> Sorting screen | From the main Workbench view, click the Task menu (drop down arrow) and select Sorting. There are duplicated mnemonics for (D) and (A). See the attached screenshot. | closed fixed | 111d948 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MnemonicAssigner.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TableSortDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-05T23:38:09Z | 2004-07-06T21:40:00Z |
65,049 | Bug 65049 [Dialogs] NPE when creating folder during adding source folder while workspace is locked | 3.0RC1 - start a job holding the workspace lock during the following steps (e.g., with the org.eclipse.ui.examples.job plugin) - open properties of a Java project - on the Java Build Path Source page click Add Folder - click Create New Folder - enter some name - click Ok - press cancel in the progress dialog -> the following exception is written to the log: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.wizards.buildpaths.MultipleFolderSelectio nDialog.newFolderButtonPressed(MultipleFolderSelectionDialog.java:292) at org.eclipse.jdt.internal.ui.wizards.buildpaths.MultipleFolderSelectio nDialog$3.widgetSelected(MultipleFolderSelectionDialog.java:237) 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:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2716) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2382) at org.eclipse.jface.window.Window.runEventLoop(Window.java:668) at org.eclipse.jface.window.Window.open(Window.java:648) at org.eclipse.jdt.internal.ui.wizards.buildpaths.SourceContainerWorkboo kPage.openSourceContainerDialog(SourceContainerWorkbookPage.java:586) at org.eclipse.jdt.internal.ui.wizards.buildpaths.SourceContainerWorkboo kPage.sourcePageCustomButtonPressed(SourceContainerWorkbookPage.java:273) at org.eclipse.jdt.internal.ui.wizards.buildpaths.SourceContainerWorkboo kPage$SourceContainerAdapter.customButtonPressed(SourceContainerWorkbookPage.jav a:191) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField. buttonPressed(TreeListDialogField.java:167) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField. doButtonSelected(TreeListDialogField.java:381) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField. access$2(TreeListDialogField.java:377) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField$ 2.widgetSelected(TreeListDialogField.java:344) 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:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2716) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2382) at org.eclipse.jface.window.Window.runEventLoop(Window.java:668) at org.eclipse.jface.window.Window.open(Window.java:648) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction. java:177) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:915) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContri butionItem.java:866) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionC ontributionItem.java:785) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2716) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2382) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.jav a:253) 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(PlatformAct ivator.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.ja va:128) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces sorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) 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) java.lang.NullPointerException | verified fixed | cd41b05 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/NewFolderDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-05T19:02:22Z | 2004-06-01T17:13:20Z |
73,557 | Bug 73557 [Dialogs] Pattern matching changes Open Resource type-ahead behaviour | If I use the "Open Resource" dialog (Ctrl-Shift-r) and being typing, it lists matches as though there is an implicit '*' at the end. E.g. if I being typing "MyF", it will show "MyFunClass.java", "MyFoobar.java", etc. But if I add a '*' at the beginning, and start typing e.g. "*F", it doesn't show the same list of files. Instead, only anything ending with 'F' is shown. I've tried this with a couple of other expressions, and it seems that if any regular expression is used, the behaviour of the dialog changes -- there is no longer considered to be a '*' at the end. I think this is confusing behaviour. If I add a manually add a '*' at the end of my expression, and then begin typing before the '*', I get the behaviour that I would expect. | verified fixed | 2d81149 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceListSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-05T18:37:51Z | 2004-09-09T14:26:40Z |
75,564 | Bug 75564 Unable to cancel exit of workbench while external tools are running | When an external tool is running, and one exits the workbench, a popup appears to warn about the external tool still running. However, there is only an OK button to continue exiting the workbench. We prefer having a cancel button as well to prevent the workbench from exiting. | resolved wontfix | 8457544 | ["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 | 2004-10-05T18:28:01Z | 2004-10-04T11:40:00Z |
74,982 | Bug 74982 [Commands] Select All accelerator is available on a Tree control hosted in a TreeViewer but does not send SelectionChanged events | Select All accelerator is available on a Tree control hosted in a TreeViewer but does not send SelectionChanged events. That means: 1) The user thinks that everything is OK because the items are selected in the tree. 2) The TreeViewer is not aware of the new selection and when asked about the selected elements, returns the old selection. 3) Any code depending on the selection changed event (for example, for enablement of controls) is broken. I have tracked this down to the org.eclipse.ui.internal.commands.ws.SelectAllHandler class which calls the selectAll() method in the Tree widget but ignores the TreeViewer were the widget is hosted - the real source of the events. This can be worked around if the widget (and its associated viewer) is hosted in a view/editor by redefining the action but can hardly be done when the widget is used in a dialog box. | verified fixed | 78545b3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/SelectAllHandler.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/commands/Bug74982Test.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/commands/CommandsTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-05T16:06:42Z | 2004-09-24T18:20:00Z |
75,138 | Bug 75138 [Encoding] Eclipse's content type support should warn about conflicting settings | According to XML specification, if encoding is not specified in an XML file, XML processors should process the XML file with XML spec default encoding of UTF-8. However, IFile#getCharset() and IFile#getCharset(boolean) search and use user- defined resource encoding as the encoding for the XML file's if it's available. XML files created with user-defined resource encoding may display okay in Eclipse's Text editor. But, other XML processor may not recognize the user- defined resource encoding and may not be able to display some characters in the XML files. Here is one scenario: - change the "Text file encoding" of an existing XML file from default to BIG5 (or other encodings like Shift_JIS) - open the XML file with Eclipse Text editor - remove the encoding="UTF-8" attribute from XML declaration, if there is one - copy some BIG5 characters from a website into the clipboard - paste the BIG5 characters into the XML file - save and re-open the XML file in Eclipse Text editor - the BIG5 characters should display okay in Eclipse Text editor - but, other XML processors (like Internet Explorer) will not be able to display the BIG5 characters in the XML file Eclipse's content type support should provide a way to force the use of default charset if that's the rule for the content type (in this case, for XML). | closed fixed | abe7c5a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/ResourceEncodingFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-05T14:33:20Z | 2004-09-28T02:53:20Z |
44,467 | Bug 44467 [Decorators] Decorators not updating after importing preferences | 20031008 If you import the attached file to a workbench where there are projects loaded from CVS the decorators will not update after the load. We likely are just not listening for this change when we get it. | verified fixed | 1a96d80 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PlatformUIPreferenceListener.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-04T15:31:50Z | 2003-10-08T16:20:00Z |
74,994 | Bug 74994 [Decorators] DecoratorManager activated on startup of an empty workspace | On startup of an empty workspace, the DecoratorManager is initialized. It seems to be triggered by the ResourceNavigator (note that in this case it was not even visible since the intro view was still maximized). | verified fixed | 2288476 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java", "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 | 2004-10-04T15:16:39Z | 2004-09-24T21:06:40Z |
75,312 | Bug 75312 [Perspectives] Customize perspective command tree redawing problem | - go to the "Customize Perspective" Commands tab - select "Editor Navigation" (You see an arrow icon left to "Last edit location") in the "Menubar Details" column. - now select "Cheat Sheets" and you still see the same icon next to "Cheat Sheets..."! ==> this is a redraw problem: Put another window on top of the dialog and you'll see that the "Cheat Sheats..." has no icon associated. This could be a SWT problem... | verified fixed | 0d7c89c | ["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 | 2004-10-04T14:55:10Z | 2004-09-29T17:46:40Z |
74,059 | Bug 74059 [Viewers] ViewerLabel#hasNewImage() is wrong when setImage(..) has not been called | I200409140800 The Javadoc of ViewerLabel#hasNewImage() states: @return boolean. <code>true</code> if the image has been set to something new. But the current implementation also returns true when 'startImage' is != null, and setImage(..) has not been called. A fix could be to set 'newImage' to 'initialImage' in the constructor, and then update getImage() to just return newImage. For clients that use the pattern ... if (updateLabel.hasNewImage()) item.setImage(updateLabel.getImage()); ..., the current implementation makes them call Item#setImage(..) too often. The same problem applies to hasNewText(). | verified fixed | 52962fc | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerLabel.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-10-01T16:41:24Z | 2004-09-16T13:06:40Z |
75,420 | Bug 75420 [Preferences] Import should show busy cursor | build i0928 When you import new preferences, the file selection dialog disappears while the import happens. But at this point the UI is unresponsive since the system is busy doing the import. During this time, the cursor should be a busy cursor to show the user that something is happening. | verified fixed | 4e2636a | ["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 | 2004-10-01T13:44:10Z | 2004-09-30T21:33:20Z |
75,383 | Bug 75383 [About] About Eclipse dialog: Feature buttons not properly voiced | In the About Eclipse Platform dialog (Help -> About Eclipse Platform), the graphical buttons representing installed features are not voiced by screen readers (such as Jaws 5.10) except as "button". MS Inspect Objects indicates that there is no Name attribute. | verified fixed | 1dec43f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-30T21:06:58Z | 2004-09-30T13:13:20Z |
74,822 | Bug 74822 [Preferences] Update spec for property change events | null | verified fixed | 37814e5 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/util/PropertyChangeEvent.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-30T15:48:40Z | 2004-09-23T17:20:00Z |
73,083 | Bug 73083 [Encoding] Need to verify encodings and indicate unavailable ones | When the encodings are set up we need to ensure that they are in the list of valid encodings available from the VM. Those that are not should be indicated as such and not be selectable in the UI. | verified fixed | 036bf9a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/AbstractEncodingFieldEditor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/WorkbenchEncoding.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/encoding/EncodingTestCase.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/encoding/EncodingTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-29T15:59:57Z | 2004-09-01T17:33:20Z |
74,529 | Bug 74529 [Encoding] Encoding on properties no longer explains encoding | I200409212000 This is a regression from previous builds (e.g. 3.0): along with the encoding on the properties dialog there was an explanation where it came from, e.g. inherited from container, detected from file content. This important information has gone. | verified fixed | 293347d | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/AbstractEncodingFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/ResourceEncodingFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-28T20:27:45Z | 2004-09-22T13:33:20Z |
74,708 | Bug 74708 [Encoding] IDEEncodingPreferencePage does not disable OK when invalid encoding is entered | 20040921-2000 If you enter an invalid encoding in the IDEEncodingsPreferencePage you will still be able to select OK STEPS 1) Open the Editors preference page 2) Type ffff 3) You are warned but OK is still enabled. | verified fixed | 6473031 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEEditorsPreferencePage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-28T15:24:02Z | 2004-09-22T19:06:40Z |
75,125 | Bug 75125 [Preferences] ScopedPreferenceStore improvements. | From DJ: 1). It would be best if the silentRunning code was in a try/finally block in case there is a problem. 2). I think your code should only have to call #fireChange if old and new value are different. (unless the code does that somewhere else) | verified fixed | 5b436d4 | ["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 | 2004-09-28T14:55:06Z | 2004-09-27T21:20:00Z |
75,118 | Bug 75118 [Wizards] Primary wizards duplicates | Primary wizards are no filtering duplicates. My scenario is that we have serveral products that can be installed on the same Eclipse base. Each of these products defines its own set of primary wizards, some of which are installed by multiple products. Here is an example snippet: <extension point="org.eclipse.ui.newWizards"> <primaryWizard id="org.eclipse.jdt.ui.wizards.JavaProjectWizard"> </primaryWizard> </extension> So, the user sees lots of duplicates for primary wizards. Please try to look at this for 3.0.1.1. | closed fixed | 286934c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/NewWizardsRegistryReader.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/ApiTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/Bug75118Test.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-28T14:38:36Z | 2004-09-27T18:33:20Z |
72,615 | Bug 72615 [Viewers] Need and ITableFontProvider | We released an ITabelColorProvider for M2 - we should have a corresponding ITableFontProvider | verified fixed | 8ca7046 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ITableFontProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/TableColorProviderTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/TableFontProviderTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-28T13:44:38Z | 2004-08-25T16:06:40Z |
74,449 | Bug 74449 [Contributions] StatusLineManager creates BEGIN MIDDLE END groups at wrong time | The org.eclipse.jface.action.statuslinemanager currently creates the BEGIN_GROUP MIDDLE_GROUP and END_GROUP entries in its createControl() method. Code wishing to contribute controls to the statuslinemanager in the fillActionBars method of the workbench advisor executes before the control is created, and get exceptions thrown because the groups that the controls are being appended to do not yet exist. This code: add(new GroupMarker(BEGIN_GROUP)); add(new GroupMarker (MIDDLE_GROUP)); add(new GroupMarker(END_GROUP)); should be moved from createControl to the constructor of the statuslinemanager. Patch to follow | verified fixed | 55fe7c2 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLineManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-27T19:08:58Z | 2004-09-21T18:06:40Z |
74,528 | Bug 74528 [Examples] deprecated methods in Readme Tool UI Example | The method getPlugin(String) from the type Platform is deprecated AddReadmeMarkerAction.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 91 The method getDescriptor() from the type Plugin is deprecated ReadmeImages.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 22 The method getInstallURL() from the type IPluginDescriptor is deprecated ReadmeImages.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 22 The method getPluginRegistry() from the type Platform is deprecated ReadmeModelFactory.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 115 The type IPluginRegistry is deprecated ReadmeModelFactory.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 115 The method getExtensionPoint(String, String) from the type IPluginRegistry is deprecated ReadmeModelFactory.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 116 The type IPluginDescriptor is deprecated ReadmePlugin.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 13 The type IPluginDescriptor is deprecated ReadmePlugin.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 31 The constructor AbstractUIPlugin(IPluginDescriptor) is deprecated ReadmePlugin.java org.eclipse.ui.examples.readmetool/Eclipse UI Examples Readme Tool/org/eclipse/ui/examples/readmetool line 32 | resolved fixed | 6e15930 | ["examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/AdaptableList.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/AddReadmeMarkerAction.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/DefaultSectionsParser.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/EditorActionDelegate.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/MarkElementProperties.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmeCreationWizard.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmeFilePropertyPage.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmeFilePropertyPage2.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmeImages.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmeModelFactory.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmePlugin.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmePreferenceInitializer.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ReadmePreferencePage.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/ViewActionDelegate.java", "examples/org.eclipse.ui.examples.readmetool/Eclipse", "UI", "Examples", "Readme", "Tool/org/eclipse/ui/examples/readmetool/WindowActionDelegate.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-27T17:56:48Z | 2004-09-22T13:33:20Z |
74,526 | Bug 74526 [Examples] deprecated methods in PropertySheet UI Example | The type IPluginDescriptor is deprecated PropertySheetPlugin.java org.eclipse.ui.examples.propertysheet/Eclipse UI Examples PropertySheet/org/eclipse/ui/examples/propertysheet line 13 The type IPluginDescriptor is deprecated PropertySheetPlugin.java org.eclipse.ui.examples.propertysheet/Eclipse UI Examples PropertySheet/org/eclipse/ui/examples/propertysheet line 29 The constructor AbstractUIPlugin(IPluginDescriptor) is deprecated PropertySheetPlugin.java org.eclipse.ui.examples.propertysheet/Eclipse UI Examples PropertySheet/org/eclipse/ui/examples/propertysheet line 30 Note: This example requires the compatibility plugin currently. | verified fixed | 8229c7c | ["examples/org.eclipse.ui.examples.propertysheet/Eclipse", "UI", "Examples", "PropertySheet/org/eclipse/ui/examples/propertysheet/PropertySheetPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-27T17:18:10Z | 2004-09-22T13:33:20Z |
59,829 | Bug 59829 [Dialogs] Working set created by the Team Project Set import wizard misses an icon | Steps to reproduce: 1. File > Import > Team Project Set 2. choose to Create a working set containing the imported project 3. after the projects have been imported, go to the Select Working Set dialog 4. the new working set has no icon I think that after the workbench is restarted the icon is there. | resolved fixed | d87b7b9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkingSet.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-24T21:50:46Z | 2004-04-23T19:53:20Z |
74,932 | Bug 74932 [KeyBindings] The Key Assist Action should be available from the Help menu | The new Key Assist action is useful but there is currently no way to discover CTRL+SHIFT+L in the UI (at least I didn't find it). I suggest to make this action available from the Help menu. | verified fixed | 76d95cc | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/ExecutableExtensionHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/IWorkbenchWindowHandlerDelegate.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/ShowKeyAssistHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/WorkbenchWindowHandlerDelegate.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-24T20:08:45Z | 2004-09-24T07:13:20Z |
74,535 | Bug 74535 [Preferences] Importing preferences does not fire property change events | M2 Importing preferences does not cause property change events to be fired. Set a breakpoint in ActivityPersistanceHelper, line 88 and then try and import the file i am about to attach. No events are recieved. | verified fixed | ee8d149 | ["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 | 2004-09-22T18:18:24Z | 2004-09-22T13:33:20Z |
74,472 | Bug 74472 [Preferences] ScopedPreferenceStore.isDefault() returns false when the pref has been set to the default value | Set pref to it's default value. isDefault() now returns false. | verified fixed | 1664dee | ["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 | 2004-09-21T20:41:47Z | 2004-09-21T20:53:20Z |
74,296 | Bug 74296 [KeyBindings] new key page is huge | 3.1 (M2) The new key View panel is absolutely huge. It expands the dialog to be the width of my entire screen. There is much wasted space and the export button is cut off. Cap forthcoming. | verified fixed | 2887209 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/KeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-20T19:35:02Z | 2004-09-20T14:20:00Z |
74,319 | Bug 74319 [Preferences] Some preferences aren't persisted on shutdown | I200409200800 (JXE), GTK+ 2.4.9, KDE 3.3, Linux 2.6.8.1 Some preferences are not persisted on shutdown. Confirmed on all platforms: text preferences. Possibly also show intro view, prompt on exit, etc. Setting this as critical, as I'm not sure if this data is lost or simply ignored. If it is just ignored, then downgrade to major. | verified fixed | 0fbe831 | ["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 | 2004-09-20T18:47:39Z | 2004-09-20T17:06:40Z |
58,976 | Bug 58976 [EditorMgmt] (regression) Editor drop-down is missing asterisk | build I20040413 If you drop down the editor list when some editors are dirty, it's not immediately obvious which ones are dirty since the asterisk is placed at the end, not at the beginning. This is inconsistent with the tab presentation. This change was made because the asterisk was throwing off the sort order, but it should be possible to sort based on the editor input, and only adding the asterisk (at the beginning) when presenting the sorted list. I think this should be addressed for M9. | verified fixed | ec7b745 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/BasicPartList.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-20T18:01:56Z | 2004-04-17T05:33:20Z |
74,172 | Bug 74172 [Presentations] Outline view tool bar drawn on top of view | I200409140800, GTK+ 2.4.4, KDE 3.3.0, Linux 2.6.8.1 While moving between perspectives, I noticed that the z-order of the components in the Outline had become messed up. I'm not sure if this is reproducible. STEPS: 1.) Open WorkbenchWindow (with changes) in the Java perspective. 2.) Switch to the Team Synchronizing perspective. 3.) Open a compare editor on WorkbenchWindow. 4.) Switch back to the Java perspective. 5.) Switch back to the WorkbenchWindow Java editor. | verified fixed | cf7d439 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/newapi/PresentablePartFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/PresentablePartFolder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-20T16:56:43Z | 2004-09-17T14:06:40Z |
73,905 | Bug 73905 [KeyBindings] Multi-stroke shortcut helper popup displaced | null | verified fixed | 39d8481 | ["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 | 2004-09-20T16:13:45Z | 2004-09-14T19:26:40Z |
73,359 | Bug 73359 [Workbench] NPE WorkbenchWindow.firePerspectiveChanged | Got NPE during exit. !SESSION Sep 07, 2004 12:36:38.805 --------------------------------------------- eclipse.buildId=I200409011200 java.version=1.4.2_05 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_CH Command-line arguments: -update -keyring c:\eclipse\.keyring -application org.eclipse.ui.ide.workbench -showlocation !ENTRY org.eclipse.ui 4 4 Sep 07, 2004 12:36:38.805 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 Sep 07, 2004 12:36:38.815 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchWindow.firePerspectiveChanged(WorkbenchWindow.java:894) at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:948) at org.eclipse.ui.internal.WorkbenchPage.closeAllEditors(WorkbenchPage.java:880) at org.eclipse.ui.internal.WorkbenchPage.dispose(WorkbenchPage.java:1253) at org.eclipse.ui.internal.WorkbenchWindow.closePage(WorkbenchWindow.java:644) at org.eclipse.ui.internal.WorkbenchPage$3.run(WorkbenchPage.java:848) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.close(WorkbenchPage.java:846) at org.eclipse.ui.internal.WorkbenchPage.closeAllPerspectives(WorkbenchPage.java:1123) at org.eclipse.ui.internal.PerspectiveSwitcher$10.widgetSelected(PerspectiveSwitcher.java:840) 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:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2783) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2442) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:684) at org.eclipse.core.launcher.Main.main(Main.java:668) | verified fixed | 54111e3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/UIStats.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-20T15:44:28Z | 2004-09-07T09:40:00Z |
67,590 | Bug 67590 [Presentations] The 'Save All' command has no effect | Sometimes, invoking the 'Save All' command (from the menu or as Shift+Ctrl+S) does not have any effect -- the file is not saved (while 'Save' works). It will not work until I restart Eclipse. | verified fixed | 216b4e9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WWinPartService.java", "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 | 2004-09-20T15:27:53Z | 2004-06-17T08:13:20Z |
74,185 | Bug 74185 UIJobTest has potential concurrency failure | The UIJobTest is testing flags prematurely. The assertions wait until while (!testJobRan) { } Is complete testJobRan is set to true within testJob so it is possible for the while loop to break out before the join is completed here: delayJob.join(); thereby checking the flag before the job is done and preventing backgroundThreadFinished from getting set. Removing this test altogether fixes this and keeps the main test (for a join). Also all of the booleans should be volatile to prevent copies being created in dual processors. | verified fixed | f1edc77 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/UIJobTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-17T20:00:49Z | 2004-09-17T14:06:40Z |
73,962 | Bug 73962 [IDE] NPE in CopyFilesAndFoldersOperation when overwriting existing folder | null | verified fixed | dbfa2b2 | ["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 | 2004-09-17T18:57:45Z | 2004-09-15T06:33:20Z |
56,957 | Bug 56957 [Encoding] Reusable EncodingFieldEditor | I have added the ability to set an encoding for a repository so that commit messages and file names can be properly translated between a client and server whose encodings differ. I have extracted much of the code from IDEEditorsPreferencePage into an EncodingFieldEditor class so I could us it. I was planning on providing a patch to the UI with the hope that this class could be API but there is a roadblock that prevents this. Basically, the encoding preference is in a org.eclipse.core.Preferences node but a field editor requires an IPreferenceStore. There are already two adapters for this is the platform but one is a private inner class of AbstractUIPlugin and the other lives in the text plugin. Instead of creating a patch, I'm just attaching the EncodingFieldEditor class for future consideration. | verified fixed | 22b03e4 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/AbstractEncodingFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/EncodingFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEEditorsPreferencePage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceEncodingFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-16T19:32:15Z | 2004-03-31T19:06:40Z |
72,217 | Bug 72217 CTabFolder should hide tabs in LRU order | If CTabFolder does not have enough space to render all of its tabs, it should display the N most recently used tabs rather than the tabs immediately adjacent to the selected tab. This should not affect the relative ordering of tabs. For example: CTabItem item0 = new CTabItem(folder, SWT.NONE, 0); CTabItem item1 = new CTabItem(folder, SWT.NONE, 1); CTabItem item2 = new CTabItem(folder, SWT.NONE, 2); In this case, item0 should always be to the left of item2 whenever both are displayed at the same time. If item1 is the least recently used tab, then item0 should appear immediately adjacent to item2 whenever there is only space for two tabs. | resolved fixed | b260ff4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/PaneFolder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-16T18:53:51Z | 2004-08-18T20:13:20Z |
73,715 | Bug 73715 [Workbench] (regression) Workbench menus disappeared after closing the perspective | We have several menu items on the RCP workbench, when we close the perspective from the perspective bar,(right mouse click on the perspective tab and select close) the menu items on the workbench all disappeared. This leaves the workbench in a state that is not useable. I am attaching the RCP tutorial part3, the only change I made to the tutorial code was to add configurer.setShowPerspectiveBar(true); We are running Eclipse 3.0.1 M2, this used to work in Eclipse 3.0 | resolved fixed | 712ac94 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/SubContributionManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/action/SubMenuManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActionSetMenuManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-15T16:40:43Z | 2004-09-10T21:00:00Z |
73,926 | Bug 73926 [Decorators] [RCP] NoClassDefFoundError: org/eclipse/ui/internal/progress/TaskInfo | We are building an RCP application based on 3.0 Eclipse. In general, things work extremely well. We have an intermittent problem during application shutdown where we get the above NoClassDefFoundError. It appears that this is probably a race condition that causes the associated classloader to be shut down before the decorators thread has been stopped. Because this happens during shutdown, it does not have a detrimental effect on the running of the application, although it may induce some concern amongst users of the application if it occurs. The full stack trace that is written to the console follows: java.lang.NoClassDefFoundError: org/eclipse/ui/internal/progress/TaskInfo at org.eclipse.ui.internal.progress.JobInfo.beginTask(JobInfo.java:150) at org.eclipse.ui.internal.progress.ProgressManager$JobMonitor.beginTask(ProgressManager.java:167) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:220) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66) | verified fixed | 067e808 | ["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 | 2004-09-15T15:10:11Z | 2004-09-14T19:26:40Z |
68,880 | Bug 68880 [Progress] NewProgressViewer uses hard coded colours | R3.0 The NewProgressViewer uses a series of hard coded colours for its hyperlinks. It should use the values set in the workbench. You should use HYPERLINK_COLOR ACTIVE_HYPERLINK_COLOR ERROR_COLOR from JFacePreferences here is the problem code linkColor= display.getSystemColor(SWT.COLOR_DARK_BLUE); linkColor2= display.getSystemColor(SWT.COLOR_BLUE); errorColor= display.getSystemColor(SWT.COLOR_DARK_RED); errorColor2= display.getSystemColor(SWT.COLOR_RED); highlightColor= display.getSystemColor(SWT.COLOR_DARK_RED); | verified fixed | 55f2c47 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/NewProgressViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-15T14:48:38Z | 2004-06-29T17:26:40Z |
72,794 | Bug 72794 [Decorators] Hierarchy view shows wrong visibility for public method [type hierarchy] | 3.1 I200408241200 Visibility decorations are all wrong for methods in Hierarchy view. See attached screenshot. | verified fixed | 351de76 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-14T13:07:01Z | 2004-08-27T15:20:00Z |
73,027 | Bug 73027 [Dialogs] Buttons are too high | I20040831 Buttons are no longer oval but have a rounded rectangle shape (see first screenshot). The second screenshot shows how buttons using the small system font should look like. | verified fixed | ff97666 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/Dialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogPage.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/ColorFieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FontFieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/ListEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferencePage.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/StringButtonFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariableDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariablesGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ProjectCapabilityEditingPropertyPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TableSortDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/KeysPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/EditorSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PreferenceImportExportFileSelectionPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PreferenceImportExportSettingsSelectionPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-13T14:24:58Z | 2004-09-01T09:13:20Z |
73,109 | Bug 73109 [ViewMgmt] Composite leaked from tool bar wrapper in ViewPane | 20040831 The toolbarwrapper Composite(and its EnhancedFillLayout) that are created in org.eclipse.ui.internal.ViewPane.createToolBars() (line 258) are not getting GC'd. For example for each open/close of a PackageExplorer, one Composite is leaked. | verified fixed | e913fe4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewPane.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-10T20:56:37Z | 2004-09-01T23:06:40Z |
71,464 | Bug 71464 [ViewMgmt] [RCP] Allow zoom out behavior for view stacks to be more like editor stacks. | We have cases where we would not like the zoomed state of a view stack to zoom out when a new view is opened or closed in the same stack. To reproduce: 1. launch the workbench 2. maximize the "Tasks" view 3. select the "Show view" menu and show the "Console" view. problem: the console view opens in the same stack that is zoomed, however the layout is still updated and the stack zooms out. Some users may expect behavior similar to the editor area, where the editor area does not zoom out when a new editor part is opened in the same editor stack. To demonstrate another valid use case for this, 1. install the rcp browser demo example plug-in 2. change the plugin.xml such that the perspective is not fixed 3. show the history view 4. zoom the browser view 5. show another browser view via File | New Tab problem: the stack zooms out, showing the history view again, this seems jarring to the end user. | verified fixed | f1bdf3a | ["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/zoom/ActivateTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/CloseEditorTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/CloseTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/HideViewTest.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/ZoomPerspectiveFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ZoomTestCase.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ZoomTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ZoomedEditorActivateTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ZoomedEditorCloseTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/zoom/ZoomedViewActivateTest.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 | 2004-09-10T18:39:44Z | 2004-08-05T12:46:40Z |
73,086 | Bug 73086 [Encoding] Remove hard coded encodings | When we have an encoding extension point the current hard coded values should be moved to it in both the ide and the workbench. | verified fixed | 0bd7f66 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/WorkbenchEncoding.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-10T13:02:55Z | 2004-09-01T17:33:20Z |
73,556 | Bug 73556 [Encoding] Changing editor encoding causes Eclipse to freeze for a while | Here's my setup: - latest 3.0.1 build (M20040908) - large number of projects in my workspace (i.e. all of Eclipse loaded from the repository) - latest IBM VM and JXE support I changed the encoding on the Editors preference page and clicked OK. There's was a fairly long (probably in the order of a minute) delay where there was something going on but there was no progress indication. At first, Eclipse was totally frozen (i.e. I could not even move the mouse). The preferences dialog remained open with OK diabled but Cancel enabled. Once the mouse was movable again, there was a busy cursor when the mouse was over the workbench but not when the mouse was over the preferences dialog. Eventually the dialog closed and a build was launched. I don't know what changing the encoding involves but clearly there is some pretty intensive work that is happening inside a busy cursor. Either this should be done in a progress dialog or a background job. | verified fixed | 73003e7 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEEncoding.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-09T21:18:24Z | 2004-09-09T14:26:40Z |
73,058 | Bug 73058 [Images] ImageDescriptor.createImage() javadoc needs dispose() reference | org.eclipse.jface.resource.ImageDescriptor.createImage() javadoc needs dispose reference. When creating images using the above call, the Javadoc just says that a new image is created. Reciently I had troubles with a "No more handles" bug, which turned out to be that I was never disposing of the images I had created. It would be very useful to have the Javadoc for the createImage() calls mention that all images must be explictly disposed of. Mentioning this might help other people avoid this problem in the future. Something along the lines of: Note: All Images created using this call must be explictly disposed of using the dispose() call. They will not be automatically garbage collected. | verified fixed | 0da0194 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ImageDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-08T17:46:59Z | 2004-09-01T14:46:40Z |
73,192 | Bug 73192 [Tests] Fix the PartsReferencesTestSuite so that it does not hang on the Mac | null | verified fixed | abd45b1 | ["tests/org.eclipse.ui.tests/Eclipse", "Part", "References", "Test/org/eclipse/ui/parts/tests/util/PartsWorkbenchAdvisor.java", "tests/org.eclipse.ui.tests/UI", "Test", "Utils/org/eclipse/ui/tests/util/PlatformUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-07T19:03:44Z | 2004-09-02T21:20:00Z |
73,127 | Bug 73127 [Encoding] Expecting resource delta if workbench encoding changes | I20040901 We now get a resource delta if the explicit encoding of a file or (if not explicitly set or extracted from file) its parent container's encoding changes. If all parent containers use workbench encoding then the workbench encoding gets used but no resource delta is sent for that file if the workbench encoding changes. This forces clients which need to handle encoding changes to listen for resource deltas and UI property change events. | verified fixed | ada64b0 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEEncoding.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-07T18:42:40Z | 2004-09-02T07:26:40Z |
73,082 | Bug 73082 [Encoding] Need an encoding extension point | We need to have an extension point for encodings. All it need have is the IDs of the encodings that are to be added to the list. It will require verification and indication of unavailable encodings. | verified fixed | d0f767a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEEncoding.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEEditorsPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/WorkbenchEncoding.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IWorkbenchConstants.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-02T18:25:39Z | 2004-09-01T17:33:20Z |
72,868 | Bug 72868 [Progress] Blocked by invisible job | 20040824 After starting eclipse on a old, big workspace I selected to import plugins and fragments. On finish, the blocking dialog showed up, but the only entry listed was the 'import plugin' itself. After 10 minutes the blocking dialog was gone, so it seems that a job was blocking that was not shown in the list. I suspect a system job that didn't cancel -> The blocked dialog should offer to show system jobs or detect the situation where it waits for a job not shown in the UI and then shows that Job (at least for debugging reasons to see which system job caused the blockade) | verified fixed | 5131f10 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/Policy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/BlockedJobsDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/NewProgressViewer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressContentProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorJobsDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressViewerContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-09-01T14:33:08Z | 2004-08-30T10:00:00Z |
72,930 | Bug 72930 [Viewers] TableViewer.reveal() documentation | The documentation for TableViewer.reveal() does not say that it requires a tableItem and silently ignores all other objects. | verified fixed | 7592aa7 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-31T18:33:19Z | 2004-08-31T05:26:40Z |
72,727 | Bug 72727 [JFace] ColorFieldEditor doesn't call setPresentsDefaultValue(), unexpected results after Restore Defaults is pressed | Version: 3.0.1 Build id: 200408050912 In Preference page using ColorFieldEditor where default color is blue, 1) Change color to red 2) Press "Restore Defaults," color changes back to blue, boolean value isDefaultPresented is set to true in FieldEditor.loadDefault() 3) Change color to red. UI displays red, but preference is still set to default blue, since in FieldEditor.store() if (isDefaultPresented) { preferenceStore.setToDefault(preferenceName); } else { doStore(); } Other field editors have a selectionListener that setPresenetsDefaultValue (true). Can you do the same thing in ColorFieldEditor's PropertyChangeListener? eclipse.buildId=I200406192000 | closed fixed | 051f40b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/ColorFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-30T20:34:58Z | 2004-08-26T19:53:20Z |
64,930 | Bug 64930 [Progress] Strange build behaviour when autobuild is off and workspace locked | null | verified fixed | c30a8fc | ["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/ProgressMonitorFocusJobDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-30T20:11:08Z | 2004-06-01T14:26:40Z |
59,812 | Bug 59812 Progress dialog cuts off info, need separate line for size. | In the attached png, you can see that the CVS progress dialog displays a file name and "(x of y bytes)" post fix. Unfortunately, when the line wraps to a second line, only the top half of the line is displayed. Suggestion: provide a separate second line text field to display size progress. Version 3.0.m8 | verified fixed | 12947d8 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ProgressMonitorDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-30T15:50:22Z | 2004-04-23T17:06:40Z |
71,294 | Bug 71294 Capabilities Preference Deselection. | Capabilities are difficult to deselect if they show up under several categories which is a real problem for our product because we have many capabilities being duplicated under serveral categories. Rather than the more elaborate solution suggested by 69143, I would like to propose this alternative low risk one so we can push it into 3.0.1. When a user unchecks a capability, a listener should pick up that event and ensure that all occurances of that capability are also unchecked in the tree. Likewise, when a capability is checked, all other occurances should also be checked. Similar logic should also be put in place so when a category is either checked or unchecked (and hence all the cabilities defined in it are as well) the changes are effected on all occurances of the capabilties defined under the category. | closed fixed | b508744 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/ActivityCategoryContentProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/ActivityEnabler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-30T14:49:39Z | 2004-08-03T16:20:00Z |
58,315 | Bug 58315 AbstractUIPlugin#getImageRegistry not usable | The concept of AbstractUIPlugin#getImageRegistry should be reworked now new API is available. 1. The default constructor of ImageRegistry uses Display.getCurrent() without checking if the thread is valid. 2. AbstractUIPlugin#createImageRegistry invokes default constructor of ImageRegistry but doesn't ensure the UI thread is used (throws exception). 3. If the constructor ImageRegistry(Display) is used, the #hookDisplayDispose doesn't ensure the right thread is used (throws exception) Example: When accessing the image registry for the first time from within a lightwight decorator (my example) the thread is different (not the ui thread). Possible Solution: 1. Modify ImageRegistry#hookDisplayDispose to get executed inside the thread of the display 2. Modify AbstractUIPlugin#createImageRegistry to call ImageRegistry(Display) with the display obtained from the workbench (AbstractUIPlugin#getWorkbench#getDisplay) | verified fixed | be20bac | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/plugin/AbstractUIPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-30T14:19:33Z | 2004-04-13T15:26:40Z |
65,061 | Bug 65061 [encoding] duplicated message when error setting encoding happens | 3.0 RC1 When a CoreException happens on setting the charset for a given resource, the same message is shown twice. The double message is due to the fact that the CoreException message is always equal to the status message. There is value in showing both of them. An option would be to show the message in the internal exception that caused the CoreException (CoreException.getStatus().getException()). To reproduce: 1 - disabled auto-refresh 2 - set the encoding of a file (file.txt) in a project to be something I wanted (causing a preferences file to be created in the .settings dir) 3 - opened the project preferences file (.settings/org.eclipse.core.resources.prefs) externally (using a system editor - Notepad) and changed the corresponding entry to be something else, and saved, causing the preferenecs file to be out-of-sync 4 - tried to set the encoding for file.txt to be something else. When pressing ok, an "Internal error" dialog will show up saying: "Could not save encoding settings", reason: "Could not save encoding settings". | verified fixed | a19ba58 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-27T17:24:40Z | 2004-06-01T17:13:20Z |
72,639 | Bug 72639 Maximize/Minimize animations slow and annoying | Eclipse 3.1 I200308241200 The feature "Enable animations" results in an animation every time I maximize or minimize an editor or view. 1) It is way too slow - I am waiting to type or do something while the rectangles draw over my screen 2) It doesn't help me in any way. I know what maximize and minimize are supposed to do and I do not need an animation to make it more obvious. Maximize and minimize are pretty standard Window Manager actions and I don't think any user needs them made more obvious. I have turned this feature off in the preferences page but there may be other animations that are useful that I would like to see. Please restrict the use of animations to areas where they are useful. | verified fixed | a65d191 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-27T03:00:00Z | 2004-08-25T21:40:00Z |
72,495 | Bug 72495 [Viewers] NullPointerException when updating projects | Build id: 200408170800 I was updating some projects in the synchronize view when the following two error occurred: Error Aug 24, 2004 08:58:56.227 Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:2691) at org.eclipse.swt.SWT.error(SWT.java:2616) at org.eclipse.swt.SWT.error(SWT.java:2587) at org.eclipse.swt.widgets.Widget.error(Widget.java:381) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:283) at org.eclipse.swt.widgets.TreeItem.setImage(TreeItem.java:710) at org.eclipse.jface.viewers.TreeViewer.doUpdateItem(TreeViewer.java:116) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:86) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:488) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:135) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:1432) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1415) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1342) at org.eclipse.team.internal.ui.synchronize.SynchronizeModelProvider$LabelUpdateJob.runInUIThread(SynchronizeModelProvider.java:93) 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:106) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2760) at org.eclipse.swt.widgets.Display.msgFilterProc(Display.java:2250) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:222) at org.eclipse.swt.widgets.Display.runPopups(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2436) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) Error Aug 24, 2004 08:58:56.227 Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". java.lang.NullPointerException at org.eclipse.jface.viewers.StructuredViewer.dumpMap(StructuredViewer.java:1478) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.handleException(AbstractTreeViewer.java:95) at org.eclipse.core.internal.runtime.InternalPlatform.handleException(InternalPlatform.java:349) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:617) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:488) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:135) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:1432) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1415) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1342) at org.eclipse.team.internal.ui.synchronize.SynchronizeModelProvider$LabelUpdateJob.runInUIThread(SynchronizeModelProvider.java:93) 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:106) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2760) at org.eclipse.swt.widgets.Display.msgFilterProc(Display.java:2250) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:222) at org.eclipse.swt.widgets.Display.runPopups(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2436) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) | verified fixed | c04ae37 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-25T18:09:38Z | 2004-08-24T12:20:00Z |
72,596 | Bug 72596 [Tests] Porting keyboard events from AWT's robot to SWT's "Display.post" | In 3.0, SWT introduced a "Display.post(Event)" method to generate low level keyboard and mouse events. I am attaching a patch that replaces the AWT Robot calls in the KeysTestSuites tests with SWT's "Display.post". I have found it to work better across platforms on the SWT display. | resolved fixed | dad1920 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/Bug43538Test.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/Bug43610Test.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/keys/Bug53489Test.java", "tests/org.eclipse.ui.tests/UI", "Test", "Utils/org/eclipse/ui/tests/util/AutomationUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-25T17:48:45Z | 2004-08-25T16:06:40Z |
68,180 | Bug 68180 [ActivityMgmt] Capabilities Preference page tree expansion | The tree should not always be fully expanded. The problem I have is that many of our categories are fairly long, and this forces the user to scroll past much of the tree to find what they are looking for. I suggest the tree should be fully expanded only if the entire expanded tree does not require a vertical scrollbar. | closed fixed | b491380 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/ActivityEnabler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-25T14:19:16Z | 2004-06-22T16:00:00Z |
72,252 | Bug 72252 [ActivityMgmt] Handling of dynamic plugin loading does not set preference defaults | If a new plugin that contains activities is brought into the system at runtime the default enablement of the new activities is not honoured. | verified fixed | 4c08c43 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActivityPersistanceHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-25T13:52:03Z | 2004-08-19T12:53:20Z |
72,526 | Bug 72526 [ActivityMgmt] Recode the 'restore defaults' option for the activity enabler | A hack was used for 3.0 to provide the restore defaults ability of the activity enabler. Now that we have IActivity.isDefaultEnabled() API we no longer need this hack and it should be removed. | verified fixed | c34668a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/ActivityEnabler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-24T18:09:55Z | 2004-08-24T17:53:20Z |
72,499 | Bug 72499 I200408240800 will not start | This has been tested on both Windows XP and GTK+. Eclipse will fail to start with the following exception. (A slightly different trace will appear if you are set up to prompt for which workspace to use.) java.lang.ExceptionInInitializerError at org.eclipse.ui.internal.WorkbenchConfigurer.declareImage(WorkbenchConfigurer.java:93) at org.eclipse.ui.internal.ide.IDEWorkbenchAdvisor.declareWorkbenchImage(IDEWorkbenchAdvisor.java:1025) at org.eclipse.ui.internal.ide.IDEWorkbenchAdvisor.declareWorkbenchImages(IDEWorkbenchAdvisor.java:887) at org.eclipse.ui.internal.ide.IDEWorkbenchAdvisor.initialize(IDEWorkbenchAdvisor.java:172) at org.eclipse.ui.application.WorkbenchAdvisor.internalBasicInitialize(WorkbenchAdvisor.java:165) at org.eclipse.ui.internal.Workbench.init(Workbench.java:820) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1383) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:263) 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:335) 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:582) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) Caused by: java.lang.NullPointerException at org.eclipse.jface.resource.ImageRegistry.hookDisplayDispose(ImageRegistry.java:183) at org.eclipse.jface.resource.ImageRegistry.<init>(ImageRegistry.java:80) at org.eclipse.jface.resource.ImageRegistry.<init>(ImageRegistry.java:67) at org.eclipse.ui.internal.WorkbenchImages.initializeImageRegistry(WorkbenchImages.java:475) at org.eclipse.ui.internal.WorkbenchImages.<clinit>(WorkbenchImages.java:97) ... 20 more | verified fixed | c61fb08 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ImageRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-24T13:58:45Z | 2004-08-24T15:06:40Z |
72,272 | Bug 72272 [ViewMgmt] NPEs on shutdown of I20040817 | I got a tring of NPEs when quiting Eclipse (using I20040817). Here they are. !ENTRY org.eclipse.core.runtime 4 2 Aug 19, 2004 10:21:59.994 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.views.markers.internal.TableView.saveState (TableView.java:395) at org.eclipse.ui.views.markers.internal.TaskView.saveState (TaskView.java:201) at org.eclipse.ui.internal.ViewFactory$3.run(ViewFactory.java:601) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.ViewFactory.saveViewState (ViewFactory.java:599) at org.eclipse.ui.internal.ViewFactory.saveState(ViewFactory.java:579) at org.eclipse.ui.internal.WorkbenchPage.saveState (WorkbenchPage.java:2675) at org.eclipse.ui.internal.WorkbenchWindow.saveState (WorkbenchWindow.java:1955) at org.eclipse.ui.internal.Workbench.saveState(Workbench.java:1460) at org.eclipse.ui.internal.Workbench.recordWorkbenchState (Workbench.java:1217) at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:1214) at org.eclipse.ui.internal.Workbench$9.run(Workbench.java:451) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:449) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:413) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:598) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.Workbench.close(Workbench.java:571) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:489) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.Window.handleShellCloseEvent (Window.java:614) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:561) 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:796) 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.Decorations.closeWidget (Decorations.java:238) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1453) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1472) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) !ENTRY org.eclipse.core.runtime 4 2 Aug 19, 2004 10:22:00.10 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.pde.internal.runtime.logview.LogView.saveState (LogView.java:753) at org.eclipse.ui.internal.ViewFactory$3.run(ViewFactory.java:601) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.ViewFactory.saveViewState (ViewFactory.java:599) at org.eclipse.ui.internal.ViewFactory.saveState(ViewFactory.java:579) at org.eclipse.ui.internal.WorkbenchPage.saveState (WorkbenchPage.java:2675) at org.eclipse.ui.internal.WorkbenchWindow.saveState (WorkbenchWindow.java:1955) at org.eclipse.ui.internal.Workbench.saveState(Workbench.java:1460) at org.eclipse.ui.internal.Workbench.recordWorkbenchState (Workbench.java:1217) at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:1214) at org.eclipse.ui.internal.Workbench$9.run(Workbench.java:451) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:449) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:413) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:598) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.Workbench.close(Workbench.java:571) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:489) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.Window.handleShellCloseEvent (Window.java:614) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:561) 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:796) 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.Decorations.closeWidget (Decorations.java:238) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1453) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1472) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) !ENTRY org.eclipse.core.runtime 4 2 Aug 19, 2004 10:22:00.26 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.views.markers.internal.TableView.saveState (TableView.java:395) at org.eclipse.ui.views.markers.internal.ProblemView.saveState (ProblemView.java:109) at org.eclipse.ui.internal.ViewFactory$3.run(ViewFactory.java:601) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.ViewFactory.saveViewState (ViewFactory.java:599) at org.eclipse.ui.internal.ViewFactory.saveState(ViewFactory.java:579) at org.eclipse.ui.internal.WorkbenchPage.saveState (WorkbenchPage.java:2675) at org.eclipse.ui.internal.WorkbenchWindow.saveState (WorkbenchWindow.java:1955) at org.eclipse.ui.internal.Workbench.saveState(Workbench.java:1460) at org.eclipse.ui.internal.Workbench.recordWorkbenchState (Workbench.java:1217) at org.eclipse.ui.internal.Workbench.access$5(Workbench.java:1214) at org.eclipse.ui.internal.Workbench$9.run(Workbench.java:451) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:449) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:413) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:598) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.Workbench.close(Workbench.java:571) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:489) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.Window.handleShellCloseEvent (Window.java:614) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:561) 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:796) 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.Decorations.closeWidget (Decorations.java:238) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1453) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1472) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) !ENTRY org.eclipse.core.runtime 4 2 Aug 19, 2004 10:22:06.729 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.views.markers.internal.MarkerView.dispose (MarkerView.java:362) at org.eclipse.ui.views.markers.internal.TaskView.dispose (TaskView.java:182) at org.eclipse.ui.internal.WorkbenchPartReference.dispose (WorkbenchPartReference.java:404) at org.eclipse.ui.internal.ViewFactory$ViewReference.dispose (ViewFactory.java:83) at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1254) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.WorkbenchPage.dispose (WorkbenchPage.java:1252) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages (WorkbenchWindow.java:603) at org.eclipse.ui.internal.WorkbenchWindow.hardClose (WorkbenchWindow.java:1069) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:492) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$10.run(Workbench.java:482) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:478) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:413) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:598) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.Workbench.close(Workbench.java:571) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:489) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.Window.handleShellCloseEvent (Window.java:614) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:561) 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:796) 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.Decorations.closeWidget (Decorations.java:238) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1453) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1472) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) !ENTRY org.eclipse.core.runtime 4 2 Aug 19, 2004 10:22:06.823 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.pde.internal.runtime.logview.LogView.dispose (LogView.java:441) at org.eclipse.ui.internal.WorkbenchPartReference.dispose (WorkbenchPartReference.java:404) at org.eclipse.ui.internal.ViewFactory$ViewReference.dispose (ViewFactory.java:83) at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1254) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.WorkbenchPage.dispose (WorkbenchPage.java:1252) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages (WorkbenchWindow.java:603) at org.eclipse.ui.internal.WorkbenchWindow.hardClose (WorkbenchWindow.java:1069) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:492) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$10.run(Workbench.java:482) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:478) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:413) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:598) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.Workbench.close(Workbench.java:571) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:489) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.Window.handleShellCloseEvent (Window.java:614) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:561) 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:796) 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.Decorations.closeWidget (Decorations.java:238) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1453) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1472) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) !ENTRY org.eclipse.core.runtime 4 2 Aug 19, 2004 10:22:06.854 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.views.markers.internal.MarkerView.dispose (MarkerView.java:362) at org.eclipse.ui.views.markers.internal.ProblemView.dispose (ProblemView.java:97) at org.eclipse.ui.internal.WorkbenchPartReference.dispose (WorkbenchPartReference.java:404) at org.eclipse.ui.internal.ViewFactory$ViewReference.dispose (ViewFactory.java:83) at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1254) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.WorkbenchPage.dispose (WorkbenchPage.java:1252) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages (WorkbenchWindow.java:603) at org.eclipse.ui.internal.WorkbenchWindow.hardClose (WorkbenchWindow.java:1069) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:492) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$10.run(Workbench.java:482) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:478) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:413) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:598) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.Workbench.close(Workbench.java:571) at org.eclipse.ui.internal.WorkbenchWindow.busyClose (WorkbenchWindow.java:489) at org.eclipse.ui.internal.WorkbenchWindow.access$0 (WorkbenchWindow.java:473) at org.eclipse.ui.internal.WorkbenchWindow$1.run (WorkbenchWindow.java:568) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close (WorkbenchWindow.java:566) at org.eclipse.jface.window.Window.handleShellCloseEvent (Window.java:614) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:561) 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:796) 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.Decorations.closeWidget (Decorations.java:238) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1453) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1467) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3055) at org.eclipse.swt.widgets.Decorations.windowProc (Decorations.java:1398) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1472) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1435) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1406) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:263) 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:335) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) | verified fixed | 66b4c50 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.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/ViewFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-23T23:17:05Z | 2004-08-19T15:40:00Z |
36,813 | Bug 36813 [MPE] MultiEditorInput does not override the equals method | The org.eclipse.ui.part.MultiEditorInput class does not override the equals method. The LaunchView class checks if the input for the current frame is the same as for the last frame using the equals method and does not reload if it is. Thus when using the MultiEditorInput, the editor is told to reload because equals always returns false. The other input types, e.g. FileEditorInput, do override the equals method. I could subclass MultiEditorInput but the java doc says not to. | verified fixed | 800d1b7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/MultiEditorInput.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/multipageeditor/MultiEditorInputTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/multipageeditor/MultiPageEditorTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-23T19:35:46Z | 2003-04-23T20:33:20Z |
71,695 | Bug 71695 [WorkingSets]Removed Working Set is still shown under the menu item when it is the recentlly used working set | Create a project Go to the Project + Build Working Set + Select Working Set menu item Create a new working set "test" Reopen the Select Working Set window Remove the "test" working set Go to the Project + Build Working Set menu item Result: the "test" working set is still shown It will be removed when we change the current working set to a differrent one, or restart eclipse. I have fixed it in /org.eclipse.ui.ide/src- ide/org/eclipse/ui/internal/ide/actions/BuildSetMenu.java /** * Fills the menu with Show View actions. */ private void fillMenu(Menu menu) { boolean isAutoBuilding = ResourcesPlugin.getWorkspace ().isAutoBuilding(); //build MRU list of recently built working sets: IWorkingSet[] sets = window.getWorkbench().getWorkingSetManager ().getRecentWorkingSets(); BuildSetAction last = BuildSetAction.lastBuilt; IWorkingSet lastSet = null; //add build action for the last working set that was built int accel = 1; if (last != null) { + // add it only if it has not been removed + boolean found = false; + for (int i = 0; i < sets.length; i++) { + if (sets[i].equals(last.getWorkingSet())){ + found = true; + break; + } + } + if (found == true) { last.setChecked(true); last.setEnabled(!isAutoBuilding); last.setActionDefinitionId ("org.eclipse.ui.project.buildLast"); //$NON-NLS-1$ addMnemonic(last, accel++); new ActionContributionItem(last).fill(menu, -1); lastSet = last.getWorkingSet(); + } } //add build actions for the most recently used working sets for (int i = 0; i < sets.length; i++) { if (lastSet != null && lastSet.equals(sets[i])) continue; BuildSetAction action = new BuildSetAction(sets[i], window, actionBars); addMnemonic(action, accel++); action.setEnabled(!isAutoBuilding); new ActionContributionItem(action).fill(menu, -1); } //add the action to select a different working set new Separator().fill(menu, -1); selectBuildWorkingSetAction.setEnabled(!isAutoBuilding); new ActionContributionItem(selectBuildWorkingSetAction).fill (menu, -1); } | verified fixed | acb3dc9 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildSetMenu.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-23T18:20:40Z | 2004-08-10T01:06:40Z |
61,905 | Bug 61905 [ActivityMgmt] Need API to access the set of defaultEnabled activities. | null | verified fixed | 503cbf1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/ActivityEvent.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/IActivity.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/Activity.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/MutableActivityManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/ws/CategorizedActivity.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/DynamicModelActivityRegistry.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/DynamicTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-23T16:14:24Z | 2004-05-12T13:53:20Z |
72,232 | Bug 72232 [Keys] Indicate sort order on Keys > View page | I20040817 The Keys' view page columns can be sorted by pressing on the column header. Good! The current sort column should be indicated (visible for the user). | verified fixed | 4a62e78 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/KeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-20T20:01:41Z | 2004-08-19T07:20:00Z |
67,203 | Bug 67203 [Import/Export[ Import from Zip File and File System gives no feedback about read-only files | Test Pass for 3.0 RC2 1. have JUnit with corresponding code 2. add the following line to TestCase.java: // read-only 3. close the editor and make the file read-only 4. start to import JUnit from File system 4. Uncheck "Overwrite existing...without warning" 5. Click "Finish" ==> dialog appears 6. Click "Yes To All" Stuff gets imported and wizard closes - no info about read-only files. Now, what do I have to expect? Has TestCase.java been overwritten? Were there other read-only files? Which ones? Fact is: read-only file TestCase.java has not been imported. I would expect a dialog that asks me what do to with read-only files or at least tell me that which ones were not imported. | verified fixed | 0e0b298 | ["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 | 2004-08-20T19:48:29Z | 2004-06-15T11:46:40Z |
70,503 | Bug 70503 [Commands] ctrl+c, ctrl+v, ctrl+x accelerators dont work in some scenarios | null | verified fixed | 3725dd0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/RetargetAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/commands/ActionHandler.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/commands/Bug70503Test.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/commands/CommandsTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-20T16:02:35Z | 2004-07-21T00:33:20Z |
70,998 | Bug 70998 [ActivityMgmt] Capabilities Import Preferences failing. | Capability enablements are not imported properly when importing preferences. I tried with base eclipse and disabled the Java Capabilities and kept Team enabled, and exported. I then disabled Team and enabled Java, closed and reopend the preference page and imported the preferences I previously exported; the Capability enablements are unchanged. Kim Horne - oooh. I think the problem is the import, not export Kim Horne - we dont have a preference listener listening for capability changes Kim Horne - yah, I bet thats it | closed fixed | 5a71b78 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActivityPersistanceHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-19T14:01:47Z | 2004-07-28T15:53:20Z |
71,168 | Bug 71168 [Progress] Wrong assertion in DeferredTreeContentManager | Lines 87 to 92 from org.eclipse.ui.progress.DeferredTreeContentManager: public boolean mayHaveChildren(Object element) { IDeferredWorkbenchAdapter adapter = getAdapter(element); Assert.isNotNull(element, ProgressMessages ^^^^^^^ .getString("DeferredTreeContentManager.NotDeferred")); //$NON-NLS-1$ return adapter.isContainer(); } Isn't "element" be "adapter"? | verified fixed | 3d530cb | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/DeferredTreeContentManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-19T13:50:02Z | 2004-07-30T17:53:20Z |
72,098 | Bug 72098 Debug view tool bar contains duplicate entries | I200408170800, GTK+ 2.4.4, Linux 2.6.7, KDE 3.2.2 In the default Debug perspective, the Debug view contains duplicate tool bar items. The tool bar becomes exceptionally wide. | verified fixed | e093c71 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartPane.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewPane.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-18T22:14:08Z | 2004-08-17T16:26:40Z |
71,050 | Bug 71050 [Progress] Progress of a Job doesn't reflect correctly in Progress Monitor View | Progress Monitor View is used to show progress of various asynchronous jobs running. A typical use is to create a sub-class of org.eclipse.core.runtime.jobs.Job and provide an implementation of the "IStatus run(IProgressMonitor monitor)" method. While running the job, IProgressMonitor object needs to be updated to reflect the progress. Suppose that the length of task is not known, it is indicated by calling beginTask method: monitor.beginTask(msg, IProgressMonitor.UNKNOWN); In such cases, since the length of the task is unknown, the progress monitor bar in the progress monitor view is supposed to grow till the maximum, and shrink back to beginning (just as it happens all the time at the right bottom corner of the Eclipse window). Some time it doesnt happen, and the progress bar is blank (with zero progress) during the life of the job. | verified fixed | c04cb41 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/TaskInfo.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-18T20:37:14Z | 2004-07-29T05:46:40Z |
70,647 | Bug 70647 [JFace] TVT3.0: Extra mnemonic in Build Project | When I click the Build Project, The build project window shows up. Title for Build project window has extra mnemonic. And Rebuild project window is also same. See attached screenshot | closed fixed | a115780 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/Action.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-18T19:56:01Z | 2004-07-22T15:26:40Z |
63,223 | Bug 63223 Use null to clear message text instead of empty string | I200405200800 StatusLine in jface uses setMessage("") to clear the text while the documentation says you should uset setMessage(null) to clear the text. The code path is slightly different for "" versus null, but using null makes the intent of the caller clearer. | verified fixed | d570dd6 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLine.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-18T14:55:56Z | 2004-05-20T16:20:00Z |
34,421 | Bug 34421 [Encodings] Encodings inconsistent between pref and editor | RC1 build I20030307 The list of encodings in the Workbench / Editors pref page is: Cp1252 ISO-8859-1 US-ASCII UTF-16 UTF-16BE UTF-16LE UTF-8 The Edit/Encoding menu has: Cp1252 (Default) ASCII Latin 1 UTF-8 UTF-16 (big endian) UTF-16 (little endian) UTF-16 The pref uses the machine-readable encoding names. It would be better to use human-readable names like the Edit/Encoding menu Cp1252 is the default here, and may differ in other locales. The combo in the pref does not indicate (Default) like the Edit menu does. We should also add more default encodings. | verified fixed | 8153b69 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEEncoding.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEEditorsPreferencePage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/WorkbenchEncoding.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-18T13:59:21Z | 2003-03-10T21:00:00Z |
70,999 | Bug 70999 [ActivityMgmt] Saving of activity preferences happens on shutdown | null | verified fixed | 5776861 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActivityPersistanceHelper.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/ActivitiesTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/ActivityPreferenceTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-17T16:12:43Z | 2004-07-28T15:53:20Z |
37,439 | Bug 37439 [KeyBindings] preference page: add a way to print out all key bindings | it would be very useful it if were possible to print out all key bindings | verified fixed | 2789c56 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/contexts/IWorkbenchContextSupport.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IPreferenceConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPreferenceInitializer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/KeysPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/MutableCommandManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/ShowKeyAssistHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/contexts/ws/WorkbenchContextSupport.java", "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 | 2004-08-13T17:53:42Z | 2003-05-09T17:06:40Z |
63,235 | Bug 63235 [KeyBindings] Cut/Copy/Paste/SelectAll don't work in Swing widgets in dialogs | When running Swing components in an SWT container, cut/copy/paste actions via the keyboard no longer work. (On Windows, CTRL-C, CTRL-X, CTRLV) This defect is present in build M8 and in build 20040519 | resolved fixed | 8bf8b0f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/commands/ws/WidgetMethodHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-13T15:13:22Z | 2004-05-20T16:20:00Z |
70,828 | Bug 70828 [ProblemsView] ConcurrentModificationException is thrown when gotoMarker is called. | When a problem marker is clicked on ProblemView, the workbench throws ConcurrentModificationException exception. Here is how to. 1) Unzip the attached plugin. This is created from a sample multipage editor. 2) Create a Java project, and create a sample java file which has a problem. So that you see a problem on ProblemView 3) Open that java file by Sample multi-page editor 4) Click the problem on ProblemView. So you will see "An error has occured. See error log for more detail" window. The .log has : java.util.ConcurrentModificationException at java.util.AbstractList$Itr.checkForComodification(AbstractList.java:456) at java.util.AbstractList$Itr.next(AbstractList.java:429) at org.eclipse.ui.views.markers.internal.SelectionProviderAdapter.setSelection(SelectionProviderAdapter.java:48) at org.eclipse.ui.views.markers.internal.TableView.setSelection(TableView.java:182) at org.eclipse.ui.views.markers.internal.MarkerView.viewerSelectionChanged(MarkerView.java:316) at org.eclipse.ui.views.markers.internal.TableView$1.selectionChanged(TableView.java:133) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:159) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:615) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:157) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:1394) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:693) at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:718) at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:180) at org.eclipse.jface.util.OpenStrategy.access$3(OpenStrategy.java:175) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:324) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2772) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2431) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1377) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1348) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:254) 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:335) 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: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:183) at org.eclipse.core.launcher.Main.run(Main.java:644) at org.eclipse.core.launcher.Main.main(Main.java:628) Looks like this is because SelectionProviderAdapter#setSelection() does : theSelection = selection; SelectionChangedEvent e = new SelectionChangedEvent(this, selection); Iterator iter = listeners.iterator(); while (iter.hasNext()) { ISelectionChangedListener next = (ISelectionChangedListener)iter.next(); next.selectionChanged(e); } but during a call to 'next.selectionChanged()', sombody calls its add/removeSelectionChangedListener() which causes this exception. | closed fixed | 77ad54f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/SelectionProviderAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-09T20:16:54Z | 2004-07-26T13:53:20Z |
71,675 | Bug 71675 NPE starting drag in persp. bar. | start a drag to the right of the perspective buttons while the perpective bar is on the top left position and an NPE occurs. | verified fixed | b304959 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2004-08-09T20:03:59Z | 2004-08-09T19:33:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.