issue_id
int64 2.03k
426k
| title
stringlengths 9
251
| body
stringlengths 1
32.8k
⌀ | status
stringclasses 6
values | after_fix_sha
stringlengths 7
7
| updated_files
stringlengths 29
34.1k
| project_name
stringclasses 6
values | repo_url
stringclasses 6
values | repo_name
stringclasses 6
values | language
stringclasses 1
value | issue_url
null | before_fix_sha
null | pull_url
null | commit_datetime
timestamp[us, tz=UTC] | report_datetime
timestamp[us, tz=UTC] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
157,805 | Bug 157805 [Workbench] Add Hide Toolbars to the Window menu | null | verified fixed | 852e30f | ["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 | 2006-09-25T16:52:55Z | 2006-09-19T12:46:40Z |
157,981 | Bug 157981 Open resource dialog: Missing colons in labels | M2 - Navigate > Open Resource - Both labels need a colon(':') at the end and mnemonics | verified fixed | b8407c2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearchDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T15:51:23Z | 2006-09-20T13:46:40Z |
158,204 | Bug 158204 [Decorators] DecorationScheduler hangs on to listeners for too long | 3.2 I have a case where an editor I'm implementing is not freed up properly when closed. In YourKit, it shows that it's being held onto via a label provider changed listener hooked on the decorator manager. In DecorationScheduler, it grabs the array of listeners from the manager, then iterates over them in the update job. At the end, though, it's left hanging on to the original array of listeners. The array should get nulled out at the end to drop these references. Suggested patch is to replace: labelProviderChangedEvent = null; removedListeners.clear(); with: labelProviderChangedEvent = null; removedListeners.clear(); listeners = null; in getUpdateJob() Also noticed a possible optimization: DecoratorManager.getListeners() does not need to take a copy of the array from listeners.getListeners(), since this is spec'ed to not be affected by subsequent add/removes. | verified fixed | b543fc1 | ["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 | 2006-09-25T15:27:36Z | 2006-09-21T20:20:00Z |
158,020 | Bug 158020 Lazy initialize ViewerComparator.comparator | 20060920 In the ViewerSorter I remember that a performance problem was that that the default constructor called Collator.getInstance() which can be expensive for the first caller. So in JDT we overrode getCollator() to do a lazy initialization. Couldn't this be added to the ViewerComparator by default? In ViewerSorter it wasn't possible as collator was protected. In ViewerComparator this isn't a problem. -> public ViewerComparator(){ this(null); } protected Comparator getComparator() { if (comparator == null) comparator= Policy.getComparator(); return comparator; } | verified fixed | 653622c | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerComparator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T15:12:51Z | 2006-09-20T16:33:20Z |
157,793 | Bug 157793 [PropertiesDialog] 'Resource' and 'Project References' property page fail if modifying closed project | I20060919-0010. The 'Resource' and the 'Project References' property page fail if modifying closed project 1. create a simple project and close it 2. context menu > Properties 3. change some preferences (e.g. the encoding) 4. click OK ==> !ENTRY org.eclipse.core.resources 4 4 2006-09-19 14:27:10.024 !MESSAGE Exception occurred while saving project preferences: /Simple Closed/.settings/org.eclipse.core.runtime.prefs. !STACK 1 org.eclipse.core.internal.resources.ResourceException: Resource '/Simple Closed' is not open. at org.eclipse.core.internal.resources.Project.checkAccessible(Project.java:145) at org.eclipse.core.internal.resources.Folder.assertCreateRequirements(Folder.java:32) at org.eclipse.core.internal.resources.Folder.create(Folder.java:88) at org.eclipse.core.internal.resources.ProjectPreferences$2.run(ProjectPreferences.java:551) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1737) at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:566) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:352) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:364) at org.eclipse.ui.internal.ide.LineDelimiterEditor.store(LineDelimiterEditor.java:270) at org.eclipse.ui.internal.ide.dialogs.ResourceInfoPage.performOk(ResourceInfoPage.java:569) at org.eclipse.jface.preference.PreferenceDialog$11.run(PreferenceDialog.java:889) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:850) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:869) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:377) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:230) at org.eclipse.jface.dialogs.Dialog$3.widgetSelected(Dialog.java:638) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3390) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3009) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:156) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3390) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3009) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962) !SUBENTRY 1 org.eclipse.core.resources 4 372 2006-09-19 14:27:10.024 !MESSAGE Resource '/Simple Closed' is not open. !ENTRY org.eclipse.ui.ide 4 4 2006-09-19 14:27:10.034 !MESSAGE Exception occurred while saving project preferences: /Simple Closed/.settings/org.eclipse.core.runtime.prefs. !ENTRY org.eclipse.ui.ide 4 4 2006-09-19 14:27:10.034 !MESSAGE Exception occurred while saving project preferences: /Simple Closed/.settings/org.eclipse.core.runtime.prefs. !STACK 0 org.osgi.service.prefs.BackingStoreException: Exception occurred while saving project preferences: /Simple Closed/.settings/org.eclipse.core.runtime.prefs. at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:574) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:352) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:364) at org.eclipse.ui.internal.ide.LineDelimiterEditor.store(LineDelimiterEditor.java:270) at org.eclipse.ui.internal.ide.dialogs.ResourceInfoPage.performOk(ResourceInfoPage.java:569) at org.eclipse.jface.preference.PreferenceDialog$11.run(PreferenceDialog.java:889) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:850) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:869) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:377) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:230) at org.eclipse.jface.dialogs.Dialog$3.widgetSelected(Dialog.java:638) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3390) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3009) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:156) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3390) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3009) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962) | verified fixed | ec673df | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/ResourceEncodingFieldEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/LineDelimiterEditor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ProjectReferencePage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T14:49:33Z | 2006-09-19T12:46:40Z |
156,775 | Bug 156775 Allow fonts to benefit from ResourceManager | Eclipse 3.x added a lot of features for manipulating ImageDescriptors and managing them through ResourceManager. Currently, it is cumbersome to do the same thing with Fonts, so most people are still using global Font registry. This enhancement requests that we add features to make Fonts as easy to manage as Images are. - FontDescriptors are provided globally - FontDescriptors are easy to manipulate - Concrete fonts are obtained from the FontDescriptors via a ResourceManager as needed - Fonts benefit from reference-counted shared allocations just like Images do. The attached patch adds the following enhancements for Font management. New Features: 1. (feature) Add helper methods to FontDescriptor to allow font size and style to be set without packing and unpacking the FontData. 2. (performance) Add a getFontData() method to FontDescriptor, to make it possible to manipulate font descriptors without creating a concrete Fonts. 3. (cleanup) Remove NamedFontDescriptor, and replace it with (the more general) ArrayFontDescriptor. 4. (performance) Refactor FontRegistry to use the ResourceManager tree in order to benefit from shared allocations (like Images currently do). 5. (feature) Wherever there is a prominent method that returns a global Font, provide a version that returns a FontDescriptor. Refactor where necessary such that a concrete Font won't be allocated as long as clients are only calling the descriptor version. | verified fixed | a68d400 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ArrayFontDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/JFaceResources.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/NamedFontDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T14:18:53Z | 2006-09-08T21:13:20Z |
150,593 | Bug 150593 Enhancements for ResourceManager | The attached patch addresses the following in ResourceManager - Fixes several JavaDoc bugs - Adds a "getImage" method that implements the common pattern of "return existing image if known, or allocate a new image otherwise" | verified fixed | acad313 | ["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/ResourceManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T14:01:04Z | 2006-07-14T01:20:00Z |
80,116 | Bug 80116 [DynamicUI] AbstractWorkingSetManager tries to get namespace for bundles with no symbolic name | null | verified fixed | 519f85c | ["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 | 2006-09-25T13:48:44Z | 2004-12-03T16:06:40Z |
157,174 | Bug 157174 [Viewers] Refactor new Viewer API | We are yet not completely happy with the API and refactor it. | verified fixed | 7ed3ea0 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/BaseLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CellLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/DecoratingLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/LabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/OwnerDrawLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableColumnViewerLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ToolTipSupport.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerColumn.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/WrappedViewerLabelProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerViewLabelProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TableView.java", "examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/CustomTooltipsSnippet.java", "examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/MultiLineExample.java", "examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/OwnerDrawExample.java", "examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/OwnerDrawLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T13:36:15Z | 2006-09-13T15:06:40Z |
157,985 | Bug 157985 [Workbench] Add 'Hide toolbar' action to context menu | M2 The 'Hide toolbar' action should be added to the context menu on toolbars. That's where I first looked for it. | verified fixed | 18a6b7f | ["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 | 2006-09-25T13:28:42Z | 2006-09-20T13:46:40Z |
104,714 | Bug 104714 [ActivityMgmt] Preferences/Capabilities not sorted alphabetically. | Preferences/Capabilities not sorted alphabetically. My plugin lauched from PDE defines a "Seagull CICS" activity. It appears 1st in the Capabilities list box, before "Development" and "Team". | verified fixed | 5dd8eb9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/ActivityCategoryPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-25T13:08:53Z | 2005-07-21T18:20:00Z |
158,130 | Bug 158130 LegacyActionPersistence causing test failures on Linux with 1.5 VM | null | resolved fixed | 1ba3dd4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/LegacyActionPersistence.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-21T12:22:58Z | 2006-09-21T12:00:00Z |
157,883 | Bug 157883 Very long parameters in selection drop-down for new wizards | I20060919-0010 I was trying to find the New Plug-in Project command in the command composer. I found File -> New but when I go to select the New Wizard parameter, I get complete descriptions of the wizards, each on a single line, as opposed to just the names. Is there any way we can just show the name of the new wizard? See screenshot to follow. | resolved fixed | 0206b47 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/WizardParameterValues.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-21T01:44:55Z | 2006-09-19T18:20:00Z |
157,799 | Bug 157799 [WorkingSets] Add to working can cause stack overflow | I20060918 1) set the Package Explorer to show working sets as top level element 2) select a working set 3) from the add to working set drop down attempt to add it to itself. 4) Boom headshot! This is a perfect example of why we need a working set validator class that can be used to test objects before they are added to working sets. In the interim we can simply add a hack to the working set action code to check to see if an element is a working set (or adapts to one) and if so exclude it from the operation. at java.util.ArrayList.get(ArrayList.java:321) at java.util.AbstractList$Itr.next(AbstractList.java:422) at java.util.AbstractList.hashCode(AbstractList.java:629) at org.eclipse.ui.internal.WorkingSet.hashCode(WorkingSet.java:136) at java.util.AbstractList.hashCode(AbstractList.java:630) at org.eclipse.ui.internal.WorkingSet.hashCode(WorkingSet.java:136) at java.util.AbstractList.hashCode(AbstractList.java:630) at org.eclipse.ui.internal.WorkingSet.hashCode(WorkingSet.java:136) at java.util.AbstractList.hashCode(AbstractList.java:630) at org.eclipse.ui.internal.WorkingSet.hashCode(WorkingSet.java:136) at java.util.AbstractList.hashCode(AbstractList.java:630) at org.eclipse.ui.internal.WorkingSet.hashCode(WorkingSet.java:136) at java.util.AbstractList.hashCode(AbstractList.java:630) at org.eclipse.ui.internal.WorkingSet.hashCode(WorkingSet.java:136) | verified fixed | f7855d2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/ModifyWorkingSetDelegate.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-20T20:30:19Z | 2006-09-19T12:46:40Z |
157,633 | Bug 157633 WorkbenchOperationStressTests takes a long time | WorkbenchOperationStressTests takes 82 seconds to run which is making it quite long to run the UI test suites | verified fixed | 87c2ab5 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/operations/WorkbenchOperationStressTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-18T17:52:40Z | 2006-09-18T14:33:20Z |
157,566 | Bug 157566 [Viewers] Application doesn't shutdown because background thread is running | This really a critical bug which should be fixed before M2 is out. In ToolTipSupport a Timer thread is started and never cancled if tooltips are not used! | verified fixed | 1ce9663 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ToolTipSupport.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-18T13:00:27Z | 2006-09-16T12:33:20Z |
157,309 | Bug 157309 [Viewers] ListViewer should provide insert-method | TableViewer and TreeViewers provide methods to insert a model element and so should ListViewer | verified fixed | 6b8b013 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ListViewerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-14T21:00:14Z | 2006-09-14T13:20:00Z |
124,338 | Bug 124338 [Dialogs] ResourceSelectionDialog should allow to implement custom acceptance criteria | I suggest to refactor ResourceSelectionDialog so there will be methods to access checked items and enable OK button respectively. This should allow to implement custom strategy to accept selected elements. | verified fixed | 10a9487 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceSearchDialog.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceSearcher.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearchDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearchItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-14T14:37:59Z | 2006-01-18T18:46:40Z |
156,864 | Bug 156864 [Undo] Edit > Add Bookmark... does not work | I20060906-1200 1. start fresh workspace 2. create simple project P 3. create simple file f 4. close the editor (the editor actions works) 5. Edit > Add Bookmark... ==> bookmark is not added | verified fixed | 967264d | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/bookmarkexplorer/BookmarkPropertiesDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogMarkerProperties.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogProblemProperties.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-13T00:52:26Z | 2006-09-11T13:06:40Z |
156,865 | Bug 156865 Undo / Redo marker actions not updated | I20060906-1200 If a file gets delete after adding/changing/removing a marker then the Undo and Redo actions are not updated and still show, e.g. Undo Add Task Redo Add Task Executing the undo or redo does nothing (no feedback, no .log entry) and the undo and redo menu text remains the same and enabled. | verified fixed | 713405f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractMarkersOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractWorkspaceOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/CreateMarkersOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/DeleteMarkersOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/UpdateMarkersOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/UndoMessages.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/operations/WorkspaceOperationsTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-13T00:02:52Z | 2006-09-11T13:06:40Z |
36,918 | Bug 36918 [Working Sets] Add to / Remove from Working Set... Context Menu in Navigator and Package Explorer | Editing working sets in large projects is painful, it would be really handy if there was a context menu in the navigator and package explorer that was something like: Working Set Add to Working Set... (add the current resource to the selected working set) Remove from Working Set (only enabled when you're in a working set) | verified fixed | 9f33443 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/AbstractWorkingSetPulldownDelegate.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/ModifyWorkingSetDelegate.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/SelectWorkingSetsAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-12T20:09:45Z | 2003-04-25T17:00:00Z |
157,072 | Bug 157072 [ActionSets][Contributions] QuickMenuAction funtionality should be made public | The QuickMenuAction class should be made public and usable by IWorkbenchWindowPulldownDelegate{2}. As it is you need to roll this functionality yourself in the run method of your delegate (and it is by no means straightforward). | resolved fixed | 3a3373f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/QuickMenuAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/QuickMenuCreator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-12T20:02:08Z | 2006-09-12T16:53:20Z |
156,747 | Bug 156747 Adopt Resource.getDevice() in the JFace resource managers | SWT has recently added a Resource.getDevice() method. This allows several improvements to be made to the JFace resource managers: 1. The (inefficient and complex) heuristics that detect a device by creating temporary resources can be removed. 2. The one-argument descriptor factories that don't take a Device can be made just as efficient as the two-argument versions. 3. The descriptor factory methods that take a Device can be deprecated, since the second argument is no longer required and the one-argument version is just as efficient. | verified fixed | 73a4416 | ["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/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/RGBColorDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-12T19:54:25Z | 2006-09-08T18:26:40Z |
157,080 | Bug 157080 releng warnings in the carbon plug-in | null | verified fixed | 5c98aa0 | ["bundles/org.eclipse.ui.carbon/src/org/eclipse/ui/carbon/CarbonUIEnhancer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-12T19:29:04Z | 2006-09-12T19:40:00Z |
156,544 | Bug 156544 [Viewers] Vitrual lazy tree viewer - refreshing a node does not make it expandable | I20060830-1650 Using a tree viewer with the SWT.Vitrual style and an ILazyTreeContentProvider. If a node in a tree has no children in an underlying model, and then has children added to that node, calling refresh no the corresponding element does not add a "+" to the tree node. The code that does not consult the content provider for an element's child count if a tree item already has data mapped to it. Attatched is a sample plug-in showing the problem. The model changes from: root one two three to: root one a b c two three ... but the content provider is not consulted when calling refresh on "one". To see the problem, open the sample view, and invoke "Update Model" action from the context menu. | verified fixed | 879c9fa | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-12T11:02:14Z | 2006-09-07T14:40:00Z |
156,537 | Bug 156537 [Viewers] Virtual tree viewer does not populate with initial children | I20060830-1650 When a tree viewer is created with the SWT.Vitrual flag and uses an ILazyTreeContentProvider, the viewew does not populate with the initial children in the model. The method TreeViewer.createChildren(Widget) only updates existing items if the parent (root)element has been mapped to data, and does not query the content provider for the number of children it has. Attached is a sample plug-in showing the problem. The tree "model" looks like this: root one two three When the input is set to the viewer ("root") a call is made to "createChildren", but the content provider is never used. | resolved fixed | b1c152e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-12T03:44:02Z | 2006-09-07T14:40:00Z |
151,205 | Bug 151205 [Viewers] Add setFilters() to change multiple filters at once efficiently | When one needs to add more than one filter after every request a refresh command is issued which is not desired an API-Function where the user could control whether the refresh is called or not would be a great performance improvement. | resolved fixed | 9ad709c | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/StructuredViewerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/VirtualLazyTreeViewerTest.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 | 2006-09-12T02:35:00Z | 2006-07-20T10:06:40Z |
115,789 | Bug 115789 Memory Leak | I'm using org.eclipse.ui.tools.heapstatus plugin to monitor memory usage. when comparing two large (~30M) jar files (structure compare) some amount of memory is not released. after first GC it shows 23M used. after compare and GC it shows 160M used after second compare and GC it shows 296M used after third compare and GC it shows 432M used total amount 512M i'm using 1.5 to run eclipse eclipse Build id: I20050627-1435 also reproducable on 3.1.1 | verified fixed | b75cce4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/NavigationHistory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-11T19:17:18Z | 2005-11-10T10:53:20Z |
142,960 | Bug 142960 Performance tweak for ignored file processing | Version: 3.2.0 Build id: I20060519-1206 The attached patch gives a very small (3-4%) performance improvement to the creation of the list of ignored pattern matchers. This is only ever done once, but it is usually during startup where every little bit helps. Two changes were made: - Iterate on the entries of the set instead of the key to avoid a redundant lookup by key - Changed usage of Vector to ArrayList to avoid extra syncronization | resolved fixed | 3586950 | ["tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ViewerComparatorTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-11T17:17:26Z | 2006-05-22T09:26:40Z |
156,686 | Bug 156686 [Contributions] Evaluation context for object contributions does not allow for eager plug-in loading | The evaluation context created in ObjectContribution does not setAllowPluginActivation to true. This means that any test condition that does ask for plugins to be loaded will not be honoured. | verified fixed | 38adc90 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectActionContributor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-08T12:58:50Z | 2006-09-08T12:53:20Z |
155,873 | Bug 155873 [PropertiesView] PropertySheetPage Help Integration Does Not Work In a Wizard | I've created a wizard page that uses a PropertySheetPage. If the PSP has focus and I press F1 to open help, a NPE occurs. The NPE occurs in the PropertySheetPage class on line 233 which is this: getSite().getWorkbenchWindow().getWorkbench().getHelpSystem().displayHelp(HELP_CONTEXT_PROPERTY_SHEET_PAGE); getSite() returns null because the PSP is not in a view. From what I can tell, getSite() is only being called to get the help system, which can be done in another way. If the help system was acquired in a different way that didn't involve getting the site I think this would work. Here's an example I tried which works: PlatformUI.getWorkbench().getHelpSystem().displayHelp(HELP_CONTEXT_PROPERTY_SHEET_PAGE); So, I think only a minor change in the eclipse UI is required to resolve the issue I have. I will attach a patch that contains this fix. | resolved fixed | 83cafb8 | ["bundles/org.eclipse.ui.views/src/org/eclipse/ui/views/properties/PropertySheetPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-07T19:17:20Z | 2006-08-31T18:46:40Z |
154,234 | Bug 154234 [Dialogs] ErrorDialog.createDialogArea javadoc references missing createCustomArea method | The javadoc for ErrorDialog.createDialogArea indicates that subclasses should override the createCustomArea method. This method does not exist in 3.2. | verified fixed | c587b4b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-06T21:47:13Z | 2006-08-17T15:53:20Z |
155,740 | Bug 155740 [Undo] - AdvancedValidationUserApprover accesses UI without using async/sync | The documentation for IOperationApprover says that implementors must be prepared to receive notifications from a background thread. AdvancedValidationUserApprover does not use the SWT sync or async when accessing UI. It has gotten away with this thus far because most validation is triggered by the undo/redo action handlers in the UI thread. However, when an operation is initially executed, it can come from a background thread. This surfaces in the implementation of some of the resource modifying undoable operations which operate in a background thread and require approval. | verified fixed | 3aa78e2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/LinearUndoViolationUserApprover.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/NonLocalUndoUserApprover.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-06T20:16:47Z | 2006-08-30T20:33:20Z |
142,299 | Bug 142299 [JFace] Class Dialog cannot be loaded in non-UI thread | The static initializer of org.eclipse.jface.dialogs.Dialog cannot be executed in a non-UI thread. The problematic call-chain is: JFaceResources.getImageRegistry() -> Display.getCurrent(). In a non-UI thread this returns null, causing an NPE in the static initializer. As the result, this class fails to load. I stumbled over this because I wanted to perform aspect weaving (using the new hooks in the OSGI) on a subclass of Dialog. For that purpose I had to force loading these classes from infrastructure code, perhaps even before the UI was up and running. Another (hypothetical) scenario where this will cause problems would be a configurable factory, which could be programmed like this: Class myDialogClass; void init() { myDialogClass = Class.forName(readDialogClassName()); } Dialog createDialog() { return (Dialog)myDialogClass.newInstance(); } Also in this case method init() would crash if invoked within a non-UI thread. IMHO, a static initializer should never make any assumptions about the context it is being executed in. The code in question seems to exist for backward compatibility only. (Typo in javadoc: @see Display#getSystemIcon(int ID), should read: getSystemImage, the same typo in ImageRegistry.get()). In fact ImageRegistry.get(String) re-maps the deprecated keys from Dialog to the new ones in SWT, so I believe the code in the static initializer has not even any effect, the entries entered into the image registry will never be retrieved by that name. Correct me if I'm wrong. | verified fixed | 2e1c630 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/Dialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/JFaceResources.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/Wizard.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-06T19:43:39Z | 2006-05-17T18:20:00Z |
155,856 | Bug 155856 [IDE] bad value in the IIDEActionConstants | code sample : ----------------------------------------------------------------------- /** * Edit menu: name of group for extra Find-like actions (value <code>"find.ext"</code>). */ public static final String FIND_EXT = "cut.ext"; //$NON-NLS-1$ ----------------------------------------------------------------------- Seems there should be "find.ext" instead of "cut.ext". This may be the cause of the messages that can appear in the error log on a rcp product : "Reference item find.ext not found for action null" | verified fixed | 59d5183 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IIDEActionConstants.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-06T19:09:42Z | 2006-08-31T16:00:00Z |
154,714 | Bug 154714 [EditorMgmt] "Next Editor" functionality should allow the window list to move locations | When using the key command to access the "Next Editor" functionality and with Eclipse split across multiple monitors, the list of editors is split directly down the middle of the screen. The editor selection list should either center itself in the middle of the active editor (instead of the application itself) or should allow the user to move the list and the list remember it's location. See attached screenshot for an example of the problem - the red-line indicates the screen split. | verified fixed | 46e21d7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CyclePartAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-05T16:48:42Z | 2006-08-22T15:20:00Z |
154,601 | Bug 154601 [EditorMgmt] Wildcard at end of file association string should be invalid | You are able to use a wildcard (*) at the end of a string representing a filetype. For example the following is valid *.java@@.* This is the case even though associating a specific editor with something like the above example does not work. If you were to associate the above filetype with the Java editor you still end up getting the default editor when you tried to open the file for editing. You should either - Permit the association of a filetype ending with a wildcard to a specific editor or - Do not the use of a wildcard at the end of a filetype | verified fixed | bc6d175 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FileExtensionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-05T13:39:05Z | 2006-08-21T19:53:20Z |
154,467 | Bug 154467 [WorkingSets] (Patch attached) Smart selection of single WorkingSets | If you open the "Select Working Set" dialog, you can check an item in the list and press ok to activate this Working set. If you do a double click in the list, nothing happens (not nothing, but nothing visible for the user). The dialog is closed and nobody knows whats going on. Here is a patch to extend the dialog by selecting the working set you double.clicked on. | resolved fixed | 21e8348 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-09-05T12:56:54Z | 2006-08-20T13:20:00Z |
155,422 | Bug 155422 [PropertiesDialog] property page not showing up | 20060828 I changed the jdt.ui property pages to use enablement instead of object contributions. However, the following enablement doesn't seem to work: <enabledWhen> <or> <adapt type="org.eclipse.core.resources.IProject"> <test property="org.eclipse.core.resources.projectNature" value="org.eclipse.jdt.core.javanature"/> </adapt> <and> <instanceof value="org.eclipse.jdt.core.IPackageFragmentRoot"/> <not> <test property="org.eclipse.jdt.core.inSourceFolder"/> </not> </and> </or> </enabledWhen> The page is supposed to be added to all projects with Java nature and all IPackageFragmentRoots that are not source folders. The page never shows up under a IProject. Debugging into it it seems that PropertyPagesRegistryReader.getObjectClassesFromEnablement(IConfigurationElement) tries to find out for waht object this is contributed. Not easy here with the or-ed condition. | verified fixed | 90abbfa | ["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 | 2006-08-30T17:17:32Z | 2006-08-28T15:46:40Z |
155,575 | Bug 155575 [Viewers] IllegalArgumentException while viewing preference page | I've started getting IllegalArgumentExceptions when viewing certain preference pages. ex: the experimental keybinding page or Java>Editors>Content Assist>Advanced java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:3358) at org.eclipse.swt.SWT.error(SWT.java:3297) at org.eclipse.swt.SWT.error(SWT.java:3268) at org.eclipse.swt.widgets.Widget.error(Widget.java:434) at org.eclipse.swt.widgets.TableItem.setText(TableItem.java:1148) at org.eclipse.jface.viewers.TableViewerRow.setText(TableViewerRow.java:138) at org.eclipse.jface.viewers.ViewerCell.setText(ViewerCell.java:114) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:98) at org.eclipse.jface.viewers.TableViewer.doUpdateItem(TableViewer.java:368) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:465) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:1955) at org.eclipse.jface.viewers.TableViewer.internalRefreshAll(TableViewer.java:790) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:727) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:714) at org.eclipse.jface.viewers.StructuredViewer$7.run(StructuredViewer.java:1388) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1323) at org.eclipse.jface.viewers.CheckboxTableViewer.preservingSelection(CheckboxTableViewer.java:295) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1386) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1345) at org.eclipse.jdt.internal.ui.preferences.CodeAssistAdvancedConfigurationBlock.updateControls(CodeAssistAdvancedConfigurationBlock.java:627) at org.eclipse.jdt.internal.ui.preferences.CodeAssistAdvancedConfigurationBlock.createContents(CodeAssistAdvancedConfigurationBlock.java:377) at org.eclipse.jdt.internal.ui.preferences.CodeAssistAdvancedPreferencePage.createPreferenceContent(CodeAssistAdvancedPreferencePage.java:36) at org.eclipse.jdt.internal.ui.preferences.PropertyAndPreferencePage.createContents(PropertyAndPreferencePage.java:149) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:233) at org.eclipse.jdt.internal.ui.preferences.CodeAssistAdvancedPreferencePage.createControl(CodeAssistAdvancedPreferencePage.java:31) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1403) at org.eclipse.jface.preference.PreferenceDialog$12.run(PreferenceDialog.java:1162) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1156) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:439) at org.eclipse.jface.preference.PreferenceDialog$8.selectionChanged(PreferenceDialog.java:661) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:839) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:837) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1143) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1163) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:236) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:230) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:404) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3170) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2872) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1085) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3193) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2869) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:401) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) eclipse.buildId=I20060807-2000 java.version=1.4.2_08 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 -data /opt/pwebster/workspaces/general320 | verified fixed | e0fd32c | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewerRow.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerRow.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/SimpleTableViewerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/SimpleTreeViewerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-29T19:58:48Z | 2006-08-29T19:33:20Z |
142,836 | Bug 142836 No F1 help for problems view | 3.2 RC5 There is no help context for the problems view. In addition, the help for the Tasks view says: <context id="task_list_view_context"> <description>This view shows build problems and tasks (reminders) that are either user-created or are automatically generated during building.</description> This is no longer correct (the tasks view does not show build problems). | resolved fixed | 3cb1ae3 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/ProblemView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-28T16:12:56Z | 2006-05-19T20:20:00Z |
154,104 | Bug 154104 [Workbench] Search based navigation | Because traditional navigation-by-browsing does not scale to large data sets, we should generalize and extend the existing search-based rapid navigation mechanisms (e.g. "Quick Find Class"). [UI, UA] | verified fixed | 33d7ea7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/IncubatorMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-23T22:29:30Z | 2006-08-16T17:40:00Z |
66,375 | Bug 66375 [Dialogs] TaskPropertiesDialog and DialogMarkerProperties need a common superclass | RC1 Despite these two classes being pretty much identical they share almost no code. TaskPropertiesDialog should be a subclass a DialogMarkerProperties. As this is an API change post 3.0 | verified fixed | 5dfab9a | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/bookmarkexplorer/BookmarkPropertiesDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogMarkerProperties.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogTaskProperties.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/tasklist/TaskPropertiesDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-22T22:59:53Z | 2004-06-09T19:40:00Z |
154,410 | Bug 154410 [Cell Editors] - Cell Editor action handler doesn't handle dynamic undo text | The CellEditorActionHandler allows clients to install an undo and redo handler that should be used when the cell editor is not open. However, there is no support for the fact that most undo and redo handlers update their action text according to the operation to be undone/redone. Further, the enablement conditions on undo and redo action handlers change dynamically. CellEditorActionHandlers need to monitor property change events of their underlying undo/redo actions and update the enablement and text accordingly. This is required so that the task views, bookmark views, etc. show the correct text in the undo/redo actions when there is a marker operation to be undone. | verified fixed | 3ad3405 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/CellEditorActionHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-22T22:35:41Z | 2006-08-18T22:26:40Z |
154,445 | Bug 154445 [Wizards] Incomplete javadoc for WizardNewProjectCreationClass.getProjectHandle | This method return systematically the handle of the project relative to the workspace root. However, a user could expect to get the handle of the project taking the path specified in the page into account. This should be explained in the javadoc or the method should be changed... | verified fixed | a975ae9 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-22T16:26:59Z | 2006-08-19T20:40:00Z |
154,523 | Bug 154523 [Viewers] Needless API function in ViewerLabelProvider | public boolean useNativeTooltip(Object object, int columnIndex) not needed | verified fixed | 76b3452 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-21T16:20:39Z | 2006-08-21T11:33:20Z |
153,552 | Bug 153552 [LinkedResources] LinkedResourceDecorator shows wrong decoration for non-local targets | LinkedResourceDecorator.decorate uses resource.getLocation to check if the target of a link exists. This returns null when the target is on a non-local (EFS) filesystem, and as a consequence linked resources pointing to non-local files or folders are displayed with a warning overlay. It seems that using getLocationURI instead would fix the problem? | resolved fixed | 28c0759 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/LinkedResourceDecorator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-17T19:29:35Z | 2006-08-11T09:53:20Z |
144,294 | Bug 144294 Performance: CommonNavigator could easily cache its ISelection to improve its performance | Currently, the CommonNavigator does not override the getSelection() method, which is quite expensive when called repeatedly by clients since it gets the current selection from the underlying SWT widget each time it gets called. A simple trick is to cache the selection and update it only when it actually changes. This would result in improved performance for clients who call getSelection() often. This defect is related to 140032. Please refer to it for more info. I will be submitting a patch shortly. | verified fixed | 76fbec5 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-16T20:32:00Z | 2006-05-29T19:13:20Z |
154,064 | Bug 154064 Need a way to access the TreeItem or TableItem on a refresh | It is not currently possible to know when an item is refreshed. This is required for ownerDraw support in viewers. | verified fixed | 993eb3b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerCell.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerColumn.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerRow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-16T15:40:54Z | 2006-08-16T14:53:20Z |
153,943 | Bug 153943 [Viewers] Rename new API, e.g. RowPart -> ViewerRow | null | verified fixed | 710f22a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/Cell.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewerPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/RowPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableColumnViewerPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableEditorImpl.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableRowPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewerRow.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TooltipSupport.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeColumnViewerPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeEditorImpl.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeRowPart.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewerRow.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerCell.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerColumn.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerRow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T20:11:42Z | 2006-08-15T16:40:00Z |
145,431 | Bug 145431 [KeyBindings] TVT3.2:TCT857: DA: Incorrect sort of dropdown list | OS: RHEL 3.1 Must fix or not a must fix: YES Build date: 060406 Component name = Base Blocking: NO Language: da Bitmap Location: V:\defects\da\04.001150.pg Tester Name: Elsebeth Flarup Problem Description: On the menu bar from the main Workbench panel, click Windows > Preference Expand and Select General Select Keys Click on the Modify tab on the right-hand pane Click on the drop-down arrow for the Category menu Salect Uncategorized Click on the drop-down arrow for the Name menu The list is incorrectly sorted for Danish. The bottom part of the list has the Danish letter '?' sorted after the Danish letter '?'. This is incorrect. There is also one single entry in the list which starts with a lower case letter, and this is sorted incorrectly in between 'Z' and a Danish national character. It looks as if the sort is basic US ASCII (binary) sort, not locale-specific. Working as designed, not even sorted in English. Thanks. I don't agree. The list is sorted in English. You don't see upper case 'W' come before 'V' - which is exactly equivalent to the problem I have in Danish. This article was reassigned from Category:''TVT/Testing''. | verified fixed | 698b824 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T18:24:35Z | 2006-06-05T20:40:00Z |
153,803 | Bug 153803 [Wizards] A primary INewWizard does not show up if it's the only INewWizard and uncategorized | If an INewWizard is uncategorized and is the only wizard in the RCP application, and is also a primary wizard, then it does not show up in the wizard selection in the NewWizard wizard. The cause of this seems to be the assumption by the org.eclipse.ui.internal.dialogs.WizardContentProvider that if there's only one item in the children of the AdaptablesList, it must be a wizard category (WizardCollectionElement) and wants to return all it's children. But when all the wizards are primary, it seems the categories are not used, and the content provider is trying to return the children of the wizard (WorkbenchWizardElement), instead of returning the wizard itself. This sounds complicated, but I hope it made sense. The problematic place in 3.2 is // if there is only one category, return it's children directly (flatten list) if (list.size() == 1) { return getChildren(list.get(0)); } (lines 71-74) I'll attach a patch against the R3_2_maintenance branch | verified fixed | 45f2238 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WizardContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T18:19:58Z | 2006-08-14T18:26:40Z |
153,892 | Bug 153892 [WorkingSets] Select Working Sets is not "exlusive" | I discovered the great new feature "window working set" in eclipse 3.2 and started to use it. Previously I used the working sets manually in each perspective like "package explorer". The old behaviour was, that I selected a new working set and the previous one was automatically deselected. It was a "switch working set" operation. The window working set has a new behaviour. I select another working set and see thereofore two working sets at the same time in the package explorer. Now I have to use the window working set a second time and deselect the previous working set. I have to click twice for the same behaviour as before. Is there a hidden workaround to perform a "switch working set" operation with window working set by only selecting "window working set" once? | verified fixed | 2fb108a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/SelectWorkingSetsAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T17:51:26Z | 2006-08-15T13:53:20Z |
153,503 | Bug 153503 [Viewers] ComboViewer#setSelection does't select element w/o equals override | I use a ComboViewer to show elements of a class that does not override Object#equals and #hashCode. Therefore I specified an IElementComparer via ComboViewer#setComparer to do the job. My expectation was that the comparer would be used in setSelection to find the element to be selected. Apparently this is not the case. To me this looks like a bug, or is this behaviour desired? The attached test case reproduces this behaviour. | resolved fixed | e7c0ee4 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ComboViewerComparerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T17:25:22Z | 2006-08-10T22:46:40Z |
142,329 | Bug 142329 SlaveContextService does not accept NULL expression | SlaveContextService#activateContext(String contextId, Expression expression, boolean global) attempts to construct an AndExpression containing the default expression and NULL. This results in a NullPointerException. The fix is to avoid constructing the AndExpression and simply use the default. | verified fixed | bb43d75 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/contexts/SlaveContextService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T17:00:38Z | 2006-05-17T21:06:40Z |
153,832 | Bug 153832 [FilteredTree] need a createText(...) | We need some type of createText method similar to what we need for the createTreeViewer. The reasoning behind this is that a user may want to supply their own text control. In PDE's case, we would like to use FormToolkit to adapt the text control when created. | verified fixed | bd15a76 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T15:56:18Z | 2006-08-14T21:13:20Z |
153,766 | Bug 153766 [IDE] Open properties via editor causes IllegalAccessException | 3.3 M1 1. start fresh workspce 2. create a simple project 3. add a simple text file 4. from the text editor open the properties dialog (Alt+Enter) ==> error is writtent to .log: !ENTRY org.eclipse.equinox.registry 4 1 2006-08-14 16:05:38.723 !MESSAGE Plug-in "org.eclipse.ui.ide" was unable to instantiate class "org.eclipse.ui.internal.ide.model.FileInputAdapterFactory". !STACK 0 java.lang.IllegalAccessException: Class org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI can not access a member of class org.eclipse.ui.internal.ide.model.FileInputAdapterFactory with modifiers "" at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:65) at java.lang.Class.newInstance0(Class.java:344) at java.lang.Class.newInstance(Class.java:303) at org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI.createExecutableExtension(RegistryStrategyOSGI.java:170) at org.eclipse.core.internal.registry.ExtensionRegistry.createExecutableExtension(ExtensionRegistry.java:787) at org.eclipse.core.internal.registry.ConfigurationElement.createExecutableExtension(ConfigurationElement.java:243) at org.eclipse.core.internal.registry.ConfigurationElementHandle.createExecutableExtension(ConfigurationElementHandle.java:51) at org.eclipse.core.internal.runtime.AdapterFactoryProxy.loadFactory(AdapterFactoryProxy.java:114) at org.eclipse.core.internal.runtime.AdapterManager.classForName(AdapterManager.java:140) at org.eclipse.core.internal.runtime.AdapterManager.getAdapter(AdapterManager.java:283) at org.eclipse.core.internal.runtime.AdapterManager.getAdapter(AdapterManager.java:266) at org.eclipse.core.internal.expressions.AdaptExpression.evaluate(AdaptExpression.java:73) at org.eclipse.ui.internal.dialogs.RegistryPageContributor.failsEnablement(RegistryPageContributor.java:263) at org.eclipse.ui.internal.dialogs.RegistryPageContributor.isApplicableTo(RegistryPageContributor.java:207) at org.eclipse.ui.internal.dialogs.PropertyPageContributorManager.contribute(PropertyPageContributorManager.java:143) at org.eclipse.ui.internal.dialogs.PropertyDialog.createDialogOn(PropertyDialog.java:61) at org.eclipse.ui.dialogs.PropertyDialogAction.createDialog(PropertyDialogAction.java:175) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:154) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:229) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3377) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2997) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:401) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | resolved fixed | 593e3f0 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/FileInputAdapterFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-15T15:36:17Z | 2006-08-14T15:40:00Z |
152,170 | Bug 152170 [FilteredTree] Make it easier to use other viewers | Right now it's not easy to make use of a checkboxtreeviewer in a FilteredTree. It's possible to override createTreeControl(...), however, it adds a disposelistener which references a protected field (refreshJob). Maybe it would be best to put this dispose logic somewhere else so clients can use their own custom tree viewers (ie., createTreeViewer(...)? Does this make sense :)? | verified fixed | 7a5882a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T20:43:31Z | 2006-07-28T15:20:00Z |
68,178 | Bug 68178 [ActivityMgmt] Capabilities Preference Page Resizing | Resizing the Capabilities preference page should give most of the extra space to the tree view on the top, and little to the description area on the bottom; currently all extra space goes to the bottom area. | closed fixed | 8a8115b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/ActivitiesPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/ActivityCategoryPreferencePage.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 | 2006-08-14T17:56:07Z | 2004-06-22T16:00:00Z |
135,709 | Bug 135709 [WorkingSets] Select Working Sets Select All/Deselect All Enablement | If there are no working sets than both buttons should be disabled. | verified fixed | a0d2437 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceWorkingSetPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/SelectWorkingSetsAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AbstractWorkingSetDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T17:35:48Z | 2006-04-08T12:40:00Z |
153,536 | Bug 153536 [Wizards] Description in wizard does not wrap | Build: 3.3 M1 Something happened at the Platform/UI level between 3.2 and 3.3M1 since the same PDE code now shows weird behaviour on M1. 1. Open the New plug-in project wizard. 2. Once you get to the templates page of the wizard, choose the 'Hello World' template, press Next. Note how the description of the page does not wrap and the wizard becomes very wide. When I run the same PDE code against 3.2, the description wraps nicely onto two lines. | verified fixed | 748032f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T16:41:34Z | 2006-08-11T07:06:40Z |
153,103 | Bug 153103 [Wizards] NPE while validating project location | - File > New > Project... - Select General > Project, click Next - Uncheck "Use default location" - Enter "C:\test" for location It validates at each keystroke, and when you reach "C:" and "C:\" it logs the following exception: java.lang.NullPointerException at org.eclipse.core.internal.resources.WorkspaceRoot.getProject(WorkspaceRoot.java(Compiled Code)) at org.eclipse.ui.internal.ide.dialogs.ProjectContentsLocationArea.checkValidLocation(ProjectContentsLocationArea.java:388) at org.eclipse.ui.internal.ide.dialogs.ProjectContentsLocationArea$3.modifyText(ProjectContentsLocationArea.java:229) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java(Compiled Code)) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Inlined Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Inlined Compiled Code)) at org.eclipse.swt.widgets.Text.wmCommandChild(Text.java(Compiled Code)) at org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java(Inlined Compiled Code)) at org.eclipse.swt.widgets.Text.callWindowProc(Text.java(Compiled Code)) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Text.windowProc(Text.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java(Inlined Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.jface.window.Window.runEventLoop(Window.java(Compiled Code)) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.actions.NewWizardAction.run(NewWizardAction.java:181) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java(Inlined Compiled Code)) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java(Compiled Code)) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Inlined Compiled Code)) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java(Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:401) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 9ec5940 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ProjectContentsLocationArea.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T14:49:51Z | 2006-08-08T15:13:20Z |
153,201 | Bug 153201 Not externalizing string "false" in the Properties panel for a stored procedure | Reference: RATLC defect: 1123758 TVT10:02.002760: Unxternalized string "false" in the properties panel Steps to recreate the problem: -Enable Data developement using the Window > Preferences > General (expand) > Capabilities > click on Data. -Create a new data development project: File > New > Data Development Project. -Select any connection that is available. -Create a new Java SP: Expand project > Stored procedures folder > New > Stored Procedure. In wizard, select Java as the language. Click Finish. -Highlight this newly created Java stored procedure. Click on the Properties tab in the Output View. Problem description: String "false" is not translated in the Value column; it is not externalized Related string "true" is translated and externalized | verified fixed | 48814f3 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/properties/ResourcePropertySource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T14:47:38Z | 2006-08-08T23:33:20Z |
138,006 | Bug 138006 [Themes] Theme description read incorrectly | null | verified fixed | b325a82 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T14:43:20Z | 2006-04-21T17:20:00Z |
73,729 | Bug 73729 [Workbench] [Mac] Dual preferences menu items | On Mac OS X, the preferences menu item appears in the Eclipse menu. This is correct. However, the same menu item that does the same thing also appears in the Window menu, which is correct on other platforms but not the Mac. It should be removed from the Window menu. | verified fixed | 010830d | ["bundles/org.eclipse.ui.carbon/src/org/eclipse/ui/carbon/CarbonUIEnhancer.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T14:04:53Z | 2004-09-11T22:00:00Z |
152,966 | Bug 152966 [EditorMgmt] MockMapping is missing an equals method | The TypeFilteringDialog will not check the correct extension in checkInitialSelections() without it. e.g. in the File System import wizard The equals method should be the same as in FileEditorMapping | verified fixed | d25e312 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/EditorRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T13:57:04Z | 2006-08-07T14:13:20Z |
151,838 | Bug 151838 [Markers] ArrayIndexOutOfBoundsException while queuing viewer updates | I installed Eclipse 3.2 0n Suse Linux 10.1, with CDT 3.1. The operating system was installed just 2 hours ago; I unpacked Eclipse 3.2 SDK archive and unpacked and copied CDT 3.1 (we do development in C and C++) to Eclipse folder. Immediately, upon producing changes to code in a project I'm working on, the code compiles and right then this message box "Queueing viewer updates - error" appears. On and on. Is there anything I can do to prevent this? Will I have to revert back to Eclipse 3.1 and the previous CDT package? Thanks. | verified fixed | 0b88f7b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T13:42:39Z | 2006-07-26T13:20:00Z |
150,597 | Bug 150597 Patch that adds enhancements to GridDataFactory | null | verified fixed | 0cfa406 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/layout/GridDataFactory.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/layout/LayoutGenerator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-14T13:28:13Z | 2006-07-14T04:06:40Z |
153,071 | Bug 153071 Errors when showing properties for non-existing location of linked folder | I20060807-2000 1. create simple project 'P' 2. add a linked folder to a location that does not exist (I used 'xxx') 3. select the new folder in the Navigator 4. context menu > Properties ==> error dialog + .log entries: !ENTRY org.eclipse.ui.ide 4 4 2006-08-08 12:51:09.103 !MESSAGE Must specify a URI scheme:xxx !ENTRY org.eclipse.core.filesystem 4 566 2006-08-08 12:51:09.113 !MESSAGE Must specify a URI scheme:xxx !ENTRY org.eclipse.ui.ide 4 4 2006-08-08 12:51:09.113 !MESSAGE Must specify a URI scheme:xxx !ENTRY org.eclipse.core.filesystem 4 566 2006-08-08 12:51:09.113 !MESSAGE Must specify a URI scheme:xxx !ENTRY org.eclipse.ui.ide 4 4 2006-08-08 12:51:09.123 !MESSAGE Must specify a URI scheme:xxx !ENTRY org.eclipse.core.filesystem 4 566 2006-08-08 12:51:09.123 !MESSAGE Must specify a URI scheme:xxx !ENTRY org.eclipse.jface 4 2 2006-08-08 12:51:09.123 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface". !STACK 0 java.lang.NullPointerException at org.eclipse.core.internal.filesystem.InternalFileSystemCore.getFileSystem(InternalFileSystemCore.java:61) at org.eclipse.core.filesystem.EFS.getFileSystem(EFS.java:256) at org.eclipse.ui.internal.ide.dialogs.ResourceInfoPage.createStateGroup(ResourceInfoPage.java:447) at org.eclipse.ui.internal.ide.dialogs.ResourceInfoPage.createContents(ResourceInfoPage.java:266) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:233) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1403) at org.eclipse.jface.preference.PreferenceDialog$12.run(PreferenceDialog.java:1162) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1156) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:439) at org.eclipse.jface.preference.PreferenceDialog$8.selectionChanged(PreferenceDialog.java:661) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:839) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:837) at org.eclipse.jface.viewers.StructuredViewer.setSelection(StructuredViewer.java:1578) at org.eclipse.jface.preference.PreferenceDialog.selectSavedItem(PreferenceDialog.java:958) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.selectSavedItem(FilteredPreferenceDialog.java:482) at org.eclipse.jface.preference.PreferenceDialog$3.run(PreferenceDialog.java:345) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.preference.PreferenceDialog.createContents(PreferenceDialog.java:341) at org.eclipse.jface.window.Window.create(Window.java:426) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1124) at org.eclipse.ui.internal.dialogs.PropertyDialog.createDialogOn(PropertyDialog.java:82) at org.eclipse.ui.dialogs.PropertyDialogAction.createDialog(PropertyDialogAction.java:175) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:154) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3377) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2997) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:401) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 1cd9416 | ["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 | 2006-08-08T17:29:03Z | 2006-08-08T09:40:00Z |
152,785 | Bug 152785 Improve javadocs for org.eclipse.ui.IStartup | The codeing example for method earlyStartup needs to be enclosed in <pre> element. Patch follows: ### Eclipse Workspace Patch 1.0 #P org.eclipse.ui.workbench Index: Eclipse UI/org/eclipse/ui/IStartup.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IStartup.java,v retrieving revision 1.9 diff -u -r1.9 IStartup.java --- Eclipse UI/org/eclipse/ui/IStartup.java 8 May 2006 20:55:31 -0000 1.9 +++ Eclipse UI/org/eclipse/ui/IStartup.java 3 Aug 2006 19:54:52 -0000 @@ -26,6 +26,7 @@ * since they may access SWT. For example, to obtain the current workbench * window, use: * <code> + * <pre> * final IWorkbench workbench = PlatformUI.getWorkbench(); * workbench.getDisplay().asyncExec(new Runnable() { * public void run() { @@ -35,6 +36,7 @@ * } * } * }); + * </pre> * </code> * </p> * @see org.eclipse.swt.widgets.Display#asyncExec | resolved fixed | 74e8ba1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IStartup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-03T20:11:59Z | 2006-08-03T18:33:20Z |
151,958 | Bug 151958 [Markers] Custom problem filter not updated | - create a minimal plugin with a plugin.xml like this: <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.2"?> <plugin> <extension point="org.eclipse.ui.ide.markerSupport"> <problemFilter name="Problems" id="markererror.myPlugin.filterId" enabled="true" scope="ON_ANY_IN_SAME_CONTAINER"> <selectedType/> </problemFilter> </extension> </plugin> - start a runtime workbench, introduce a compile error in a Java class to get a problem marker. - in the problems view, disable the default filter, the filter "Problems" remains activated. - no markers are shown in the problem view. I debugged a little and found that the method MarkerFilter.setFocusResource() is only called for the default filter, not for the plugin-defined "Problems" filter: The latter filter is only contained in the field MarkerView.enabledFilters. The field MarkerView.markerFilters contains only the default filter. | verified fixed | af307db | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/DialogMarkerFilter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-02T14:49:21Z | 2006-07-27T08:46:40Z |
152,586 | Bug 152586 [Properties view] Querying nonexistent project for properties causes NPE | null | verified fixed | 3678b3d | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/properties/ResourcePropertySource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-02T14:47:25Z | 2006-08-02T12:00:00Z |
152,035 | Bug 152035 [BiDi] Menu items do not appear for IFile resources when -nl iw is used | null | closed fixed | 71b7547 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/WorkbenchFile.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-02T14:44:31Z | 2006-07-27T17:06:40Z |
135,055 | Bug 135055 Save action state is not refreshed when Properties View is active for a selection in Common Navigator | The Properties View now delegates the save behavior to the source of the properties instead of the active editor. Its initial state is ok. However, if there is an active editor that is not dirty but Properties View is displayed for selection in Common Navigator that represents another (dirty) model then Save is properly enabled. And if the user hits CTRL+S it actually works fine: the model is saved and Common Navigator labels (model itself and title bar) are properly updated but the Save action itself does not change the state - it is still enabled. Similarly, if the initial selection is in a non-dirty model, the Save action is disabled, then make change through the Properties View and you can see the labels in Common Navigator being updated but Save action does not get enabled. It does if the element is re-selected in Common Navigator. | verified fixed | cca9d46 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/BaseSaveAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-01T22:11:08Z | 2006-04-05T15:13:20Z |
151,781 | Bug 151781 [Progress] ProgressManager$JobMonitor mishandles empty subtask | ProgressManager$JobMonitor#subTask(...) is implemented such that it does nothing if the 'name' parameter is a 0-length string. This is a problem because it makes the JobMonitor doesn't correctly update for code that uses the method of clearing a monitor's subtask (subTask("")). For example, this is incompatible with the way that SubProgressMonitors work (see SubProgressMonitor#done()). The workaround that clients used to trick the JobMonitor into working correctly is to call subTask(" "). | verified fixed | 0f37591 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-01T18:26:46Z | 2006-07-25T23:26:40Z |
149,643 | Bug 149643 [EditorMgmt] File > Properties in editor has IEditorInput as selection | I20060704-0800 Open a Text/Java/Ant/PDE editor on a file from your workspace. When the editor is active, File > Properties only shows the CVS properties page. When the file is selected in the Package Explorer, the Info properties page is shown as well. I would expect that the Info page is also shown when the editor is active. | verified fixed | 9d24b3c | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/FileInputAdapterFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/ui/tests/propertyPages/TestPropertyPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-08-01T14:41:33Z | 2006-07-05T09:00:00Z |
138,608 | Bug 138608 [Viewers] JFace AbstractTreeViewer: itemExists doesn't handle equal tree entries | I use a TreeViewer with - setUseHashLookup(true) - without any sorter or filter - with a comparer When I try to add an object that is equal to an existing entry in the tree, it will not be added. This is because the method private boolean itemExists(Item[] items, Object element) { if(usingElementMap()) { return findItem(element) != null; } for (int i = 0; i < items.length; i++) { if(items[i].getData().equals(element)) { return true; } } return false; } takes a shortcut if there is an element map, but the shortcut doesn't handle the 'multiple equal elements' case. There is a workaround, however: Setting a dummy sorter will avoid the call to itemExists and multiple equal elements can be added to the tree. | verified fixed | e104856 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/Bug138608Test.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-31T09:51:30Z | 2006-04-26T11:13:20Z |
131,330 | Bug 131330 [IDE] Misleading error message that workspace is currently in use | 3.2M5 I currently moved to a new PC which had different drive letters. I start up one Eclipse instance, and then in there run a second instance under the debugger. In the launch configuration I still had the old path name to my workspace, like "D:\workspace". But that's not right anymore (everything is on C:). So when I tried to launch the second instance (Run > Debug...) I got an error dialog, but the message was misleading. It said: "Workspace Cannot be Locked Could not launch the product because the associated workspace is currently in use." It's not in use, it's completely missing. Also it would be nice for it to tell me what workspace directory it was complaining about since I have several. | resolved fixed | 0f0d123 | ["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 | 2006-07-30T07:48:55Z | 2006-03-10T14:13:20Z |
73,263 | Bug 73263 [IDE] Need file pathname in titlebar | Currently, Eclipse displays the name of the active file in the titlebar. It would be nice to have the full pathname followed by the filename in the titlebar. example, instead of displaying only: MyClass.java display: /src/framework/model/domain/MyClass.java This is useful for a number of reasons: 1. To distinguish based on path, classes that have the same name. 2. For projects with multiple root directories, to tell where in the directory stucture one is currently editing. 3. Is an easy fix! | resolved fixed | ab2611c | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchWindowAdvisor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-30T07:40:46Z | 2004-09-03T19:33:20Z |
151,239 | Bug 151239 [IDE] NPE in ResourceInfoPage | I20060718-0800 1. open the propertie pages on an JAR entry in the JRE container 2. error dialogs says that a page couldn't be shown java.lang.NullPointerException at org.eclipse.ui.internal.ide.dialogs.ResourceInfoPage.createContents(ResourceInfoPage.java:234) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:233) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1403) at org.eclipse.jface.preference.PreferenceDialog$12.run(PreferenceDialog.java:1162) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1156) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:439) at org.eclipse.jface.preference.PreferenceDialog$8.selectionChanged(PreferenceDialog.java:661) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:839) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:837) at org.eclipse.jface.viewers.StructuredViewer.setSelection(StructuredViewer.java:1578) at org.eclipse.jface.preference.PreferenceDialog.selectSavedItem(PreferenceDialog.java:958) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.selectSavedItem(FilteredPreferenceDialog.java:482) at org.eclipse.jface.preference.PreferenceDialog$3.run(PreferenceDialog.java:345) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.preference.PreferenceDialog.createContents(PreferenceDialog.java:341) at org.eclipse.jface.window.Window.create(Window.java:426) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1124) at org.eclipse.ui.internal.dialogs.PropertyDialog.createDialogOn(PropertyDialog.java:82) at org.eclipse.ui.dialogs.PropertyDialogAction.createDialog(PropertyDialogAction.java:175) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:154) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3377) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2997) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) | resolved fixed | 885bdd3 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-28T14:16:03Z | 2006-07-20T12:53:20Z |
151,886 | Bug 151886 [KeyBindings] Startup fails if default active scheme is undefined | Build: I20060718. In BindingPersistence.readActiveScheme, if defaultActiveSchemeId is "" then startup fails because it calls BindingManager.getScheme(defaultActiveSchemeId), which throws IllegalArgumentException if the argument is "". Since anyone can access the preference tree and change this value, BindingPersistence should protect against it to avoid startup failure. | verified fixed | 769ec00 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingPersistence.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-28T12:16:13Z | 2006-07-26T18:53:20Z |
150,998 | Bug 150998 [Import/Export] Import Projects Wizard: Finish is enabled even if no project is selected | In Import Existing Projects Wizard, the Finish button is enabled even when no projects are selected for import. When the Import wizard is first invoked, Finish is disabled, since no projects have been selected for import. If a directory with no Eclipse projects is selected, Finish remains disabled. If a directory with at least one Eclipse project is selected, then Finish becomes enabled. If none of the projects are selected for import, then Finish remains enabled. Although this behaviour does not cause any functional problems, the UI seems inconsistent. | resolved fixed | 0632162 | ["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 | 2006-07-28T11:42:52Z | 2006-07-18T19:13:20Z |
68,079 | Bug 68079 [PerspectiveBar] Can't switch perspectives to item on the chevron | RC3, Windows XP There three items in the perspective switcher: debug, resource, and java. The window is the default size. The perspective switcher is as small as it can be. The debug perspective is active and I am running a debugging session. The other two items are on the chevron. Selecting one of those items does not switch perspectives. If the perspective switcher is expanded so that the items become visible, then it becomes possible to switch the perspectives. | verified fixed | b65c769 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveBarManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-27T19:06:12Z | 2004-06-21T20:33:20Z |
151,778 | Bug 151778 Errors in ResourceManager JavaDoc | In the doc of createImage method you read: Creates an image, given an image descriptor. Images allocated in this manner must be disposed by disposeImage, and never by calling Image.dispose(). disposeImage is not present, maybe it should be destroyImage? The same error for the other creation methods. | resolved fixed | 243b350 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ResourceManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-26T14:41:10Z | 2006-07-25T23:26:40Z |
144,988 | Bug 144988 [WorkspaceLauncher] Disallow space as workspace name | In Windows, when I launch Eclipse 3.2, a workspace window box is launched. I was able to specify simply the space character as the workspace path. It wasn't allow in Eclipse 3.1.2 | verified fixed | c2d727b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/ChooseWorkspaceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-26T14:08:43Z | 2006-06-01T22:13:20Z |
104,839 | Bug 104839 [Forms] TableWrapLayout requires too much vertical space with wrapped label in WizardPage | My understanding is that the whole purpose of the TableWrapLayout is to deal with wrapped labels. But this example shows that the layout requests a height much greater than is required. I recently tested this in 3.1 - and it happened in 3.0 and 3.0.1, IIRC. Run the example and a Wizard will appear...which on my system takes up the entire height of the screen. Dismiss the Wizard and the 2nd example will appear: adding a textfield fixes the problem. But not really...as you can see in the 3rd example - multiple wrapped labels still force the wizard taller than it needs to be. Example code: package test; import org.eclipse.jface.wizard.*; import org.eclipse.swt.widgets.*; import org.eclipse.swt.*; import org.eclipse.ui.forms.widgets.*; /** */ public class MyWizardPage extends WizardPage { public MyWizardPage(int variation) { super("intro"); setTitle("title"); setDescription("description"); _variation = variation; } public void createControl(Composite parent) { toolkit = new FormToolkit(parent.getDisplay()); // toolkit.setBackground(parent.getBackground()); form = toolkit.createForm(parent); form.setText("prompt"); setControl(form); Composite body = form.getBody(); TableWrapLayout layout = new TableWrapLayout(); layout.numColumns = 2; layout.verticalSpacing = 10; layout.topMargin = 10; layout.bottomMargin = 10; layout.leftMargin = 10; layout.rightMargin = 10; body.setLayout(layout); Label label1 = toolkit.createLabel(body, "Here is a long line. It is pretty long. Well, long enough to wrap in the wizard, anyway. It goes on and on an on for no particular purpose, really. It just keeps going. Kinda like that bunny in those battery commercials.", SWT.WRAP); label1.setLayoutData(new TableWrapData(TableWrapData.FILL, TableWrapData.CENTER, 1, 2)); if (_variation == 3) { Label label2 = toolkit.createLabel(body, "Here is a long line. It is pretty long. Well, long enough to wrap in the wizard, anyway. It goes on and on an on for no particular purpose, really. It just keeps going. Kinda like that bunny in those battery commercials.", SWT.WRAP); label2.setLayoutData(new TableWrapData(TableWrapData.FILL, TableWrapData.CENTER, 1, 2)); Label label3 = toolkit.createLabel(body, "Here is a long line. It is pretty long. Well, long enough to wrap in the wizard, anyway. It goes on and on an on for no particular purpose, really. It just keeps going. Kinda like that bunny in those battery commercials.", SWT.WRAP); label3.setLayoutData(new TableWrapData(TableWrapData.FILL, TableWrapData.CENTER, 1, 2)); } if (_variation > 1) { Text _url_field = toolkit.createText(body, "Adding this text field fixed the problem! Why?", SWT.BORDER); _url_field.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB)); } } public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("testing..."); shell.pack(); shell.open(); createWizard(shell, 1); createWizard(shell, 2); createWizard(shell, 3); } private static void createWizard(Shell shell, int variation) { Wizard wizard = new Wizard() { public boolean performFinish() { return true; //To change body of implemented methods use File | Settings | File Templates. } }; wizard.addPage(new MyWizardPage(variation)); WizardDialog dialog = new WizardDialog(shell, wizard); dialog.open(); } public void dispose() { super.dispose(); toolkit.dispose(); } private FormToolkit toolkit; private Form form; int _variation; } | resolved fixed | 7ae291a | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/TableWrapLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-24T13:53:03Z | 2005-07-22T16:33:20Z |
150,609 | Bug 150609 [Properties dialog][EFS] File properties for custom filesystem not shown | While implementing a custom filesystem, we came across the following problem: the properties 'last modified', 'location' and 'size' receive the value '<resource does not exist>'. The problem is due to the use of IResource#getLocation() in ResourcePropertySource and FilePropertySource which returns null in case of resources that are not stored on the default local filesystem. IResource#getLocationURI() should be used instead. In fact, this already happens in IDEResourceInfoUtils, which contains static versions of the same property retrieval methods implemented in ResourcePropertySource and FilePropertySource. | verified fixed | 856d729 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/properties/FilePropertySource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-21T21:01:18Z | 2006-07-14T06:53:20Z |
151,442 | Bug 151442 Javadoc error in ResourceAndContainerGroup.getResource() | /** * Returns a string that is the path of the currently selected * container. Returns an empty string if no container has been * selected. */ public String getResource() { return resourceNameField.getText(); } I don't believe "...currently selected 'container'..." is what is meant for this method, as 'container' is refers to the container field of this group, not the resource file name that this method is associated with. | resolved fixed | 88168a9 | ["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 | 2006-07-21T20:34:48Z | 2006-07-21T16:40:00Z |
151,089 | Bug 151089 [EFS] Closed projects on remote filesystem cause unwanted connection attempts | When a project is located on a remote filesystem (e.g. a WebDAV server) and this project is closed when starting Eclipse, Eclipse will cause cconnection attempts to that remote system. This is especially undesirable if those projects were closed because the remote system was shut down in the first place. The following is a stacktrace of Eclipse's first attempt to reach a remote system at startup, followed by some clarification. 8 WebDAVFileSystem.getStore(URI) line: 49 7 InternalFileSystemCore.getStore(URI) line: 107 6 EFS.getStore(URI) line: 296 5 FileStoreRoot.toLocalPath(URI) line: 120 4 FileStoreRoot.<init>(URI, IPath) line: 57 3 FileSystemResourceManager.setLocation(IResource, ResourceInfo, URI) line: 806 2 Project.internalSetDescription(IProjectDescription, boolean) line: 663 1 SaveManager.restoreMetaInfo(Project, IProgressMonitor) line: 782 SaveManager.restoreMetaInfo(MultiStatus, IProgressMonitor) line: 746 SaveManager.restore(IProgressMonitor) line: 637 SaveManager.startup(IProgressMonitor) line: 1299 Workspace.startup(IProgressMonitor) line: 1883 Workspace.open(IProgressMonitor) line: 1653 ResourcesPlugin.startup() line: 367 ... 1 SaveManager.restoreMetaInfo(Project, IProgressMonitor) line: 782 A project description is tried to be read; if the project is closed, it cannot be read and a dummy IProjectDescription is created. This description is then set with an internal method (the API method setDescription can only be used on existing open projects). 2 Project.internalSetDescription(IProjectDescription, boolean) line: 663 For some reason Eclipse interprets a closed project as being a resource that has its location changed and so it is set again (to a WebDAV location: webdav://). 3 FileSystemResourceManager.setLocation(IResource, ResourceInfo, URI) line: 806 To set the location, a new FileStoreRoot is created with root URI the URI of the remote project location (webdav://). 4 FileStoreRoot.<init>(URI, IPath) line: 57 The FileStoreRoot constructor tries to find out the local file that corresponds with the given WebDAV URI. If this is not possible, null will be stored (eventually this will happen, but only after the nonreachable remote system has been tried to be contacted). 5 FileStoreRoot.toLocalPath(URI) line: 120 The filesystem corresponding to the URI scheme (webdav) is requested with EFS. 6 EFS.getStore(URI) line: 296 An IFileStore is requested for the given WebDAV URI. 7 InternalFileSystemCore.getStore(URI) line: 107 The IFileSystem corresponding with the scheme of the given URI (webdav) is retrieved (WebDAVFileSystem). This filesystem is asked for an IFileStore representing the given URI. 8 WebDAVFileSystem.getStore(URI) line: 49 An attempt is made to create a WebDAVFileStore that represents the given URI. If it is not possible to create a file store corresponding to the provided URI, a file store belonging to the null file system should be returned. However, in order to know whether it is possible to create a file store, the WebDAV server should be contacted to determine if it responds. In my opinion, step 3 is the strangest: why must a closed project have its location set? | resolved fixed | 5690ece | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/properties/ResourcePropertySource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-20T20:51:33Z | 2006-07-19T14:40:00Z |
24,928 | Bug 24928 [JFace] Need ComboFieldEditor | Build 20021016 There seems to be a need for a combo box field editor: there are 3 copies in the system and I have to introduce another one. | resolved fixed | 50195da | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/ComboFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-07T15:23:53Z | 2002-10-17T10:20:00Z |
149,857 | Bug 149857 [Progress] Calling isCanceled after job is done causes Progress View entry to stick around | null | resolved fixed | 161e36b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-07T13:28:02Z | 2006-07-06T18:20:00Z |
39,003 | Bug 39003 [JFace] Window exception handler | Hi all, The org.eclipse.jface.window.Window class contains the following sequence of code: public static void setExceptionHandler(IExceptionHandler handler) { if(exceptionHandler instanceof DefaultExceptionHandler) exceptionHandler = handler; } The instanceof check actually prevents setting a custom exception handler. The DefaultExceptionHandler class is made private and cannot be extended to hack around of this code. The DefaultExceptionHandler handles exceptions by printing stacktrace to the standard output. This problem effectively prevents the use of jface Window and it's subclass ApplicationWindow classes in any non trivial application. Regards, Peter. | resolved wontfix | dd0b92a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/window/Window.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-06T19:02:10Z | 2003-06-17T08:53:20Z |
144,974 | Bug 144974 [Preferences] TVT3.2:TCT829: DE : Base : Truncation in Ant Preferences Panel | OS : RHEL 3.1 Must fix or not a must fix: NO Build date: 0531 Component name = Base Blocking: no Language: de Bitmap Location: V:\defects\de\ Tester Name: Ruth Nestvold Problem Description: The "Browse..." button is truncated on the Prefences panel Steps: On the menu bar from the main Workbench panel, click Windows > Preference Expand and Select Ant The Browse button on the Ant panel is truncated This article was reassigned from Category:''TVT/Testing''. | verified fixed | ccfa699 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/StringButtonFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-06T16:26:03Z | 2006-06-01T19:26:40Z |
116,614 | Bug 116614 [CellEditors] Mixing up between undo and redo in CellEditorActionHandler | null | verified fixed | e9c2dd3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/CellEditorActionHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-07-06T14:47:51Z | 2005-11-16T08:33:20Z |
149,663 | Bug 149663 [PropertyPages] CCE when closing Properties dialog for Java project | I20060704-0800 - select a Java project in the Package Explorer - choose File > Properties - press OK Changes on other properties pages are also not saved because of this exception. java.lang.ClassCastException: org.eclipse.jdt.internal.core.JavaProject at org.eclipse.ui.internal.ide.dialogs.ResourceInfoPage.performOk(ResourceInfoPage.java:537) at org.eclipse.jface.preference.PreferenceDialog$11.run(PreferenceDialog.java:889) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:869) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:377) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:230) at org.eclipse.jface.dialogs.Dialog$3.widgetSelected(Dialog.java:660) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3375) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2995) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:156) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3375) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2995) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 6abfa24 | ["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 | 2006-07-05T17:43:11Z | 2006-07-05T11:46:40Z |
149,311 | Bug 149311 [WorkingSets] working set selection wizard page has faulty layout | The layout for the Working set type: label of the New/Edit WorkingSetTypePage wizard page is not correct. If you select a type, then go back, you will see the label's layout is grabbing excess vertical space when it shouldn't be. I have a patch to fix this. | verified fixed | 1e4d2fa | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetTypePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-30T14:58:32Z | 2006-06-30T15:06:40Z |
50,994 | Bug 50994 [Wizards] NewWizardShortcutAction does not properly size wizard | We are using org.eclipse.ui.actions.NewWizardMenu() to create the New> menu option on a popup menu inside a tree view. The wizards registered for the perspective are coming up with odd, outlandish sizes. We traced the problem to org.eclipse.ui.internal.ide.NewWizardShortcutAction. When NewWizardShortcutAction creates the WizardDialog, it does not properly size the wizard. The problem does not show up from the general NewWizardDialog (where an individual wizard is selected from all available) because NewWizardAction handles the sizing of the initial WizardDialog, and the subsequent WizardPages added absorb the correct size. This is a simple fix, which could be accomplished with the following (minor) change: _Currently in NewWizardAction.java#159-64_ Shell parent = workbenchWindow.getShell(); WizardDialog dialog = new WizardDialog(parent, wizard); dialog.create(); // the following is the key line missing from NewWizardShortcutAction dialog.getShell().setSize( Math.max(SIZING_WIZARD_WIDTH, dialog.getShell().getSize().x), SIZING_WIZARD_HEIGHT); WorkbenchHelp.setHelp(dialog.getShell(), IHelpContextIds.NEW_WIZARD); dialog.open(); _Add the same line to NewWizardShortcutAction.java#92-98_ wizard.init(window.getWorkbench(), selectionToPass); Shell parent = window.getShell(); WizardDialog dialog = new WizardDialog(parent, wizard); dialog.create(); dialog.getShell().setSize( Math.max(SIZING_WIZARD_WIDTH, dialog.getShell().getSize().x), SIZING_WIZARD_HEIGHT); WorkbenchHelp.setHelp(dialog.getShell(), IHelpContextIds.NEW_WIZARD_SHORTCUT); dialog.open(); We have not tested the above modification. [Using Eclipse 3.0M6 on Windows 2000] | verified fixed | 21a9146 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/NewWizardShortcutAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-29T17:58:05Z | 2004-01-30T19:13:20Z |
147,848 | Bug 147848 [Dialogs] Context Menu > Copy in ErrorDialog ignores details | null | verified fixed | be3b2f0 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-29T17:21:38Z | 2006-06-20T10:40:00Z |
120,704 | Bug 120704 [Wizards] Problems with the "New" wizard | 1. there is a small red square in the top right 2. the filter does not line up on the right with the viewer and looks bad. 3. the viewer is small vertically, and yet there is a lot of real estate that is being ununsed on the bottom. 4. why is there a help icon on the bottom right, and why is it never enabled? screenshot to follow | verified fixed | e7a8c0b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/NewWizardNewPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-28T21:31:22Z | 2005-12-13T18:53:20Z |
143,757 | Bug 143757 [Import/Export] Cannot Import existing project into workspace if <name> different from actual folder name | Hi, I am not sure where this belongs Core/ UI or Debug; however discovered this today, In eclipse I can "Import exiting projects into Workspace", *IF and only IF* the <name></name> in the .project file matches the name of the folder in which it exists. To confirm; I created a Java project in my workspace, by name HelloWorld. Subsquently deleted it from workspace, WITHOUT deleting contents from the file system. Next in the file system, edited ONLY the ".project" file of this project. I changed <name>HellWorld</name> into <name>Not-HelloWorld</name> Returning back to eclipse, tried the command File -> Import -> Import exiting projects into Workspace Specified the folder for the HelloWorld. The Projects list box in the dialog listed Not-HelloWorld. (read the .project file). I selected it and clicked finnish. An error dialog popped up, saying Invalid project description. Detail showed D:\Users\Jeevan\workspace\HelloWorld overlaps the workspace location: D:\Users\Jeevan\workspace. I reedited the .project file manually and restored the <name></name> following which I was able to import it into my workspace. This happens with: Eclipse SDK Version: 3.1.2 Build id: M20060118-1600 But does NOT with a older version. Eclipse SDK Version: 3.1.0 Build id: I20050627-1435 | verified fixed | 97e4630 | ["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 | 2006-06-28T19:50:48Z | 2006-05-25T15:13:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.