issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
82,326 | Bug 82326 [Dialogs] ClassCastException creating folder | Build: I20050104 1) Create a simple project called "a" 2) Create a simple file in the project called "b" 3) Open the "New Folder" wizard 4) For the parent name, enter "a/b" 5) For the folder name, enter "c" 6) Click finish. ClassCastException: java.lang.ClassCastException: org/eclipse/core/internal/resources/File incompatible with org/eclipse/core/resources/IContainer at org.eclipse.ui.dialogs.ContainerGenerator$1.run(ContainerGenerator.java:169) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1688) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1708) at org.eclipse.ui.dialogs.ContainerGenerator.generateContainer(ContainerGenerator.java:158) at org.eclipse.ui.dialogs.WizardNewFolderMainPage$3.execute(WizardNewFolderMainPage.java:292) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:98) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1688) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:110) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:111) | closed fixed | 18581bc | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ContainerGenerator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/ResourceAndContainerGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-06T16:13:48Z" | "2005-01-06T16:46:40Z" |
82,307 | Bug 82307 [RCP] [Javadoc] documentation error | JavaDoc for org.eclipse.ui.application.WorkbenchAdvisor incorrectly states: "preShutdown - called just after event loop has terminated but before any windows have been closed; use to deregister things registered during initialize" Software should not use preShutdown() to "deregister things registered during initialize" because preShutdown() is not necessarily followed by shutdown. For instance, if there are dirty documents open, the user will be prompted to save changes. One option from this prompt is to cancel the shutdown. Clearly, if the user does cancel and preShutdown() deregisters things registered during initialize then 'things' are not going to work! | verified fixed | bb342f0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/application/WorkbenchAdvisor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-06T14:47:48Z" | "2005-01-06T08:26:40Z" |
68,608 | Bug 68608 [Dialogs] Resource deletion could be run in the background | If I delete a resource in Eclipse and the deletion is blocked by another job, I get a blocked dialog. I then have to wait until the blocking job finishes. It would be nice if I could have the deletion run in the background and occur when it can. In essence, this is what happens in window except that windows uses a non-modal dialog instead of a "Run in Background" button. | verified fixed | c6e47b3 | ["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 | "2005-01-05T22:31:12Z" | "2004-06-25T13:26:40Z" |
81,185 | Bug 81185 [Preferences] Preference page: down key should jump to tree | 3.1 M4 Candidate All 'type to filter' dialogs in Eclipse allow you to jump to the control being filtered by simply pressing the 'down key'. Look at the Open Type/Open Resource dialogs. This should be the same in the preferences dialog. I always expect to be able to do this... | verified fixed | 9b636ea | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredTree.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-05T20:40:37Z" | "2004-12-15T17:00:00Z" |
75,988 | Bug 75988 [Preferences] IPreferencePage#performOk() returning false should prevent the dialog from closing | I think that if this method returns false, it should prevent the dialog from closing. Today, in order to perform validation I have to register key listeners to all fields an use #setValid(false) to disable the "OK" button. | verified fixed | d3c16aa | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-05T18:47:16Z" | "2004-10-09T16:40:00Z" |
82,248 | Bug 82248 [Encoding] NullPointerException when changing file encoding | build: eclipse-SDK-I20041221-0800-win32 testcase: - open a plugin.xml file in Text Editor - select File>Conversion>Change Encoding... - change encoding from UTF-8 to UTF-16 - NullPointerException java.lang.NullPointerException at org.eclipse.ui.ide.dialogs.ResourceEncodingFieldEditor.doStore (ResourceEncodingFieldEditor.java:100) at org.eclipse.ui.ide.dialogs.ResourceEncodingFieldEditor.store (ResourceEncodingFieldEditor.java:149) at org.eclipse.ui.texteditor.ChangeEncodingAction$1.apply (ChangeEncodingAction.java:167) at org.eclipse.ui.texteditor.ChangeEncodingAction$1.okPressed (ChangeEncodingAction.java:162) at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:396) at org.eclipse.ui.texteditor.ChangeEncodingAction$1.buttonPressed (ChangeEncodingAction.java:155) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:543) 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:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2454) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.texteditor.ChangeEncodingAction.run (ChangeEncodingAction.java:175) at org.eclipse.ui.texteditor.RetargetTextEditorAction.run (RetargetTextEditorAction.java:237) at org.eclipse.jface.action.Action.runWithEvent(Action.java:989) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent (ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2809) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2454) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) | closed fixed | c1313ce | ["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 | "2005-01-05T17:52:11Z" | "2005-01-05T15:46:40Z" |
53,122 | Bug 53122 [Actions] Rebuild Project does not auto-save files | null | verified fixed | b31ea78 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/BuildAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-05T15:34:12Z" | "2004-02-25T20:13:20Z" |
60,803 | Bug 60803 Can't build manually if build automatically turned on | I have a PDE plugin project with a long running ant builder attached to it. The ant builder compiles and creates a native library. I tell the ant builder to run only on manual build but I want the Java and plugin stuff to build automatically. If I turn build automatically on, I don't seem to have a way to invoke a manual build. Am I unrealistically mixing both worlds or just plain missing something. | resolved fixed | cf6dbe8 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildCleanAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildSetAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildUtilities.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-05T15:33:41Z" | "2004-05-03T18:46:40Z" |
77,664 | Bug 77664 [Decorators] DecoratorManager should reschedule in the run() method | null | verified fixed | e8a7a64 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/DecorationScheduler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-05T15:28:37Z" | "2004-11-03T16:40:00Z" |
75,440 | Bug 75440 [Presentations] Closing all editors trigger full reconciliation | Build 3.1m2 As demonstrated by trace below, closing all Java editors, forces them all to refresh and reconcile for no apparent reason. CompilationUnitProblemFinder.reportProblems(CompilationUnitDeclaration, IProblemRequestor, IProgressMonitor) line: 212 CompilationUnitProblemFinder.process(CompilationUnitDeclaration, ICompilationUnit, char[], Parser, WorkingCopyOwner, IProblemRequestor, IProblemFactory, boolean, IProgressMonitor) line: 181 CompilationUnit.buildStructure(OpenableElementInfo, IProgressMonitor, Map, IResource) line: 149 CompilationUnit(Openable).generateInfos(Object, HashMap, IProgressMonitor) line: 202 CompilationUnit(JavaElement).openWhenClosed(Object, IProgressMonitor) line: 544 BecomeWorkingCopyOperation.executeOperation() line: 38 BecomeWorkingCopyOperation(JavaModelOperation).run(IProgressMonitor) line: 700 BecomeWorkingCopyOperation(JavaModelOperation).runOperation(IProgressMonitor) line: 739 CompilationUnit.becomeWorkingCopy(IProblemRequestor, IProgressMonitor) line: 78 CompilationUnitDocumentProvider.createFileInfo(Object) line: 835 CompilationUnitDocumentProvider(TextFileDocumentProvider).connect(Object) line: 462 CompilationUnitEditor(AbstractTextEditor).doSetInput(IEditorInput) line: 2871 CompilationUnitEditor(StatusTextEditor).doSetInput(IEditorInput) line: 173 CompilationUnitEditor(AbstractDecoratedTextEditor).doSetInput(IEditorInput) line: 1078 CompilationUnitEditor(JavaEditor).internalDoSetInput(IEditorInput) line: 2884 CompilationUnitEditor(JavaEditor).doSetInput(IEditorInput) line: 2862 CompilationUnitEditor.doSetInput(IEditorInput) line: 1486 AbstractTextEditor$15.run(IProgressMonitor) line: 2235 ModalContext.runInCurrentThread(IRunnableWithProgress, IProgressMonitor) line: 322 ModalContext.run(IRunnableWithProgress, boolean, IProgressMonitor, Display) line: 269 ApplicationWindow$1.run() line: 624 BusyIndicator.showWhile(Display, Runnable) line: 69 WorkbenchWindow(ApplicationWindow).run(boolean, boolean, IRunnableWithProgress) line: 621 WorkbenchWindow.run(boolean, boolean, IRunnableWithProgress) line: 1919 CompilationUnitEditor(AbstractTextEditor).internalInit(IWorkbenchWindow, IEditorSite, IEditorInput) line: 2249 CompilationUnitEditor(AbstractTextEditor).init(IEditorSite, IEditorInput) line: 2267 EditorManager.createSite(IEditorReference, IEditorPart, EditorDescriptor, IEditorInput) line: 814 EditorManager.openInternalEditor(IEditorReference, EditorDescriptor, IEditorInput, boolean) line: 883 EditorManager.access$12(EditorManager, IEditorReference, EditorDescriptor, IEditorInput, boolean) line: 867 EditorManager$9.run() line: 1085 InternalPlatform.run(ISafeRunnable) line: 616 Platform.run(ISafeRunnable) line: 747 EditorManager.busyRestoreEditor(EditorManager$Editor) line: 1055 EditorManager$8.run() line: 1047 BusyIndicator.showWhile(Display, Runnable) line: 69 EditorManager.restoreEditor(EditorManager$Editor) line: 1045 EditorManager$Editor.getEditor(boolean) line: 1463 EditorManager$Editor.getPart(boolean) line: 1454 EditorPane(PartPane).setVisible(boolean) line: 323 PresentablePart.setVisible(boolean) line: 123 PresentablePartFolder.select(IPresentablePart) line: 266 LeftToRightTabOrder.select(IPresentablePart) line: 65 TabbedStackPresentation.selectPart(IPresentablePart) line: 378 EditorStack(PartStack).refreshPresentationSelection() line: 1025 EditorStack(PartStack).setSelection(LayoutPart) line: 999 EditorStack(PartStack).updateContainerVisibleTab() line: 1223 EditorStack(PartStack).remove(LayoutPart) line: 752 EditorSashContainer.removeEditor(EditorPane) line: 213 EditorAreaHelper.closeEditor(EditorPane) line: 122 EditorAreaHelper.closeEditor(IEditorPart) line: 111 EditorManager.closeEditor(IEditorReference) line: 217 WorkbenchPage.closeEditors(IEditorReference[], boolean) line: 937 WorkbenchPage.closeAllEditors(boolean) line: 880 CloseAllAction.run() line: 78 CloseAllAction(Action).runWithEvent(Event) line: 988 ActionContributionItem.handleWidgetSelection(Event, boolean) line: 555 ActionContributionItem.access$2(ActionContributionItem, Event, boolean) line: 505 ActionContributionItem$6.handleEvent(Event) line: 419 EventTable.sendEvent(Event) line: 82 MenuItem(Widget).sendEvent(Event) line: 796 Display.runDeferredEvents() line: 2783 Display.readAndDispatch() line: 2442 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1443 Workbench.runUI() line: 1414 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 271 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 144 IDEApplication.run(Object) line: 102 PlatformActivator$1.run(Object) line: 335 EclipseStarter.run(Object) line: 273 EclipseStarter.run(String[], Runnable) line: 129 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 585 Main.basicRun(String[]) line: 185 Main.run(String[]) line: 704 Main.main(String[]) line: 688 | verified fixed | 7fd2a6b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorSashContainer.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/ViewSashContainer.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 | "2005-01-05T04:09:12Z" | "2004-10-01T11:26:40Z" |
77,491 | Bug 77491 [ViewMgmt] Show view dialog does not remember last selection | build I20041101 - Window > Show View > Other... > Java > Package Explorer - Window > Show View > Other... The selected item should be Package Explorer, but is not. It seems to be remembering stale state, so if it does work for Package Explorer, try some other view. | verified fixed | b08ab98 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-04T16:31:30Z" | "2004-11-02T18:26:40Z" |
81,292 | Bug 81292 [Preferences] Message area should be disabled when empty | 200412152000 My GTK theme has a textured background by default. There is a section of the preference dialog next to the Default/Apply buttons that does not respect this. I suspect there is an empty label/text widget that has had its background colour set manually. Screencap forthcoming | verified fixed | e8195da | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-04T16:24:47Z" | "2004-12-15T19:46:40Z" |
81,837 | Bug 81837 [About] About > Configuration Details should use text font | I think that the configuration details should use the text font rather than the default font, since it better fits the style of a "log file" view. I am not sure how best to go about it though: can I just do the following and use JFaceResources or should I be using the theme API in some way? Index: Eclipse UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.java =================================================================== RCS file: /home/eclipse/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.java,v retrieving revision 1.8 diff -u -r1.8 AboutSystemDialog.java --- Eclipse UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.java 20 Oct 2004 16:24:50 -0000 1.8 +++ Eclipse UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.java 23 Dec 2004 05:29:44 -0000 @@ -24,6 +24,7 @@ import org.eclipse.core.runtime.Platform; import org.eclipse.jface.dialogs.IDialogConstants; import org.eclipse.jface.dialogs.MessageDialog; +import org.eclipse.jface.resource.JFaceResources; import org.eclipse.swt.SWT; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.TextTransfer; @@ -113,6 +114,7 @@ gridData.widthHint = convertHorizontalDLUsToPixels(400); text.setLayoutData(gridData); text.setText(getSystemSummary()); + text.setFont(JFaceResources.getTextFont()); return outer; } | verified fixed | ab2f51b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2005-01-03T01:54:58Z" | "2004-12-23T05:33:20Z" |
79,909 | Bug 79909 [JFace] Localized resource registries for JFace | Please provide improved JFace support for managing SWT resources, with the following properties: - A registry can allocate and deallocate SWT resources given a descriptor - Resources are reference-counted and shared, allowing different objects with equivalent descriptors to share resources. - Everything in the registry can be deallocated with one function call - The registry should support an open-ended set of resources (and should initially support, at minimum, Images, Fonts, Colors) - It should be possible to create a "local registry" that behaves like a regular registry but actually shares its resources with a global registry. For example, the workbench could offer a local registry as a service to views and editors. This would allow views and editors to safely allocate and deallocate SWT resources without any chance of leaking. | verified fixed | 7166d84 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/AbstractResourceManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ArrayFontDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ColorDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ColorRegistry.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/DeviceResourceDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/DeviceResourceException.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/DeviceResourceManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ImageDataImageDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ImageDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ImageRegistry.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/JFaceResources.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/LocalResourceManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/NamedFontDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/RGBColorDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ResourceManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/Wizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/bookmarkexplorer/BookmarkLabelProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/WorkbenchPart.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/images/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/images/ResourceManagerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-23T02:29:00Z" | "2004-12-01T19:40:00Z" |
71,800 | Bug 71800 [IDE] Clean action should be background operation | build R3.0 When the user selects "Clean..." from the Project menu, it pops up a modal dialog which shows progress. After the "clean" part is done, then the build is done in the background. The "clean" action should also be done in the background. The inconvenience of having it in the foreground is magnified when you have many projects with lots of source files (so it does real work and takes many seconds...up to a minute) | verified fixed | 113d31a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CleanDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-22T20:40:28Z" | "2004-08-11T16:00:00Z" |
81,768 | Bug 81768 [Import/Export] Import projects wizard layout improvements | 3.1M4 I found two small layout problems with the Import Projects wizard. 1. The Import Projects wizard does not call initializeDialogUnits(), and hence the "Browse..." and select/deselect buttons are not of the appropriate size. 2. The selection buttons create a layout but leave the default margins, and hence do not align correctly with the Browse... button. | verified fixed | a728c3c | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-22T05:23:17Z" | "2004-12-22T04:33:20Z" |
77,871 | Bug 77871 [GlobalActions] (Re)Build Project should track resources itself | null | verified fixed | b679bc7 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/BuildAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEActionFactory.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildCleanAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/BuildSetAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/RetargetActionWithDefault.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-21T22:27:44Z" | "2004-11-04T17:40:00Z" |
81,614 | Bug 81614 [RCP] [Wizards] Missing icons for wizards | The interface org.eclipse.ui.ISharedImages defines public final static String IMG_TOOL_NEW_WIZARD = "IMG_TOOL_NEW_WIZARD"; public final static String IMG_TOOL_NEW_WIZARD_DISABLED = "IMG_TOOL_NEW_WIZARD_DISABLED"; It is used in the NewWizardDropDownAction class but the corresponding icons are not yet moved to the platform. Icon name: new_wiz.gif | verified fixed | 2681a6e | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/SaveAsDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEInternalWorkbenchImages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.presentations.r21/src/org/eclipse/ui/internal/presentations/R21BasicStackPresentation.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ExportResourcesAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ImportResourcesAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IWorkbenchGraphicConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchImages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/Policy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PerspectiveDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/WorkbenchPreview.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/model/PerspectiveLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-21T18:06:41Z" | "2004-12-19T18:13:20Z" |
72,100 | Bug 72100 [Workbench] Wrong javadoc comment for field org.eclipse.ui.ISharedImages.IMG_TOOL_COPY_HOVER | The javadoc comment for this deprecated field is incorrect. /** * Identifies the copy image in the hover (colored) state. * * @deprecated in 3.0. This image is now the same as <code>IMG_TOOL_COPY_HOVER</code>. * Enabled images are now in color. The workbench itself no longer uses the hover image variants. */ It should be: /** * Identifies the copy image in the hover (colored) state. * * @deprecated in 3.0. This image is now the same as <code>IMG_TOOL_COPY</code>. * Enabled images are now in color. The workbench itself no longer uses the hover image variants. */ I will attach a patch. | verified fixed | 0caf132 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISharedImages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-19T02:49:34Z" | "2004-08-17T16:26:40Z" |
81,603 | Bug 81603 [Import/Export] tar import/export does not preserve file permissions | null | verified fixed | 49ae391 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileExporter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileStructureProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarInputStream.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ImportOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-19T01:09:22Z" | "2004-12-19T01:33:20Z" |
81,598 | Bug 81598 [Import/Export] Output tar files are too short | When outputting a small .tar file, I noticed that it was not correctly padded to 10240 bytes. The fix is to make sure we correctly close the output stream. This bug may have been exposed by the fix for 81277. | verified fixed | 9be8b6a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarOutputStream.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-18T22:13:17Z" | "2004-12-18T22:46:40Z" |
81,020 | Bug 81020 [Perspectives] (regression) Cannot save perspective | hi, I just downloaded this version: Version: 3.1.0 Build id: 200412141321 and the first thing that i tried was to save the current perspective (Java) - but the ok button is always disabled. Please verify and fix before M4. | closed fixed | cf75369 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PerspectiveRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-16T17:10:27Z" | "2004-12-14T21:33:20Z" |
81,165 | Bug 81165 Action delegate disposed twice if it implements both IActionDelegate2 and IWorkbenchWindowActionDelegate | build i1214-2000 I was running this build with a runtime workbench and I got the following exception in my log file. !ENTRY org.eclipse.core.runtime 4 2 2004-12-15 10:08:21.18 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". !STACK 0 org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at org.eclipse.jface.util.Assert.isNotNull(Assert.java:149) at org.eclipse.jface.util.Assert.isNotNull(Assert.java:125) at org.eclipse.jface.util.ListenerList.remove(ListenerList.java:155) at org.eclipse.ui.internal.PartListenerList.removePartListener(PartListenerList.java:122) at org.eclipse.ui.internal.WWinPartService.removePartListener(WWinPartService.java:96) at org.eclipse.team.internal.ccvs.ui.actions.CVSAction.dispose(CVSAction.java:160) at org.eclipse.ui.internal.WWinPluginAction.dispose(WWinPluginAction.java:195) at org.eclipse.ui.internal.PluginActionSet.dispose(PluginActionSet.java:66) at org.eclipse.ui.internal.ActionPresentation.removeActionSet(ActionPresentation.java:89) at org.eclipse.ui.internal.ActionPresentation.clearActionSets(ActionPresentation.java:70) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1207) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:533) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:514) at org.eclipse.ui.internal.WorkbenchWindow$1.run(WorkbenchWindow.java:612) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:610) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:505) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1050) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:501) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:436) at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:623) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:621) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:530) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:514) at org.eclipse.ui.internal.WorkbenchWindow$1.run(WorkbenchWindow.java:612) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:610) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:637) at org.eclipse.jface.window.Window$2.shellClosed(Window.java:584) 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:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:246) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1538) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3014) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1483) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1565) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3097) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1483) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1565) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3097) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1483) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1570) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2446) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) | verified fixed | f7f7b60 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginActionContributionItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WWinPluginAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-16T16:36:16Z" | "2004-12-15T14:13:20Z" |
77,404 | Bug 77404 [Navigator] ArrayStoreException thrown by NavigatorDropAdapter.getSelecetdResources | I20041101 Select a method in the Outline view Drag it over the Navigator view NavigatorDropAdapter.getSelectedResources throws the following exception (which is currently quitely eaten by the SWT DND mechanism but in the very near future this exception will be thrown): java.lang.ArrayStoreException at java.util.AbstractCollection.toArray(AbstractCollection.java:174) at org.eclipse.ui.views.navigator.NavigatorDropAdapter.getSelectedResources (NavigatorDropAdapter.java:136) at org.eclipse.ui.views.navigator.NavigatorDropAdapter.validateTarget (NavigatorDropAdapter.java:379) at org.eclipse.ui.views.navigator.NavigatorDropAdapter.validateDrop (NavigatorDropAdapter.java:355) at org.eclipse.jface.viewers.ViewerDropAdapter.doDropValidation (ViewerDropAdapter.java:169) at org.eclipse.jface.viewers.ViewerDropAdapter.dragOver (ViewerDropAdapter.java:215) at org.eclipse.swt.dnd.DNDListener.handleEvent(DNDListener.java:59) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:800) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:824) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:809) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:617) at org.eclipse.swt.dnd.DropTarget.notifyListeners(DropTarget.java:511) at org.eclipse.swt.dnd.DropTarget.DragOver(DropTarget.java:338) at org.eclipse.swt.dnd.DropTarget.access$5(DropTarget.java:314) at org.eclipse.swt.dnd.DropTarget$3.method4(DropTarget.java:234) at org.eclipse.swt.internal.ole.win32.COMObject.callback4(COMObject.java:97) at org.eclipse.swt.internal.ole.win32.COM.DoDragDrop(Native Method) at org.eclipse.swt.dnd.DragSource.drag(DragSource.java:287) at org.eclipse.swt.dnd.DragSource.access$0(DragSource.java:267) at org.eclipse.swt.dnd.DragSource$1.handleEvent(DragSource.java:161) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:800) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2794) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1527) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1498) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:276) 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:704) at org.eclipse.core.launcher.Main.main(Main.java:688) | verified fixed | 946b98b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/NavigatorDropAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-16T15:36:32Z" | "2004-11-01T20:13:20Z" |
81,277 | Bug 81277 Uncompressed Tar archiving is 10 to 20 X slower then zip or compressed tar | Take a medium sized plugin project and export it as zip/tar/compressed tar and note that the tar export is 10 or 20 X slower then the other two. | verified fixed | dd8e92a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileExporter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-15T21:47:11Z" | "2004-12-15T19:46:40Z" |
81,164 | Bug 81164 restoreDefaults for ViewsPreferencePage referring to wrong preference store | 20041214 The restore defaults for perspective bar location refers to the workbench preference store but should refer to the API preference store. As a result restore defaults leaves the position unchecked. Here is a patch Index: ViewsPreferencePage.java =================================================================== RCS file: /home/eclipse/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java,v retrieving revision 1.40 diff -u -r1.40 ViewsPreferencePage.java --- ViewsPreferencePage.java 27 Sep 2004 15:08:42 -0000 1.40 +++ ViewsPreferencePage.java 15 Dec 2004 15:11:46 -0000 @@ -715,7 +715,7 @@ viewBottomButton.setSelection(viewTopValue == SWT.BOTTOM); viewAlignment = viewTopValue; - perspBarLocation = store + perspBarLocation = apiStore .getDefaultString (IWorkbenchPreferenceConstants.DOCK_PERSPECTIVE_BAR); perspLeftButton.setSelection(IWorkbenchPreferenceConstants.LEFT .equals(perspBarLocation)); | verified fixed | 45a4123 | ["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-12-15T18:35:49Z" | "2004-12-15T14:13:20Z" |
81,116 | Bug 81116 [Preferences] NPE in PreferenceDialog#updateMessage | !ENTRY org.eclipse.ui 4 0 2004-12-10 18:15:14.156 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jface.preference.PreferenceDialog.updateMessage(PreferenceDialog.java:1233) at org.eclipse.jface.preference.PreferenceDialog$6.controlResized(PreferenceDialog.java:509) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:148) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:814) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:838) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:819) at org.eclipse.swt.widgets.Control.WM_SIZE(Control.java:3616) at org.eclipse.swt.widgets.Scrollable.WM_SIZE(Scrollable.java:313) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1150) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3074) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1528) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3090) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.SetWindowPos(Native Method) at org.eclipse.swt.widgets.Widget.SetWindowPos(Widget.java:1108) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1920) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1902) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1898) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:660) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:186) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:825) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1161) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3074) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1528) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3090) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.EndDeferWindowPos(Native Method) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:647) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:613) at org.eclipse.swt.widgets.Composite.setResizeChildren(Composite.java:745) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1165) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3074) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1528) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3090) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.EndDeferWindowPos(Native Method) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:647) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:613) at org.eclipse.swt.widgets.Composite.setResizeChildren(Composite.java:745) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1165) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3074) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1528) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3090) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.EndDeferWindowPos(Native Method) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:647) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:613) at org.eclipse.swt.widgets.Composite.setResizeChildren(Composite.java:745) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1165) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3074) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1528) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3090) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.SetWindowPos(Native Method) at org.eclipse.swt.widgets.Widget.SetWindowPos(Widget.java:1108) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1920) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1902) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1898) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:660) at org.eclipse.swt.layout.GridLayout.layout(GridLayout.java:186) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:825) at org.eclipse.swt.widgets.Composite.WM_SIZE(Composite.java:1161) at org.eclipse.swt.widgets.Canvas.WM_SIZE(Canvas.java:251) at org.eclipse.swt.widgets.Decorations.WM_SIZE(Decorations.java:1646) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3074) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1479) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1457) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:393) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3090) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1479) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.SetWindowPos(Native Method) at org.eclipse.swt.widgets.Widget.SetWindowPos(Widget.java:1108) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1942) at org.eclipse.swt.widgets.Decorations.setBounds(Decorations.java:773) at org.eclipse.swt.widgets.Shell.setBounds(Shell.java:989) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1902) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1898) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1967) at org.eclipse.jface.window.Window.initializeBounds(Window.java:662) at org.eclipse.jface.dialogs.Dialog.initializeBounds(Dialog.java:630) at org.eclipse.jface.window.Window.create(Window.java:379) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:983) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:182) at org.eclipse.jface.action.Action.runWithEvent(Action.java:989) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:814) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) | verified fixed | ddd2df6 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-15T18:32:23Z" | "2004-12-15T11:26:40Z" |
81,001 | Bug 81001 [PresentationAPI] Internal errors when shutting down Eclipse | Version: 3.1.0 Build id: 200412140800 When I shut down Eclipse I got the "Internal errors occurred..." message before the application quit. When the workbench was already shut down, a tiny dialog came up informing me about internal errors and saying I should check the log. Before, I was testing keybindings and CVS functionality in Eclipse. I couldn't reproduce it on an empty workspace, but after it had occurred for the first time it happened always for that specific workspace. Here's the entry: !ENTRY org.eclipse.core.runtime 4 2 2004-12-14 15:37:06.15 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". !STACK 0 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:2827) at org.eclipse.swt.SWT.error(SWT.java:2752) at org.eclipse.swt.SWT.error(SWT.java:2723) at org.eclipse.swt.widgets.Widget.error(Widget.java:388) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:290) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1983) at org.eclipse.ui.internal.LayoutPart.setBounds(LayoutPart.java:319) at org.eclipse.ui.internal.presentations.PresentablePart.setBounds(PresentablePart.java:116) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder.layoutContent(PresentablePartFolder.java:131) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder.access$0(PresentablePartFolder.java:127) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder$1.controlMoved(PresentablePartFolder.java:57) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:152) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:838) at org.eclipse.swt.widgets.Control.WM_MOVE(Control.java:3511) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3058) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1565) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3097) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.EndDeferWindowPos(Native Method) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:647) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:613) at org.eclipse.swt.widgets.Composite.setResizeChildren(Composite.java:745) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:826) at org.eclipse.swt.widgets.Composite.layout(Composite.java:487) at org.eclipse.swt.widgets.Composite.layout(Composite.java:452) at org.eclipse.swt.custom.ViewForm.setTopRight(ViewForm.java:424) at org.eclipse.ui.internal.presentations.PaneFolder.setTopRight(PaneFolder.java:334) at org.eclipse.ui.internal.presentations.PaneFolder$2.widgetDisposed(PaneFolder.java:142) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:100) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:838) at org.eclipse.swt.widgets.Widget.releaseWidget(Widget.java:745) at org.eclipse.swt.widgets.Control.releaseWidget(Control.java:1565) at org.eclipse.swt.widgets.Scrollable.releaseWidget(Scrollable.java:195) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:588) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Canvas.releaseWidget(Canvas.java:118) at org.eclipse.swt.widgets.Decorations.releaseWidget(Decorations.java:704) at org.eclipse.swt.widgets.Shell.releaseWidget(Shell.java:856) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:375) at org.eclipse.swt.widgets.Decorations.dispose(Decorations.java:363) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:488) at org.eclipse.jface.window.Window.close(Window.java:278) at org.eclipse.jface.window.ApplicationWindow.close(ApplicationWindow.java:291) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1237) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:533) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:514) at org.eclipse.ui.internal.WorkbenchWindow$1.run(WorkbenchWindow.java:612) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:610) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:108) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:505) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:501) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:436) at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:623) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:621) at org.eclipse.ui.internal.Workbench.close(Workbench.java:596) at org.eclipse.ui.internal.QuitAction.run(QuitAction.java:55) at org.eclipse.jface.action.Action.runWithEvent(Action.java:989) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) !ENTRY org.eclipse.osgi 2004-12-14 15:37:11.468 !MESSAGE Application error !STACK 1 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:2827) at org.eclipse.swt.SWT.error(SWT.java:2752) at org.eclipse.swt.SWT.error(SWT.java:2723) at org.eclipse.swt.widgets.Widget.error(Widget.java:388) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:290) at org.eclipse.swt.widgets.Control.setBounds(Control.java:1983) at org.eclipse.ui.internal.LayoutPart.setBounds(LayoutPart.java:319) at org.eclipse.ui.internal.presentations.PresentablePart.setBounds(PresentablePart.java:116) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder.layoutContent(PresentablePartFolder.java:131) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder.access$0(PresentablePartFolder.java:127) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder$1.controlMoved(PresentablePartFolder.java:57) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:152) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:838) at org.eclipse.swt.widgets.Control.WM_MOVE(Control.java:3511) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3058) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1565) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3097) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3370) at org.eclipse.swt.internal.win32.OS.EndDeferWindowPos(Native Method) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:647) at org.eclipse.swt.widgets.Composite.resizeChildren(Composite.java:613) at org.eclipse.swt.widgets.Composite.setResizeChildren(Composite.java:745) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:826) at org.eclipse.swt.widgets.Composite.layout(Composite.java:487) at org.eclipse.swt.widgets.Composite.layout(Composite.java:452) at org.eclipse.swt.custom.ViewForm.setTopLeft(ViewForm.java:398) at org.eclipse.ui.internal.presentations.PaneFolder.setTopLeft(PaneFolder.java:359) at org.eclipse.ui.internal.presentations.PaneFolder$2.widgetDisposed(PaneFolder.java:138) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:100) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:838) at org.eclipse.swt.widgets.Widget.releaseWidget(Widget.java:745) at org.eclipse.swt.widgets.Control.releaseWidget(Control.java:1565) at org.eclipse.swt.widgets.Label.releaseWidget(Label.java:271) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Widget.releaseResources(Widget.java:710) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:582) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:587) at org.eclipse.swt.widgets.Canvas.releaseWidget(Canvas.java:118) at org.eclipse.swt.widgets.Decorations.releaseWidget(Decorations.java:704) at org.eclipse.swt.widgets.Shell.releaseWidget(Shell.java:856) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:375) at org.eclipse.swt.widgets.Decorations.dispose(Decorations.java:363) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:488) at org.eclipse.swt.widgets.Display.release(Display.java:2496) at org.eclipse.swt.graphics.Device.dispose(Device.java:215) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:117) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) | resolved fixed | 910d9d9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LayoutPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/PresentablePart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-15T02:23:49Z" | "2004-12-14T21:33:20Z" |
76,285 | Bug 76285 [Perspectives] [ViewMgmt] Folder tab does not indicate current view when using multi-instance views | If a folder contains multiple views, switching between perspectives can result in the folders tab indicating that the wrong view is active. For example, lets say we have view "1", "2" and "3" inside of a folder. View "2" is active and so is it's corresponding folder tab. If you switch to a different perspective then switch back view "2" will be active but view "1"s tab will be. This may only be the case with views that have the same title. The expected behavior is that when you change perspectives, then change back, the view, and it's corresponding tab, that was active will still be active. I will attach a project that demonstrates this problem. Use the following instructions to test: 1. Import the com.foo project into your workspace 2. Run the com.foo.FooTest application as a Run-time Workbench 3. Switch to the Foo perspective 4. Create 3 or 4 view instances by clicking on the button in the "FooCounter" view 5. Use the "Widow-Open Perspective" menu to switch to a different perspective 6. Switch back to the foo perspective. 7. Try switching back and forth a couple of times. The view that is displayed is indicated by the button label in the FooCounter view. After switching a few times the active view and active folder tab are out of sync. I would expect the same view and view tab to be active when I change out of a perspective and change back to it. | verified fixed | d20de35 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-14T22:03:19Z" | "2004-10-14T16:06:40Z" |
74,302 | Bug 74302 [Perspectives] no null check in SavePerspectiveAction. | The following code in saveNonSingleton() calls getPerspective() but does not check for null, description = reg.findPerspectiveWithId(page.getPerspective() .getId()); Need to verify that this is OK or fix. | verified fixed | 660c5f4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/SavePerspectiveAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-14T21:35:33Z" | "2004-09-20T14:20:00Z" |
80,958 | Bug 80958 [DynamicUI] [Perspectives] Lost icon for custom Java perspective | Build: I20041214-0800 I have a customized copy of the Java perspective saved as a different name. With this build, my custom perspective lost the "J" icon that it previously had, and now has a generic window icon (like the open perspective button). This is odd for me because I still associate that particular perspective with Java coding and the icon helps me pick it from the list (I don't use text in the perspective bar). | verified fixed | ea4ea90 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PerspectiveDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-14T21:22:31Z" | "2004-12-14T18:46:40Z" |
80,933 | Bug 80933 Property page not shown in tree | 20041214 In build 20041214 create a Java project and open the properties on it. The page 'Formatter' is missing under the node 'Java Code Style' I debugged this and found that the page is correctly found in the plugin registry as one of the first pages. It is added to its category in PropertyPageManager.addToDeep(String category, PropertyPageNode node) line: 43 but the problem is that the category page is not yet read and not found. - I guess the 'Collections.sort(Arrays.asList(sortedResult), comparer)' in PropertyPageContributorManager.contribute(PropertyPageManager, IAdaptable) is the problem. Our property pages are correctly ordered so that categories are first. Also note that in general alphabetical order is not the most optimal, we would e.g. like to have a 'Advanced' page as last page under our subnode. It would be better if the order as defined by use in the plugin.xml would be taken - What should also be fixed is that pages where the category cannot be found are not simply dropped, but at least added under the root node | verified fixed | b7d3b37 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyPageContributorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/RegistryPageContributor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-14T21:10:20Z" | "2004-12-14T16:00:00Z" |
80,861 | Bug 80861 [PerspectiveBar] NPE switching perspectives | 200412013 Every time I switch a perspective I get the following NPE !ENTRY org.eclipse.ui 4 0 2004-12-13 14:41:51.477 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.PerspectiveBarContributionItem.select (PerspectiveBarContributionItem.java:112) at org.eclipse.ui.internal.PerspectiveBarManager$1.widgetSelected (PerspectiveBarManager.java:145) 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:814) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.PerspectiveBarManager.handleChevron (PerspectiveBarManager.java:161) at org.eclipse.ui.internal.PerspectiveSwitcher$9.widgetSelected (PerspectiveSwitcher.java:741) 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:814) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1540) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:285) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) | verified fixed | 65f323f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveBarContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-13T21:11:02Z" | "2004-12-13T20:33:20Z" |
33,897 | Bug 33897 [Import/Export] Export to .tar.gz or .tar.bz2 | Right click a Java project. Choose "Export...". A window opens where you can choose between different export targets. There is no ".tar.gz" target or ".tar.bz2". I would like to have either one (or both). If I must choose one, I prefer ".tar.bz2", but I don't really have a strong opinion about it; ".tar.gz" would be fine as well. The reason I somewhat prefer bzip2 is that bzip2 makes files noticably smaller than gzip, and my impression is that gzip is slowly being outcompeted. A Linux-GTK implementation would be good enough for me, but it is possible that "Unix All" would be a better platform as other Unix users could probably be interested in this as well. | verified fixed | 917ec00 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ArchiveFileExportOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/IFileExporter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarEntry.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarException.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFile.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileExporter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileStructureProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarInputStream.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarOutputStream.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardArchiveFileResourceExportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardArchiveFileResourceImportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardFileSystemResourceExportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardZipFileExportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardZipFileImportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardZipFileResourceExportPage1.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ZipFileExportOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ZipFileExporter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ZipFileExportWizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ZipFileImportWizard.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-13T03:33:25Z" | "2003-03-05T18:46:40Z" |
17,958 | Bug 17958 [Wizards] ZipFileImportWizard should allow configuration of supported file extensions | When selecting the source ZIP file, the user hits the "Browse..." button which opens the File Open Dialog. The file extensions are set to *.jar, *.zip There are other files such as *.war files which are in ZIP format and it would be nice to ehance the ZipFileImportWizard so that these extensions are read from a configuration/properties file. Currently, they are hardcoded in org/eclipse/ui/wizards/datatransfer/WizardZipFileResourceImportPage1.java | verified fixed | 072e015 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardZipFileResourceImportPage1.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-11T21:29:17Z" | "2002-05-27T20:06:40Z" |
71,843 | Bug 71843 Error ticks on editor tab not updated for inactive editors | I200408120010 (could not reproduce on M200408111300) - disable autobuild - open CU1, add an error, save, build -> error tick appears on CU1 editor tab - remove error, save - open CU2, build -> error tick on CU1 editor tab stays Switching back to CU1 editor and dirtying it triggers an update of the error tick. | verified fixed | e84ecc8 | ["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-12-10T22:03:11Z" | "2004-08-12T08:40:00Z" |
73,047 | Bug 73047 [DnD] click-drag on view menu starts dragging view instead of opening menu | null | verified fixed | 3f94593 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/PaneFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/newapi/StandardSystemToolbar.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/StandardSystemToolbar.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-10T21:42:51Z" | "2004-09-01T12:00:00Z" |
80,696 | Bug 80696 [Preferences] PreferencePage NPE | JFaceResources.getImage(Dialog.DLG_IMG_MESSAGE_ERROR) might return null @@@@ !ENTRY org.eclipse.core.runtime 4 2 2004-12-10 16:13:38.218 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.jface.preference.PreferencePage$MessageRegion.createContents(PreferencePage.java:109) at org.eclipse.jface.preference.PreferencePage.createMessageArea(PreferencePage.java:489) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:428) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:378) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.createPageControl(WorkbenchPreferenceDialog.java:994) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1116) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1110) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.showPage(WorkbenchPreferenceDialog.java:782) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:619) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:681) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:679) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:950) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:970) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:231) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:226) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:392) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2780) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2451) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:64) at org.eclipse.jface.action.Action.runWithEvent(Action.java:989) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:555) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:505) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:419) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:814) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at de.silpion.abends.ui.PlannerApplication.runWorkbench(PlannerApplication.java:404) at de.silpion.abends.ui.PlannerApplication.run(PlannerApplication.java:316) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) @@@@ Version: 3.1.0 Build id: 200412081200 | verified fixed | 711f024 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-10T20:14:02Z" | "2004-12-10T14:46:40Z" |
71,150 | Bug 71150 [RCP] [Perspectives] Allow no initial perspective | I the WorkbenchAdvisor.java we need to return no perspective for our product. public String getInitialWindowPerspective(){ return null; } We have made modifications to Eclipse 3.0 WorkbenchWindow and Workbench.java to do this. This is required for our product and there is documentation why. I submit this bug to track this inclusion into Eclipse 3.0.1 | verified fixed | df07068 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/QuickStartAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IPerspectiveRegistry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbench.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/application/WorkbenchAdvisor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PerspectivesPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PerspectiveRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-10T20:09:30Z" | "2004-07-30T12:20:00Z" |
80,677 | Bug 80677 [Progress] UI dead after error message from progress view | I20041208-gtk (also see screenshot I will attach) While synchronizing, I already started looking at incoming changes. At some point, while opening the compare viewer (upper progress dialog on screenshot), an error occurred in CVS (see trace below), which caused the progress view to pop up an error dialog (lower dialog on screenshot) telling me about the failure. While the UI seems live (redraws do occur), no events get through to the dialogs, I cannot push a button using the mouse or keyboard. Eclipse is dead. I suppose it has something to do with double modal context threads or so. | verified fixed | 10adeb3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorNotificationManager.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/ProgressAnimationItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-10T20:02:33Z" | "2004-12-10T12:00:00Z" |
61,211 | Bug 61211 [Navigator] When deleting a linked resource, it asks if you're sure you want to delete any read-only files | I have a linked resource called Foo, which links to c:\foo. In this directory are several read-only files. In the Navigator in the Resource perspective, I try to delete this resource. It asks to confirm, and says that only the link will be deleted, the link target will not be changed. I say OK. Then it gives me a dialog for each read-only file in c:\foo, warning me that the file is read- only, do I really want to delete it. This contradicts what it said about not touching the target resource. I'm using 3.0 M8. | verified fixed | 6b4c8d3 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/DeleteResourceAction.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/ReadOnlyStateChecker.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-10T18:31:25Z" | "2004-05-06T13:26:40Z" |
22,698 | Bug 22698 [Import/Export] Import several projects at once | Eclipse R2.0 Right now if someone wants to import a projects to the workspace it has to be done one at a time. Usecase: someone lost the metadata for some reason. All the projects were in the default workspace location. The person now starts a new Eclipse session and wants to import the projects. It would be nice if the user could multiselect projects and import all at once. Another option would be to specify a root folder and for each immediate child look for a .project file. If it exists than we could try to import the project from that location. | verified fixed | 320f342 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ExternalProjectImportWizard.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-09T21:23:37Z" | "2002-08-22T12:40:00Z" |
80,646 | Bug 80646 [Dialogs] ResourceInfoPage should set background on read-only text widgets | null | verified fixed | bf9370e | ["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-12-09T21:21:50Z" | "2004-12-09T22:06:40Z" |
80,596 | Bug 80596 NPE in BasicNewMenu.registryChanged() | The BasicNewMenu listener code assumes that parent is never null when it calls markDirty() on it. This is causing every dynamic plug-in loading operation to generate an NPE which results in an error dialog appearing. | verified fixed | 640d735 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/BaseNewWizardMenu.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-09T15:22:37Z" | "2004-12-09T16:33:20Z" |
76,967 | Bug 76967 [RCP] IWorkbenchAction should be API | Was it intentional to mark this class as not subclassable? Is it expected that every client implement their own disposable action interface? | verified fixed | a068a7b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ActionFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-09T02:23:33Z" | "2004-10-25T18:46:40Z" |
80,429 | Bug 80429 [Preferences] [Dialogs] FieldEditors should relax requirements to support DialogPages | null | verified fixed | 0170414 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FieldEditorPreferencePage.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/BuildOrderPreferencePage.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/IDEPerspectivesPreferencePage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEWorkbenchPreferencePage.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/internal/dialogs/EditorsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-08T19:35:25Z" | "2004-12-07T22:53:20Z" |
77,738 | Bug 77738 [IDE] IDE plug-in needs to get off of the core compatibility layer | 20041102 The IDE plug-in is still on the compatibility layer. All of the code that needs migrating is in IDEWorkbenchAdvisor | verified fixed | 2a0d1e4 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchAdvisor.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-12-08T18:32:11Z" | "2004-11-03T19:26:40Z" |
77,800 | Bug 77800 [Encoding] Wrong information shown in encoding properties dialog | null | verified fixed | 96b90e2 | ["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-12-08T15:28:44Z" | "2004-11-04T06:33:20Z" |
80,400 | Bug 80400 [Preferences] use traditional style tabs for pref. dialog | i200412070800 The preferences dialog now shows the the title of every preference page in a curvy tab, following the 3.* default style, even if the user has chosen the 2.1 presentation or the traditional style tabs (Workbench > Appearance) with a 3.0 presentation (my case). | verified fixed | 732d55a | ["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-12-08T14:58:10Z" | "2004-12-07T20:06:40Z" |
80,406 | Bug 80406 [DynamicUI] NPE trying to open GIF file | Build: I20041207-0800 I double clicked on a GIF file in the package explorer and received this exception: org.eclipse.core.runtime.CoreException[4]: java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPlugin.createExtension (WorkbenchPlugin.java:198) at org.eclipse.ui.internal.EditorManager$5.run(EditorManager.java:909) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.EditorManager.createPart(EditorManager.java:907) at org.eclipse.ui.internal.EditorManager.openInternalEditor (EditorManager.java:893) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor (EditorManager.java:651) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:637) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched (WorkbenchPage.java:2283) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor (WorkbenchPage.java:2215) at org.eclipse.ui.internal.WorkbenchPage.access$6(WorkbenchPage.java:2207) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2193) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2188) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:299) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor (EditorUtility.java:172) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor (EditorUtility.java:114) at org.eclipse.jdt.internal.ui.actions.OpenActionUtil.open (OpenActionUtil.java:49) at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:164) at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:150) 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.jdt.internal.ui.packageview.PackageExplorerActionGroup.handleOpen (PackageExplorerActionGroup.java:292) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart$4.open (PackageExplorerPart.java:678) at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:659) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:1044) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.jface.viewers.StructuredViewer.fireOpen (StructuredViewer.java:657) at org.eclipse.jface.viewers.StructuredViewer.handleOpen (StructuredViewer.java:876) at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen (StructuredViewer.java:975) at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:243) at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:238) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:277) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:814) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2803) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2448) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.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 | 95ee695 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/EditorDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-07T21:03:15Z" | "2004-12-07T20:06:40Z" |
80,385 | Bug 80385 [DynamicUI] Basic project property pages are gone | 200412070800 The basic property info page on projects is no longer there. Possibly caused by introduced by the registry changes or the preference changes. | verified fixed | 8081688 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/RegistryPageContributor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-07T20:25:57Z" | "2004-12-07T17:20:00Z" |
79,638 | Bug 79638 [EditorMgmt] history: NavigationHistory won't release references to IEditorParts | Through profiling I have discovered that the reason my references are never released is because NavigationHistory is holding them. NavigationHistory gets references to every IEditorPart opened within a particular WorkbenchPage. From what I can tell through code examination it never releases any of them until the number held reaches an appearantly arbitrary 50. It does not seem to be at all related to how much memory a particular editor is using. If this is some form of cache one wonders if it could have been better done with SoftReferences. In any event, I need a way to get the NavigationHistory to empty itself. Else I will be limited in the number of work that can be done with my plugin since none of the memory upto 50 editors will ever be reclaimed. | verified fixed | 4382684 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IEditorInput.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-07T15:51:01Z" | "2004-11-28T16:40:00Z" |
80,259 | Bug 80259 WorkingSetManager not correctly disposed | I20041201 The workbench plug-in resets instance variables in its reset method. Therefore the workingset manager isn't correctly disposed. Will provide a patch that fixes the problem. | verified fixed | 1dfd3d4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-07T03:39:01Z" | "2004-12-06T13:33:20Z" |
54,779 | Bug 54779 [RCP] Problem updating menus, menu not appearing | I'm using 3.0 M7. I have an application, implementing workbench advisor, that creates a placeholder Help menu in the top level menu. Since the Help menu has no items other than separators and group items a swt menu is not created. Later on an item, Help Contents, is contributed to the Help menu. When getMenuBarManager().updateAll(false); is called from updateActionBars() in WorkbenchWindow the help menu will not be updated for two reasons: 1) The top level menu is not dirty, so it can't fill the help menu can create the swt menu. 2) The swt menu for the Help menu does not exist, so the swt menu can not be created. I have an sample application to demonstrate the problem as well as a fix to MenuManager.java in jface to solve the problem. The fix is to override markDirty()in MenuManager.java with the following code. /* (non-Javadoc) * @see org.eclipse.jface.action.IContributionManager#markDirty() */ public void markDirty() { super.markDirty(); // if we do not have a menu yet, then we need to mark our parent as dirty so our parent will // have the chance to create our menu when it gets updated. if (!menuExist()) { IContributionManager parent = getParent(); if (parent != null && !parent.isDirty()) { parent.markDirty(); } } } | verified fixed | 5c4a8c3 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/MenuManager.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/action/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/action/ContributionManagerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/action/MenuManagerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/images/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/AllTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-07T03:29:59Z" | "2004-03-15T00:20:00Z" |
73,769 | Bug 73769 [Dialogs] Open Resource dialog has OK enabled when entry invalid | 3.0.1 RC2 - Ctrl+Shift+R - type: WorkbenchWino (note the missing d) and hit Enter - the dialog is dismissed with no action Should disable OK if there is no match. | verified fixed | 70b43d9 | ["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-12-06T20:16:24Z" | "2004-09-13T15:40:00Z" |
79,957 | Bug 79957 [Viewers] NPE changing input usingTableViewer and virtual | I'm using the latest code for Table viewer with a private virtual manager class in table viewer. i've straight forward code ... <code> Table table=new Table(shell,SWT.VIRTUAL); TableViewer tv=new TableViewer(table); tv.setContentProvider(new NetworkContentProvider()); tv.setLabelProvider(new NetworkLabelProvider()); tv.setInput(model); . . . in a selection event handler for a button, i've to reset the model input . . tv.setInput(model1); . . Same code works fine without the SWT.VIRTUAL style bit,but when VIRTUAL is set it throws a null pointer exception... the stack trace was java.lang.NullPointerException at org.eclipse.jface.viewers.TableViewer$1.handleEvent(TableViewer.java:103) 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.Table.wmNotifyChild(Table.java:3158) at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:4040) at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java:722) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3025) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1400) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3349) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1403) at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:137) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3056) 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:1479) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2440) at jface.viewers.TestJfaceVirtual.main(TestJfaceVirtual.java:49) | verified fixed | 687814d | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/VirtualTableViewerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-06T17:15:31Z" | "2004-12-02T06:46:40Z" |
80,133 | Bug 80133 Cannot open editors or expand package explorer | GTK+ 2.4.9, KDE 3.3.1, Linux 2.6.9, I200412011139 When running a self-hosted workspace, I cannot open any editors nor can I expand items in the package explorer. I have tried text, Java and manifest editors. All paths lead to exceptions. Marking as blocker, as this is keeping me from doing testing. I'm also worried that this is a real problem (rather than just something weird with my configuration), and that this problem will find its way into next week's integration build. When expanding the package explorer, I get multiple exceptions of the form: !ENTRY org.eclipse.ui 4 4 2004-12-03 10:30:40.133 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 2004-12-03 10:30:40.135 !MESSAGE Failed to execute runnable (java.lang.NullPointerException) !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:2827) at org.eclipse.swt.SWT.error(SWT.java:2752) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:121) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2675) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2400) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.queryFileResource(OpenWorkspaceFileAction.java:79) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.run(OpenWorkspaceFileAction.java:96) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:243) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:221) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:180) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:445) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:724) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:767) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:536) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:479) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:221) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1067) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:995) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1020) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1005) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1032) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:596) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1885) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:522) at org.eclipse.swt.widgets.Table.gtk_key_press_event(Table.java:1401) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1332) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3241) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4615) at org.eclipse.swt.widgets.Display.eventProc(Display.java:907) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1077) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2395) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:582) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) !ENTRY org.eclipse.ui 4 4 2004-12-03 10:30:40.146 !MESSAGE *** SWT nested exception !ENTRY org.eclipse.ui 4 0 2004-12-03 10:30:40.147 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.misc.ProgramImageDescriptor.hashCode(ProgramImageDescriptor.java:71) at java.util.Hashtable.get(Hashtable.java:336) at org.eclipse.ui.model.WorkbenchLabelProvider.getImage(WorkbenchLabelProvider.java:139) at org.eclipse.ui.dialogs.ResourceListSelectionDialog.getImage(ResourceListSelectionDialog.java:601) at org.eclipse.ui.dialogs.ResourceListSelectionDialog.updateItem(ResourceListSelectionDialog.java:852) at org.eclipse.ui.dialogs.ResourceListSelectionDialog.access$2 (ResourceListSelectionDialog.java:834) at org.eclipse.ui.dialogs.ResourceListSelectionDialog$7.run(ResourceListSelectionDialog.java:293) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2675) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2400) at org.eclipse.jface.window.Window.runEventLoop(Window.java:718) at org.eclipse.jface.window.Window.open(Window.java:696) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.queryFileResource(OpenWorkspaceFileAction.java:79) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.run(OpenWorkspaceFileAction.java:96) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:243) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:221) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:180) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:445) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:724) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:767) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:536) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:479) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:221) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1067) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:995) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1020) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1005) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1032) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:596) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1885) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:522) at org.eclipse.swt.widgets.Table.gtk_key_press_event(Table.java:1401) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1332) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3241) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4615) at org.eclipse.swt.widgets.Display.eventProc(Display.java:907) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1077) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2395) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:582) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) When trying to open an editor, I get an exception of the form: !ENTRY org.eclipse.core.runtime 4 2 2004-12-03 14:11:45.887 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". !STACK 1 org.eclipse.core.runtime.CoreException[4]: java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:198) at org.eclipse.ui.internal.EditorManager$5.run(EditorManager.java:909) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.EditorManager.createPart(EditorManager.java:907) at org.eclipse.ui.internal.EditorManager.openInternalEditor(EditorManager.java:893) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:651) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:637) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2283) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2215) at org.eclipse.ui.internal.WorkbenchPage.access$6 (WorkbenchPage.java:2207) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2193) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2188) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:299) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.run(OpenWorkspaceFileAction.java:103) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:243) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:221) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:180) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:445) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:724) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:767) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:536) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:479) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:221) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1067) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:995) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1020) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1005) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1032) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:596) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1885) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:522) at org.eclipse.swt.widgets.Tree.gtk_key_press_event(Tree.java:637) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1332) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3241) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4615) at org.eclipse.swt.widgets.Display.eventProc(Display.java:907) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1077) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2395) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:582) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) !SUBENTRY 1 org.eclipse.ui 4 4 2004-12-03 14:11:45.901 !MESSAGE Cannot create extension !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:198) at org.eclipse.ui.internal.EditorManager$5.run(EditorManager.java:909) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.EditorManager.createPart(EditorManager.java:907) at org.eclipse.ui.internal.EditorManager.openInternalEditor(EditorManager.java:893) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:651) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:637) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2283) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2215) at org.eclipse.ui.internal.WorkbenchPage.access$6 (WorkbenchPage.java:2207) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2193) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2188) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:299) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.run(OpenWorkspaceFileAction.java:103) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:243) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:221) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:180) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:445) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:724) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:767) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:536) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:479) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:221) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1067) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:995) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1020) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1005) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1032) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:596) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1885) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:522) at org.eclipse.swt.widgets.Tree.gtk_key_press_event(Tree.java:637) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1332) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3241) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4615) at org.eclipse.swt.widgets.Display.eventProc(Display.java:907) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1077) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2395) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:582) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) !SUBENTRY 1 org.eclipse.ui 4 4 2004-12-03 14:11:45.903 !MESSAGE Cannot create extension !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin.java:198) at org.eclipse.ui.internal.EditorManager$5.run(EditorManager.java:909) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:616) at org.eclipse.core.runtime.Platform.run(Platform.java:747) at org.eclipse.ui.internal.EditorManager.createPart(EditorManager.java:907) at org.eclipse.ui.internal.EditorManager.openInternalEditor(EditorManager.java:893) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:651) at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:637) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2283) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2215) at org.eclipse.ui.internal.WorkbenchPage.access$6 (WorkbenchPage.java:2207) at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2193) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2188) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:299) at org.eclipse.ui.internal.ide.actions.OpenWorkspaceFileAction.run(OpenWorkspaceFileAction.java:103) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:243) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:221) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:180) at org.eclipse.ui.internal.commands.Command.execute(Command.java:130) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:445) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:724) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:767) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:536) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:479) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:221) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1067) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:995) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1020) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1005) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1032) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:596) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1885) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:522) at org.eclipse.swt.widgets.Tree.gtk_key_press_event(Tree.java:637) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1332) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3241) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4615) at org.eclipse.swt.widgets.Display.eventProc(Display.java:907) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1077) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2395) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1578) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1549) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:281) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:144) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:102) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:220) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:129) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:582) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:710) at org.eclipse.core.launcher.Main.main(Main.java:694) !ENTRY org.eclipse.ui.ide 4 4 2004-12-03 14:11:45.967 !MESSAGE Open Resource !ENTRY org.eclipse.ui 4 0 2004-12-03 14:11:45.969 !MESSAGE Unable to instantiate editor: org.eclipse.pde.ui.manifestEditor org.eclipse.core.runtime.CoreException: Cannot create extension | verified fixed | 14753bc | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/EditorDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/EditorRegistryReader.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-06T16:44:46Z" | "2004-12-03T18:53:20Z" |
80,179 | Bug 80179 [DynamicUI] view-related warning messages in the log | null | verified fixed | 75de61b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-03T22:03:29Z" | "2004-12-03T21:40:00Z" |
80,174 | Bug 80174 [DynamicUI] Show View->Other window empty | The dyanmic UI changes introduced were not correct. We are not flagging the category->view mappings as being stale in the ViewRegistry properly. As such, all categories are viewless. | verified fixed | 13d0c5b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/ViewRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-03T21:12:47Z" | "2004-12-03T21:40:00Z" |
62,788 | Bug 62788 [Themes] Colors and Fonts page does not expand on search | 20040514 If I reduce the list of the avaialble fonts the matches are not displayed even though the tree is reduced when I type. STEPS 1) Open the fonts and colours preference page 2) Type console 3) It will be reduced to the Basic tab but not expanded to show the matches | verified fixed | 01808a9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredTree.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-03T19:08:59Z" | "2004-05-18T19:53:20Z" |
80,025 | Bug 80025 [Preferences] more preference search improvements | - removed search button - added incremental search while typing will attach patch based on HEAD. | closed fixed | b8c85eb | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-12-02T19:52:47Z" | "2004-12-02T15:06:40Z" |
63,826 | Bug 63826 Project menu Build Working Set item has extra separator | build i20040520 The project menu "Build Working Set" submenu should be disabled when there are OR when you can not build a working set. (i.e. you are building automatically). Secondly. The submenu looks strange with the extra separator on the top when there are no working sets. This separator should not exist unless there is a working set. Perhaps "Select Working set..." should be on top (so it keeps the same position) and then once there is a working set, you add the separator and then the working sets. | verified fixed | b5291ba | ["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-12-02T14:29:06Z" | "2004-05-25T13:00:00Z" |
52,669 | Bug 52669 [DetachedView] Undocked/floating windows looses position | When I undock my package explorer in one perspective onto screen/monitor 1 and places it at a specific position. I then switch to debug perspective and then back again, the unlocked/floating window is placed in the exact same position as I left it in. If I place the floating window in screen/monitor 2 however, the window appears to the far left on screen 1 (possible in position 0,0). This means everytime I switch to and from the debug perspective, I have to move my package explorer undocked window back onto the second screen. Expected result: The floating/undocked window keeps its position when switching perspectives even if it was positioned on screen 2 as it does on screen 1. I Have only tested this on Linux Redhat 9.0/KDE3.2 using SWT GTK. Except not using this feature, I don't see a simple workaround to keep the window positions. | verified fixed | 43863a6 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DetachedWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-25T03:25:24Z" | "2004-02-20T18:00:00Z" |
69,737 | Bug 69737 [Dialogs] New folder dialog is too tall | File > New > Folder I can see only the top half of the textbox 'Folder Name'. When I resize by means of the mouse cursor, it becomes normal. | verified fixed | be032e3 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/ContainerSelectionGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/ResourceAndContainerGroup.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/DrillDownComposite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-24T20:07:20Z" | "2004-07-09T16:20:00Z" |
54,128 | Bug 54128 [PropertiesDialog] Categories for property pages | 20040309 The Property page dialog are shown in a tree but it is not possible to define categories and have pages as children in these categories. The drawback of the current solution is that the list of property pages can get quite long and that all pages have to cantain the context in the name e.g. 'Java Build Path', 'Java Compiler Options', 'Java Task Tags' We are planing to offer more and more project dependend settings, what would further increase the number of entries in the list. | verified fixed | f7f66f6 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyPageContributorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyPageManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/RegistryPageContributor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/CategorizedPageRegistryReader.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PreferencePageRegistryReader.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PropertyPagesRegistryReader.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-24T14:35:26Z" | "2004-03-09T13:46:40Z" |
76,378 | Bug 76378 [Progress] Deadlock in interaction between ModalContext, UIThread, and background NotifyJob | org.eclipse.ui.internal.UILockListener seems to contain code that allows the UI thread to obtain locks that are held by another thread, if the UI thread is currently servicing a syncExec request from that other thread. However, when a third thread gets involved this seems to sometimes deadlock. In particular, if workspace background notification is triggered during an workspace operation that contains multiple nested operations, deadlock occurs. Since background notification is timing related, changes in timing can cause otherwise OK code to suddenly begin deadlocking. I've included a JUnit test to reproduce the problem, and a patch that seems to solve it. | verified fixed | a041db7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/UILockListener.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/deadlock/NestedSyncExecDeadlockTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-23T20:40:22Z" | "2004-10-15T17:06:40Z" |
77,339 | Bug 77339 [Progress] [Dialogs] The workbench leaks dialogs | Here's how to reproduce: 1. Use Windows (though this is not OS specific issue) 1. Fire up Eclipse 3.0/3.0.1 (I suspect this isn't fixed in the 3.1 steam either). 2. Create a realy simple Java testing project. It doesn't even need to have any Java classes in it. 3. Invoke the Project/Properties dialog (you can do it from the Project menu or from the context menu of the test project entry in the Package Explorer - doesn't matter). 4. Switch to the Java Build Path entry in the dialog. 5. Now, just press the OK button to close the dialog (note, you need to press OK, NOT Cancel, or the bug won't be reproduced, for reasons that will become clear below). 6. Fire up the Spy++ thing. It can be found in the Visual Studio 6 Tools package (or later VSs). 7. In Spy++, switch to the Windows view (Ctrl+W). 8. Invoke the Find dialog (Alt+F3) 9. In the dialog, remove the values for 'Handle:' and 'Class:' and for 'Caption:' enter 'Setting build path', without the quotation marks. 10. A leftover dialog will be found, created by the workbench UI Job management stuff. 11. If you repeat step 3-5 10 times, you'll get 10 such dialogs. =================================== Why does this happen? The problematic code is in package org.eclipse.ui.internal.progress, class ProgressMonitorFocusJobDialog, method <public void show(Job jobToWatch)>. What I interpret to happen there, is that: 1. First, the dialog is created, *but not shown* - this is crucial. This happens because of: <snip> setOpenOnRun(false); aboutToRun(); </snip> 2. Then, the UI is being blocked for several hundred milliseconds without any UI progress indication. This happens because of: <snip> //start with a quick busy indicator. Lock the UI as we //want to preserve modality BusyIndicator.showWhile(PlatformUI.getWorkbench().getDisplay(), new Runnable() { public void run() { try { Thread .sleep (ProgressManagerUtil.SHORT_OPERATION_TIME); } catch (InterruptedException e) { WorkbenchPlugin.log(e.getLocalizedMessage()); } } }); </snip> I believe this is done so that the user not to be bugged by flashing UI for job stuff which needs very short time to complete. 3. Finally, a WorkbenchJob is created and kept in a variable 'openJob'. Its method 'public IStatus runInUIThread(IProgressMonitor monitor)' is always run on behalf of the UI thread. Now, this method is I think where the problem is. This <snip> //if the job is done at this point, we don't need the dialog if (job.getState() == Job.NONE){ cleanUpFinishedJob(); return Status.CANCEL_STATUS; } </snip> snippet inside it obviously checks whether the job had finished during point (2.). If so, we don't need to open the dialog at all. Unfortunately, it is not taken into account, that the dialog is created already - and invisible. The "cleanUpFinishedJob();" thing called in the last snippet does not dispose the dialog, so it remains hanging till Eclipse is closed. And no, the dialog will not automatically close itself when the job goes to the DONE state, because a "createCloseListener()" is installed only if the dialog is opened with "setOpenOnRun(true);", and in our case, it is NOT (check point 1.). I found this because SWT/Fox used to have slight semantic difference with the other SWT ports, as to how modality works. In SWT/Fox, if a Shell is created with a modal flag, the rest of the UI is disabled even if the modal shell is invisible, while in the other SWT ports, a modal shell in invisible state is not considered modal. So this hidden dialog hanging around caused Eclipse-on-SWT/Fox to become unresponsive to user input after the steps-to-reproduce are carried out. Anyways, sorry for the long analysis, hope it is correct and will help you guys fix the issue. | verified fixed | 77e7913 | ["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-11-18T21:23:35Z" | "2004-10-30T15:26:40Z" |
78,878 | Bug 78878 [Preferences] Navigation history for workbench preference page | As discussed, I will attach a a patch against WorkbenchPreferenceDialog that implements a navigation history. Notes: 1) Placement I placed the controls at the bottom between the import/export and ok/cancel buttons. This is probably not final, but I figured as long as you are changing around the layout anyway, this might be a good place to start. Placing the control somewhere else is easy, simply call createHistoryControls from whereever you like. 2) Persistence The history does not persist over closing and reopening the preference dialog. This may be a later option we could discuss, but it seems reasonable to me as it is now (a browser doesn't store the forward/backward contents over sessions either). 3) The history domain elements are currently preference page ids. This may change once we have a more finegrained addressing scheme as discussed. | verified fixed | 02b2449 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PreferenceHistoryEntry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PreferencePageHistory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-18T18:11:00Z" | "2004-11-17T19:33:20Z" |
78,947 | Bug 78947 AbstractWorkingSetManager doesn't connect working sets restored from memento | I20041116 Title says it all. | verified fixed | ccbf4c2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AbstractWorkingSetManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-18T15:23:01Z" | "2004-11-18T15:00:00Z" |
77,071 | Bug 77071 [Navigator] [Viewers] Navigator update loses additions | Build: I20041019 I am working on support for lazily populating the workspace in cases where the user has a slow file system (such as remote network share). When a project is created, a background job is started to do a refreshLocal to pull in contents from the file system. In the meantime, the user can continue to browse the project as it arrives. While testing, I discovered the TreeViewer update algorithm doesn't function properly when it receives notification to add an item it already nows about. Here is what happens: 1) Project is created. WorkbenchContentProvider receives delta for added project. 2) Background refresh is started 3) User expands new project. At this point the refresh is partially complete, but the navigator has not yet received a delta for it. When the content provider asks for the children of the project, it gets a list of the folders that have already been discovered. Say the project "P" contains single folder "f" at this point. The folder "f" is shown in the navigator. At this point the children of "f" have not yet been discovered, so no "plus box" is added for the "f" tree item. (hasChildren returns false at this point). 4) The refresh completes, and WorkbenchContentProvider receives a delta for all of the refresh resources. This delta looks like: /P [*] (changed project) /P/f [+] (added folder) /P/f/a.txt (added file) We see that "f" does indeed have a child. WorkbenchContentProvider just does a single TreeViewer.add() call for /P/f, and doesn't bother calling add for the child /P/f/a.txt. In AbstractTreeViewer.createAddedElement(Widget, Object) we see that it tests to ensure it is not adding something that already exists: for (int i = 0; i < items.length; i++) { if (items[i].getData().equals(element)) return; } This correctly short-circuits the addition. However, it means the /P/f tree item is never updated, so it remains without a "plus box" even though it now has children. The navigator view has to be closed and reopened to get the new items to appear correctly. Possible fix: when the TreeViewer addition code discovers it is being told to add an element that already exists, it could instead just update the element: private void createAddedElement(Widget widget, Object element) { if (equals(element, widget.getData())) return; Item[] items = getChildren(widget); for (int i = 0; i < items.length; i++) { if (items[i].getData().equals(element)) { update(element, null); return; } } int index = indexForElement(widget, element); createTreeItem(widget, element, index); } This is currently difficult to reproduce naturally, but quite easy to reproduce on a slow drive (I simulate this by adding a 1ms sleep to CoreFileSystemLibrary.getStat). | verified fixed | 53fea2f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-17T21:37:10Z" | "2004-10-26T22:33:20Z" |
78,111 | Bug 78111 [WorkingSets] Add support for dynamically created working sets | 3.1 M3 As part of the JDT team's explorations into grouping by working sets (in the Package Explorer and other navigation views), they would also like to be able to show dynamically created working sets. For example, a working set representing the set of recently used files. | verified fixed | 5adaf6d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ILocalWorkingSetManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbench.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkingSetManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkingSetUpdater.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AbstractWorkingSetManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LocalWorkingSetManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPlugin.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkingSet.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkingSetManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetNewWizard.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetTypePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/WorkingSetDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/WorkingSetRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-08T21:06:17Z" | "2004-11-08T21:40:00Z" |
56,973 | Bug 56973 [Themes] FontRegistry.bestDataArray() chops off all but the first "good" font | M8 The font registry is not making use of the motif ability to have multiple FontData objects in a font because bestDataArray() is using only the first good font. | verified fixed | dcd6ff8 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FontFieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/FontDefinition.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeElementHelper.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/preferences/DeprecatedFontPreferenceTestCase.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/preferences/FontPreferenceTestCase.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-08T16:52:15Z" | "2004-03-31T21:53:20Z" |
77,704 | Bug 77704 [Themes] Choose font should switch to busy cursor | I200411022000, Motif On a SPARC 650MHz Motif, it takes a long time for the font chooser dialog to appear. When opening it from the colours and fonts preference page, there should probably be a busy cursor. | verified fixed | 75f81d3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorsAndFontsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-08T15:40:28Z" | "2004-11-03T16:40:00Z" |
65,187 | Bug 65187 [Themes] Cascading*Registry leakage from Colors and Fonts pref page | Small leak on I20040529 For each ColorsAndFontsPreferencePage this is created, the cascading font and color registries are leaked. This is because the superclasses register a runnable with Display#disposeExec | verified fixed | 5288a79 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ColorRegistry.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/CascadingColorRegistry.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/CascadingFontRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-08T14:57:02Z" | "2004-06-01T22:46:40Z" |
67,053 | Bug 67053 [Workbench] when locking fails with exception, wrong message is shown | 3.0 RC2 The same message will be shown by UI when locking fails, regardless the nature of the failure. case 1) Location#lock returns false - the "Current workspace is already in use" is shown case 2) Location#lock throws an IOException - something like "An error happened trying to lock the workspace" should be shown to the user, and the IOException should be logged. The same message (case 1) is being shown in both cases. Follows the code I am talking about: public final class IDEApplication ... { ... private boolean checkInstanceLocation(Shell shell) { ... try { if (instanceLoc.lock()) { writeWorkspaceVersion(); return true; } } catch (IOException e) { // do nothing } MessageDialog.openError( shell, IDEWorkbenchMessages .getString("IDEApplication.workspaceCannotLockTitle"), //$NON-NLS-1$ IDEWorkbenchMessages .getString("IDEApplication.workspaceCannotLockMessage")); //$NON-NLS-1$ return false; ... } ... } | verified fixed | 56a03c7 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEApplication.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-11-05T15:55:28Z" | "2004-06-14T19:06:40Z" |
77,661 | Bug 77661 [KeyBindings] interactions: "Esc, Shift+R" key binding doesn't work | 200411022000 Create a binding to Esc, Shift + R Hit Esc Hold Shift At this point the system will beep and the R will not be honoured Hold Shift Hit Esc Hit R Command executes as expected Hit Esc Wait for hint dialog to appear Hold Shift Hit R Command executes as expected | verified fixed | b06c43a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/OutOfOrderListener.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/OutOfOrderVerifyListener.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-11-04T16:56:04Z" | "2004-11-03T16:40:00Z" |
77,129 | Bug 77129 [KeyBindings] Esc doesn't close dialogs | Build id: 200410260800 Esc currently doesn't close any pop-up anymore (e.g. the 'Open Type' dialog). Steps: - Enable Emacs Bindings - Open 'Open Type' or another modal dialog - Hit Esc - Observe: The dialog doesn't close - Observe: The status bar indicates that Esc has been pressed | verified fixed | f23a2e5 | ["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-28T20:09:00Z" | "2004-10-27T15:13:20Z" |
76,726 | Bug 76726 [Jobs][Progress] Redesign job error dialog | The job error dialog is very confusing. It shows two lists in a sort of master/detail paradigm. When you first see the error, you have to click on the first error listing in the top of the dialog to see the actual error message in the bottom of the dialog. This is not obvious. Furthermore, there is no text on the dialog to give users any help. Suggest that, if there is only one error reported, that you use the regular single error dialog (that dialog does appear if you click the 'job-errored' icon in the status line of the workbench). If multiple errors occur then use a multi-error dialog. And redesign a new multi-error dialog that is a little easier for the user to understand. Perhaps a listing of the errors in a FormText where the error title and error text could be displayed without the user clicking on each error individually (just an idea). | verified fixed | 04a47d8 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorNotificationDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorNotificationManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/FinishedJobs.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobErrorDialog.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/ProgressAnimationItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/IProgressConstants.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-27T15:07:34Z" | "2004-10-21T03:40:00Z" |
62,940 | Bug 62940 [Themes] Pref page should remember tree expansion state and selection | 200405190010 It's terribly annoying when you want to tweak certain colours and see their effects in the workbench. You have to dig back into the tree to find them. | verified fixed | 3ab80d2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorsAndFontsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-27T14:38:07Z" | "2004-05-19T15:20:00Z" |
77,036 | Bug 77036 [JFace] Test failures in ImageCacheTest | N20040925200, GTK+ 2.2.4, GNOME The following test failure occurred in the nightly build. junit.framework.AssertionFailedError at org.eclipse.jface.tests.images.ImageCacheTest.testDispose(ImageCacheTest.java:122) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:320) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:196) at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35) at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31) 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 org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:704) at org.eclipse.core.launcher.Main.main(Main.java:688) | verified fixed | 481c035 | ["tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/images/ImageCacheTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-26T20:01:29Z" | "2004-10-26T17:00:00Z" |
75,835 | Bug 75835 [EditorMgmt] [Contributions] Action Bars are not cleaned up after an Editor throws PartInitException | If an Editor part throws a PartInitException during initialization (in the org.eclipse.ui.IEditorPart#init(IEditorSite, IEditorInput) method), the Action Bars are not cleaned up properly. This can cause problems. In my case I had following behavior: 1) An editor of type 1 would throw the PartInitException (and it has some toolbar actions defined) 2) Eclipse would deal with that and not display the editor (or the toolbar) 3) Another editor type (type 2) with a toolbar is invoked and everything opens properly 4) Close editor of type 2 - the toolbar of the editor type 1 is displayed and cannot be removed until the application is restarted. I have tracked this down to the org.eclipse.ui.internal.EditorManager#createSite(...). Before calling part.init (), it creates action bars but if init() throws an exception they are not disposed of. I checked the closeEditor method in the same class - it invokes the disposeEditorActionBars() method which is supposed to clean up the action bars. There are really no valid work-arounds (except not throwing the PartInititException which is part of the API) - all of these classes and methods are internal and even access private fields that are not exposed through getters. It seems that createSite() should catch the exception, call the disposeEditorActionBars() method and then re-throw. | verified fixed | 38d0d4a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-26T19:43:06Z" | "2004-10-07T20:13:20Z" |
77,016 | Bug 77016 [Themes] [Jface] NPE in "FontRegistry#disposeFonts" | I am using buildId=I200410260800 on Windows XP. - Download buildId=I200410260800 - Extract and run eclipse (select OK for default workspace) - Close the welcome page - Close eclipse - The following will be in the log: !SESSION 2004-10-26 10:31:59.259 ----------------------------------------------- eclipse.buildId=I200410260800 java.version=1.4.2_02 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US !ENTRY org.eclipse.osgi 2004-10-26 10:31:59.259 !MESSAGE Application error !STACK 1 java.lang.NullPointerException at org.eclipse.jface.resource.FontRegistry.disposeFonts(FontRegistry.java:576) at org.eclipse.jface.resource.FontRegistry.clearCaches(FontRegistry.java:564) at org.eclipse.jface.resource.FontRegistry$1.run(FontRegistry.java:192) at org.eclipse.swt.widgets.Display.release(Display.java:2503) at org.eclipse.swt.graphics.Device.dispose(Device.java:215) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:117) 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:704) at org.eclipse.core.launcher.Main.main(Main.java:688) | verified fixed | c6e3993 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-26T17:55:29Z" | "2004-10-26T14:13:20Z" |
72,434 | Bug 72434 [Workbench] Toolbars in CTabItems not rendering in RIGHT_TO_LEFT | null | verified fixed | e3e4fc4 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/util/Geometry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-26T17:38:03Z" | "2004-08-23T14:06:40Z" |
76,846 | Bug 76846 Calling layout sets the height of a widget to 0 | 20041013 Note this was not an issue in M2. I have the following code in ProgressMonitorJobsDialog GridData viewerData = new GridData(GridData.GRAB_HORIZONTAL | GridData.GRAB_VERTICAL | GridData.FILL_BOTH); int heightHint = convertHeightInCharsToPixels(10); viewerData.heightHint = heightHint; viewer.getControl().setLayoutData(viewerData); Point size = viewer.getControl().computeSize( viewerComposite.getBounds().width, heightHint); viewer.getControl().setVisible(true); viewer.getControl().setSize(size); viewerComposite.layout(); viewerHeight = viewer.getControl().getBounds().height; When I run this code size is a reasonable size (about 400 x 200).If I then call layout and execute the last line I get a viewerHeight of 0. Not calling layout is just fine (I think I can remove this code). However this will cause a lot of trouble when layout() is called. To replicate 1) Load org.eclipse.ui.examples.jobs 2) Open the Job Factory in a self hosted image 3) Select Usr Job and Create Jobs 4) A dialog will come up 5) Select the details button. No resize will occur. | resolved wontfix | 2ae8fce | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorJobsDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-26T14:23:45Z" | "2004-10-22T18:33:20Z" |
76,969 | Bug 76969 Preference change not propegated. | build N20041024 - open the workbench - popup a menu over the perspective switcher and choose Dock On > Left NOTE that the UI does not respond right away (and it should). Seems that the listener is not being notified of the change. | resolved fixed | d5c8a8e | ["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-25T21:07:57Z" | "2004-10-25T18:46:40Z" |
76,507 | Bug 76507 [Encoding] properties dialog show BOM when there is no BOM | n20041017 The properties dialog for a file will say: Byte Order Mark is ... whenever the encoding for a file is determined from its contents (regardless a BOM was found or not). Test case: check with any *.properties files - it will say the file has a ISO 8859-1 BOM, which cannot true. | verified fixed | 52ce5e9 | ["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-10-25T20:39:17Z" | "2004-10-18T20:06:40Z" |
76,453 | Bug 76453 [Encodings] Open properties fills log with encoding messages | I20041013 Every time I open the properties for a file it writes the following entries to .log (and also messages to the console): !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.328 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.328 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.338 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.338 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.338 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.348 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.348 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.358 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.358 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.358 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.368 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.368 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.378 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.378 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.388 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.388 !MESSAGE null is not a valid charset. !ENTRY org.eclipse.ui 4 4 Okt 18, 2004 10:21:41.388 !MESSAGE null is not a valid charset. | verified fixed | 4891f4c | ["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-10-25T20:30:09Z" | "2004-10-18T09:00:00Z" |
69,143 | Bug 69143 [ActivityMgmt] Difficult to disable activities | If activities show up in several categories, it is difficult to turn them off using the preferences page becuase all entries need to be unchecked. I suggest the following design: You already have the ability to draw the checks in the checkboxes either grey or black. The boxes that are explicitly check using the preferences page should be shown in black, all others should be shown in grey. If a user deselect an activity checkbox that is black, all matching grey checkboxes will should also be deselected (assuming there is only one black checkbox for that activity). If a user selects an unchecked activity, the checkbox should be black and all other matching activities should be checked as grey). Also, the same rule should apply for required activities; so that if a user selects an activity (A) which requires another (B), the required one (B) should be checked as grey, and if the user later deselects the main activity (A), then the required (B) activity should automatically be deselected. Finally, if all checkboxes are grey, deselecting one of them (assuming it is not required by another enabled activity) should deselect all of them. Likewise, if an activity (A) is enabled, but grey everywhere, and requires (B), which is also grey everywhere, deselecting A should deselect all occurances of B. Actually, it should recursively deselect all possible activities that are only grey. | closed fixed | 4284175 | ["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-10-25T18:29:01Z" | "2004-07-01T16:40:00Z" |
76,940 | Bug 76940 [Preferences] Update JFace javadoc for #putValue and notification | build R3.0 The javadoc for JFace's IPreferenceStore#putValue needs to be updated. The #putValue method does not send out any notification which can cause ill effects if people call this method while others are relying on property change listeners for changes to the values. The spec should be updated to say that clients should only call it when changing their own private preference keys and should not be calling it when modifying public API preference keys. | verified fixed | f409fd5 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/IPreferenceStore.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-25T18:02:59Z" | "2004-10-25T16:00:00Z" |
76,937 | Bug 76937 [Themes] [JFace] Bug in addAllocatedFontsToStale() | 200410190941 In addAllocatedFontsTo we do checks to see if the various font variations are the default font. If they aren't, we add the base font to the stale queue. We should be adding the font we're checking to the queue. | verified fixed | 91d8ce9 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-25T14:57:01Z" | "2004-10-25T16:00:00Z" |
76,892 | Bug 76892 [EditorMgmt] [RCP] CTRL-E brings up empty editor list even if editor area is hidden | 3.0 My RCP app has a hidden editor area and hasn't replaced the CTRL-E binding, I'm using the default o.e.ui key configuration. When CTRL-E is pressed I get an empty editors list popup aligned with the left side of the app. - should the pop-up still show if there is no editor area? | verified fixed | 457df72 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/newapi/TabbedStackPresentation.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/TabbedStackPresentation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-25T14:34:02Z" | "2004-10-24T01:06:40Z" |
76,867 | Bug 76867 Warnings in the nightly build 01022 | These three warnings appeared in build 1022. You can set up your compiler settings to report an error instead of a warning. This would prevent such code to be released. ---------- 1. WARNING in /builds/N/src/plugins/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/intro/IntroTest.java (at line 21) import org.eclipse.ui.internal.intro.IntroMessages; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The import org.eclipse.ui.internal.intro.IntroMessages is never used ---------- 1 problem (1 warning) ---------- 1. WARNING in /builds/N/src/plugins/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/WizardFormEditor.java (at line 27) import org.eclipse.jface.operation.ModalContext; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The import org.eclipse.jface.operation.ModalContext is never used ---------- ---------- 2. WARNING in /builds/N/src/plugins/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/WizardFormEditor.java (at line 35) import org.eclipse.swt.custom.StackLayout; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The import org.eclipse.swt.custom.StackLayout is never used ---------- 2 problems (2 warnings) | resolved fixed | 0ff9caa | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/intro/IntroTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-25T12:37:55Z" | "2004-10-23T02:53:20Z" |
2,920 | Bug 2920 [Workbench] IMemento.getChildren does not match Javadoc API spec (1GKNTYG) | The Javadoc API of IMemento.getChildren specifies that a list is returned but the code returns an array. NOTES: | verified fixed | dd44133 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IMemento.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-22T20:21:26Z" | "2001-10-11T03:13:20Z" |
76,837 | Bug 76837 [KeyBindings] Ctrl-Shift-L popup should take focus-->easier to get pref page | After pressing Ctrl-Shift-L I actually have to place the cursor in the popup for the second Ctrl-Shift-L to open the preference page. This should not be necessary and is inconsistent with the other popups (such Inspect or a text hover popup) | verified fixed | 6ba1705 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeyAssistDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-22T19:20:49Z" | "2004-10-22T18:33:20Z" |
76,671 | Bug 76671 [BIDI] need a commmand line option for orientation | After consulation with Nick we have decided that we will add a command line option -orientation with one of two parameters = rtl or ltr. These values will override the implied values in IDEWorkbenchAdapter | verified fixed | 4f0e76f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-21T17:39:06Z" | "2004-10-20T16:33:20Z" |
76,517 | Bug 76517 NPE in LaunchViewContextListener | Unsure of the steps to reproduce but this was in my log: java.lang.NullPointerException at org.eclipse.debug.internal.ui.views.launch.LaunchViewContextListener.isAutoMana geViews(LaunchViewContextListener.java:883) at org.eclipse.debug.internal.ui.views.launch.LaunchViewContextListener.contextEna bled(LaunchViewContextListener.java:427) at org.eclipse.debug.internal.ui.views.launch.LaunchViewContextListener.contextMan agerChanged(LaunchViewContextListener.java:403) at org.eclipse.ui.internal.contexts.AbstractContextManager.fireContextManagerChang ed(AbstractContextManager.java:47) at org.eclipse.ui.internal.contexts.ProxyContextManager$1.contextManagerChanged (ProxyContextManager.java:43) at org.eclipse.ui.internal.contexts.AbstractContextManager.fireContextManagerChang ed(AbstractContextManager.java:47) at org.eclipse.ui.internal.contexts.MutableContextManager.setEnabledContextIds (MutableContextManager.java:268) at org.eclipse.ui.internal.contexts.ws.WorkbenchContextSupport.processEnabledSubmi ssions(WorkbenchContextSupport.java:667) at org.eclipse.ui.internal.contexts.ws.WorkbenchContextSupport.processEnabledSubmi ssions(WorkbenchContextSupport.java:520) at org.eclipse.ui.internal.contexts.ws.WorkbenchContextSupport.removeEnabledSubmis sions(WorkbenchContextSupport.java:767) at org.eclipse.ui.internal.contexts.ws.WorkbenchContextSupport.checkWindowType (WorkbenchContextSupport.java:296) at org.eclipse.ui.internal.contexts.ws.WorkbenchContextSupport.access$0 (WorkbenchContextSupport.java:279) at org.eclipse.ui.internal.contexts.ws.WorkbenchContextSupport$1.handleEvent (WorkbenchContextSupport.java:93) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:748) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:799) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:824) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1424) at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:1438) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2976) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1400) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3351) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1484) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:399) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3058) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1400) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3351) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1489) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2441) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1443) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1414) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:271) 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:704) at org.eclipse.core.launcher.Main.main(Main.java:688) | verified fixed | 6696bda | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IEditorPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IViewPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-20T16:30:26Z" | "2004-10-18T22:53:20Z" |
72,426 | Bug 72426 [BIDI] plan item - Proposed changes for BIDI support | (Nick I have cc'ed you as some of these changes are going into the WorkbenchAdvisor). Suggestions from Alex Benish and Simeon Semion Chichelnitsky (IBM Israel) Orientation of components, which are based on JFace Window (windows, including ApplicationWindow and even WorkbenchWindow, dialogs, wizards) can be set before creating their internal Shells by existing API - using method setShellStyle(). Orientation of WorkbenchWindow can be determined by one of the following options: by adding additional "orientation" property in the global property file (like eclipse.ini or config.ini). Its value can be set as application (system) property and will be handled in the corresponding place. by checking the language of the default locale (which is set in Eclipse in accordance with "-nl" parameter of Eclipse executable). The similar checking is done in IBM JDK 1.4.1 (see ComponentOrientation.getOrientation(Locale locale)). In addition, we can use existing parameter "-DIR", which is currently used to set orientation of Help system UI. Orientation of workbench can be set in the WorkbenchAdvisor.preWindowOpen() method (in this case subclasses of WorkbenchAdvisor can call this method from their superclass). Orientation of JFace viewers , which are used as wrappers for corresponding SWT components, can be set by some existing constructors. For example, org.eclipse.jface.viewer.TreeViewer, which is based on an SWT Tree control, has 3 constructors: TreeViewer(Composite parent), which creates Tree with some default SWT styles. When this constructor is used, orientation is inherited from parent. TreeViewer(Composite parent, int style), which creates Tree with explicitly assigned SWT styles (one of them can be orientation style) TreeViewer(Tree tree), which is built on the given Tree control. Orientation of Tree control can be set previously. I think, we need additional possibility to set orientation not only on the WorkbenchWindow level, but on the level of WorkbenchPart. Some additional APIs are needed to create view or editior with explicitly assigned orientation. org.eclipse.ui.application.WorkbenchAdvisor ... public void preWindowOpen(IWorkbenchWindowConfigurer configurer) { configurer.setShellStyle(configurer.getShellStyle() | getWorkbenchOrientation()); } ... protected int getWorkbenchOrientation() { Locale locale = Locale.getDefault(); String lang = locale.getLanguage(); if ("iw".equals(lang) || "ar".equals(lang) || "fa".equals(lang) || "ur".equals(lang)) return SWT.RIGHT_TO_LEFT; else return SWT.LEFT_TO_RIGHT; } ... org.eclipse.ui.IWorkbenchPart ... public int getPartOrientation(); public void setPartOrientation(int orientation); public Locale getPartLocale(); public void setPartLocale(Locale locale); //Gives to Part ability to use different ResourceBundles ... org.eclipse.ui.part.WorkbenchPart ... private int orientation = SWT.NONE; //Orientation will be inherited private Locale locale = null; //Locale of Part is the same, as default locale ... public int getPartOrientation() { return orientation; } public void setPartOrientation(int orientation) { this.orientation = orientation; } public Locale getPartLocale() { if (locale == null) return Locale.getDefault(); else return locale; } public void setPartLocale(locale locale) { this.locale = locale; if (orientation == SWT.NONE) { String lang = locale.getLanguage(); if ("iw".equals(lang) || "ar".equals(lang) || "fa".equals (lang) || "ur".equals(lang)) setPartOrientation(SWT.RIGHT_TO_LEFT); else setPartOrientation(SWT.LEFT_TO_RIGHT); } } ... org.eclipse.ui.part.EditorPart ... protected EditorPart() { super(); setPartOrientation (SWT.LEFT_TO_RIGHT); //Orientation of editors shouldn't be inherited. RTL orientation can be explicitly assigned in subclasses. } ... org.eclipse.ui.internal.PartPane ... protected void createChildControl() { ... int contentOrientation = part[0].getPartOrientation(); final Composite content = new Composite(control, contentOrientation); //If contentOrientation == SWT.NONE, orientation is inherited from parent // (actually - from Shell of WorkbenchWindow) ... } ... | verified fixed | 2357295 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/Dialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ProgressMonitorDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/window/Window.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DetachedWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindowConfigurer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutFeaturesDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutPluginsDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.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/ErrorNotificationDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/EditorPart.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/WorkbenchPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-20T16:24:50Z" | "2004-08-23T14:06:40Z" |
76,432 | Bug 76432 [GlobalActions] WorkbenchActionBuilder wrong null check | null | verified fixed | 1f68a24 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-20T16:21:32Z" | "2004-10-16T20:53:20Z" |
76,338 | Bug 76338 [Intro] Main Toolbar lost | I200410130800 Almost always when I start Eclipse it comes up with a full screen welcome page. After closing the welcome screen I have a main window without any toolbar. This is really annoying. The only way out is to open a new window but this one decides to place the fast view bar at the bottom again. Furthermore all the UI state of the views are lost. | verified fixed | 4254e32 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/intro/IntroTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | "2004-10-20T13:50:21Z" | "2004-10-15T08:46:40Z" |
74,230 | Bug 74230 [Workbench] Introduce new UIStats.shouldDebug(int operation) | public static void shouldDebug(int operation) { return debug[operation]; } @@@@ Reasoning: Creation of debug strings in the WorkbenchWindow#fire* methods waste CPU cycles and create lots of unnecessary String objects. It should only be done if the corresponding debug mode is on. @@@@ Exampe usage: /** * Fires perspective changed */ void firePerspectiveChanged(IWorkbenchPage page, IPerspectiveDescriptor perspective, String changeId) { String label = null; if (UIStats.shouldDebug(UIStats.NOTIFY_PERSPECTIVE_LISTENERS)) label = "changed perspective = " + perspective.getId() + ", page = " + page.getLabel() //$NON-NLS-1$ //$NON-NLS-2$ + ", changeId = " + changeId; //$NON-NLS-1$ try { UIStats.start(UIStats.NOTIFY_PERSPECTIVE_LISTENERS, label); perspectiveListeners .firePerspectiveChanged(page, perspective, changeId); perspectiveService.firePerspectiveChanged(page, perspective, changeId); } finally { UIStats.end(UIStats.NOTIFY_PERSPECTIVE_LISTENERS, label); } } | verified fixed | 6229073 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java", "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-19T20:03:15Z" | "2004-09-18T15:06:40Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.