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] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
194,587 | Bug 194587 [DataBinding] Policy.getLog().log() could be a bit more informative | By default this logger only prints the error message. It should log all informations it gets from the Status-Object. Another question is why the databinding plugin is not holding an Activator replacing the dummLogger when booted in RCP-Applications? | verified fixed | 0fef9f7 | ["bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/util/Policy.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/util/Policy.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/Activator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T20:25:41Z | 2007-06-27T10:26:40Z |
161,026 | Bug 161026 [Wizards] ProjectContentsLocationArea uses wrong file separator | org.eclipse.ui.internal.ide.dialogs.ProjectContentsLocationArea uses Linux style '/' file-separators regardless of platform. I will attach a patch against head that uses .toOSString() instead of the current .toString() | verified fixed | f015fee | ["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 | 2007-06-27T20:16:33Z | 2006-10-16T09:13:20Z |
109,389 | Bug 109389 [JFace] API - IntegerFieldEditor does not fire property change all the time | How to reproduce : JDT must be installed. Open Run->debug... Create a new Remote Java Application. Select (Standard)Socket Attach if not already selected. Change the default port value 8000 to 800011 (this value is invalid but is does not matter). Click on the Apply button. Select another debug configuration and come back to the configuration we have just created. Select the last two figures 11 in the port value and suppress them so that the port value is 8000 again. You will then notice that the apply button is still grayed out, because the IntegerFieldEditor did not fire a propertychange event. Here is the code that should correct it from org.eclipse.jface.preference.IntegerFieldEditor: /* (non-Javadoc) * Method declared on FieldEditor. */ protected void doLoad() { Text text = getTextControl(); if (text != null) { int value = getPreferenceStore().getInt(getPreferenceName()); text.setText("" + value);//$NON-NLS-1$ oldvalue = "" + value;<----------------------- this must be added } } and oldvalue must be made protected in the StringFieldEditor. I think that should correct the bug. Sebastien. | verified fixed | 36faad1 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/IntegerFieldEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/StringFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T19:18:30Z | 2005-09-13T14:00:00Z |
135,818 | Bug 135818 ITreeSelection does not offer getElementComparer() | null | verified fixed | fdf5fc6 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ITreeSelection.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T18:18:33Z | 2006-04-10T09:06:40Z |
142,802 | Bug 142802 [Markers] FieldSeverityAndMessage should protect against uninitialzed images | RC4 try { return JFaceResources.getResources().createImage( IDEInternalWorkbenchImages.getImageDescriptor( IDEInternalWorkbenchImages.IMG_ETOOL_PROBLEM_CATEGORY)); } catch (DeviceResourceException e) { return null; } should be try { return JFaceResources.getResources().createImageWithDefault( IDEInternalWorkbenchImages.getImageDescriptor( IDEInternalWorkbenchImages.IMG_ETOOL_PROBLEM_CATEGORY)); } catch (DeviceResourceException e) { return null; } to prevent NPEs if the IDEWorkbenchAdvisor is not initialized. | verified fixed | 7f48191 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/FieldSeverityAndMessage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T17:00:06Z | 2006-05-19T17:33:20Z |
107,771 | Bug 107771 [WorkingSets] Working Set selection dialogs have thier own image caches | M1 WorkingSetTypePage and WorkingSetSelectionDialog both have image caches thatshould be replaced by Resource managers | verified fixed | 01c7217 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetLabelProvider.java", "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 | 2007-06-27T15:18:12Z | 2005-08-23T18:00:00Z |
128,529 | Bug 128529 [ViewMgmt] Show View Dialog should be able to show a view's description | i.e. the content of <!ELEMENT description (#PCDATA)> | verified fixed | 0605bba | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T14:58:24Z | 2006-02-19T00:46:40Z |
123,169 | Bug 123169 [Progress] NPE from JobInfo | Version: 3.2.0 Build id: I20060105-0800 While running a CVS synchronize the attached exception appeared in my log. My guess is that the taskInfo field was cleared after the null check, but before getDisplayString was caleld on it). Assigning the field to a local variable first should stop this happening again. getPercentDone and getCondensedDisplayString already do this. org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3283) at org.eclipse.swt.SWT.error(SWT.java:3206) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3262) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2908) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1764) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1728) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:398) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:109) 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:379) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:338) at org.eclipse.core.launcher.Main.basicRun(Main.java:282) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.progress.JobInfo.getDisplayStringWithStatus(JobInfo.java:269) at org.eclipse.ui.internal.progress.JobInfo.getDisplayString(JobInfo.java:246) at org.eclipse.ui.internal.progress.JobInfo.getDisplayString(JobInfo.java:239) at org.eclipse.ui.internal.progress.GroupInfo.compareTo(GroupInfo.java:111) at org.eclipse.ui.internal.progress.ProgressManagerUtil$1.compare(ProgressManagerUtil.java:93) at org.eclipse.jface.viewers.ViewerSorter$1.compare(ViewerSorter.java:177) at java.util.Arrays.mergeSort(Unknown Source) at java.util.Arrays.sort(Unknown Source) at org.eclipse.jface.viewers.ViewerSorter.sort(ViewerSorter.java:175) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(StructuredViewer.java:948) at org.eclipse.ui.internal.progress.ProgressCanvasViewer.internalRefresh(ProgressCanvasViewer.java:135) at org.eclipse.jface.viewers.StructuredViewer.internalRefresh(StructuredViewer.java:1149) at org.eclipse.jface.viewers.StructuredViewer$8.run(StructuredViewer.java:1349) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1259) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1347) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1304) at org.eclipse.ui.internal.progress.ProgressCanvasViewer.add(ProgressCanvasViewer.java:237) at org.eclipse.ui.internal.progress.ProgressViewerContentProvider.add(ProgressViewerContentProvider.java:203) at org.eclipse.ui.internal.progress.ProgressViewUpdater$1.runInUIThread(ProgressViewUpdater.java:271) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:93) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) ... 20 more | verified fixed | 6869227 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobInfo.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T14:25:30Z | 2006-01-09T23:40:00Z |
97,667 | Bug 97667 [Preferences][PatchProvided] Pref Page General/Editors - problems | The three links "See ..." at the top do not use the dialog font. Suggest changing the mnemonic of "Number of opened editors before closing" from 'g' to 'n' -- depending on the font used 'g' is a suboptimal letter for mnemonics (see screenshot with Trebuchet MS. Alignment problems see screenshot. | verified fixed | 4b867de | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/EditorsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-27T13:41:43Z | 2005-05-31T20:06:40Z |
96,943 | Bug 96943 [Dialogs] [open type] Open Type dialog should open menu on Ctrl+F10 | I20050527-0010 The Open Type dialog should open the menu in the upper right corner on Ctrl+F10. This is the shortcut usually bound to "Window > Navigation > Show View Menu". The Quick Outline / Type Hierarchy popups also support this shortcut (via a HandlerSubmission, installed in AbstractInformationControl#createViewMenu(..)). | verified fixed | aa8a6d3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:53:17Z | 2005-05-27T10:33:20Z |
95,882 | Bug 95882 [Progress] Provide toString() for PendingUpdateAdapter | PendingUpdateAdapter should provide a toString() method as follows: public String toString() { getLabel(null); } This is needed because these objects are returned to clients who show content from a DeferredTreeContentManager. Client label providers cannot reference PendingUpdateAdapter to provide a label for it, but clients who extend LabelProvider get objects' toString() value for "unknown" objects. | verified fixed | 69bc715 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/PendingUpdateAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:48:09Z | 2005-05-18T23:46:40Z |
128,526 | Bug 128526 [ViewMgmt] Show View Dialog should remember size & location | null | verified fixed | f802647 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:34:11Z | 2006-02-18T22:00:00Z |
74,549 | Bug 74549 [Workbench] UIPlugin should remove initializeDefaultPreferences | 3.1 20040922-0800 We should remove the no-op initializeDefaultPreferences method from UIPlugin. Not only is the superclass implementation the same it is also a deprecated method. | verified fixed | 11f7379 | ["bundles/org.eclipse.ui/src/org/eclipse/ui/internal/UIPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:28:45Z | 2004-09-22T13:33:20Z |
121,796 | Bug 121796 [Viewers] getControl() contains no javadoc | AbstractListViewer.getControl() contains no javadoc, and is still declared abstract. It serves no purpose in this class. If it needs to remain, it should have javadoc to outline the requirement that an org.swt.widgets.List is expected. | verified fixed | f269e8d | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:15:52Z | 2005-12-22T00:06:40Z |
63,075 | Bug 63075 [PropertiesDialog] The file size in the file Properties dialog and the file Properties view is not formatted for the locale | Eclipse build number: I200405140800 CDT build number: 200405121551 TestCase number: QE_TestCase_P1_I18N211, QE_TestCase_P1_I18N212 Test Case: 1. Change the locale to Spanish from control panel. 2. Restart eclipse & create a Java or C/C++ project. Create a file under the project and add code to it such that the file size exceeds 1000 bytes. 3. Right click on file and go to Properties. The file size specified there is not formatted according to the locale selected. 4. Go to Windows->Show view->Properties. The file size is not number formatted in the properties view for the locale as well. | verified fixed | 0fa7be7 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:09:42Z | 2004-05-19T18:06:40Z |
182,354 | Bug 182354 [Dialogs] API - make ElementTreeSelectionDialog usable with a FilteredTree | null | verified fixed | 20660af | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/ElementTreeSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T20:01:59Z | 2007-04-13T16:00:00Z |
121,797 | Bug 121797 [Viewers] internalRefresh(Object) | AbstractListViewer.internalRefresh(Object) does not wrap calls to setRedraw on its org.eclipse.swt.widgets.List within a try-finally block. There are many methods between the two calls to setRedraw that subclasses could throw Exceptions on which could cause setRedraw(true) not to be called. The most likely is the call to the LabelProvider through AbstractLabelViewer.getLabelProviderText(ILabelProvider, Object) | verified fixed | e756408 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T19:50:10Z | 2005-12-22T00:06:40Z |
29,853 | Bug 29853 [Workbench] OpenWithMenu and setFile | The constructor that only takes the IWorkbenchPage mentions that the user must use the setFile method...this method does not exist. | verified fixed | ad4bdca | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/OpenWithMenu.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T19:41:24Z | 2003-01-20T22:00:00Z |
182,505 | Bug 182505 [FieldAssist] API - ContentProposalAdapter needs hasProposalPopupFocus() method | Please implement a method ContentProposalAdapter.hasProposalPopupFocus() like org.eclipse.jface.text.contentassist.ContentAssistant.hasProposalPopupFocus(). The method should return a boolean whether the content assistant proposal popup has the focus or not. | verified fixed | def3018 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T18:25:45Z | 2007-04-16T07:53:20Z |
172,261 | Bug 172261 [Actions] When rename a file in one project's navigator, the other selected file's name is renamed | Description: When rename a file in one project, the other file's name is renamed (do that in Navigator view) Build number: Version: 3.3.0 Build id: I20061214-1445 Steps to reproduce: 1, New a project such as BIRT and Java 2, New two files in that project: FileA and FileB 3, Turn to Navigator View 4, Select FileA and Press F2. Typing "FileC", then moving the mouse and click the FileB Expected result: The FileA is renamed to FileC But FileB's name isn't changed to FileC Actual result: After step4, FileA's name isn't renamed but FileB is renamed to FileC Error log: | verified fixed | 1de7ebe | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/RenameResourceAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T18:19:33Z | 2007-01-31T02:20:00Z |
121,789 | Bug 121789 [Viewers] ColorAndFontCollector javadoc is wrong | Original: The ColorAndFontManager collects fonts and colors without a a color or font provider. Notice the reference to "ColorAndFontManager". It should probably be "ColorAndFontCollector" instead. | verified fixed | a94aa13 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T18:13:09Z | 2005-12-22T00:06:40Z |
121,727 | Bug 121727 [Viewers] ContentViewer.getLabelProvider javadoc is wrong | Original javadoc: Returns the label provider used by this viewer. <p> The <code>ContentViewer</code> implementation of this method returns the label provider recorded in an internal state variable; if none has been set (with <code>setLabelProvider</code>) a <code>SimpleLabelProvider</code>... Corrected javadoc: Returns the label provider used by this viewer. <p> The <code>ContentViewer</code> implementation of this method returns the label provider recorded in an internal state variable; if none has been set (with <code>setLabelProvider</code>) a <code>LabelProvider</code>... Note the change from <code>SimpleLabelProvider</code> to <code>LabelProvider</code>. | verified fixed | a3e0592 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T18:10:18Z | 2005-12-21T15:46:40Z |
164,662 | Bug 164662 [Workbench] Minor typo in IPageLayout | IPageLayout reads /** * The view id for the workbench's Problems View standard component. * @since 3.2 */ public static String ID_PROGRESS_VIEW = "org.eclipse.ui.views.ProgressView"; Problems View should be Progress View Cheers, Andi | verified fixed | 63ade67 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IPageLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T17:35:10Z | 2006-11-15T17:00:00Z |
73,092 | Bug 73092 [IDE] WorkspaceModifyOperation does not avoid updates, although comment indicates it does | From the class comment of WorkspaceModifyOperation: * The primary * consequence of using this operation is that events which typically occur as a * result of workspace changes (such as the firing of resource deltas, * performance of autobuilds, etc.) are deferred until the outermost operation * has successfully completed. However this doesn't appear to be true in Eclipse 3.0. It is possible that the notification manager will send out an intermediate ResourceModifyEvent during the execution. It seems that this is because of this line: IDEWorkbenchPlugin.getPluginWorkspace().run(workspaceRunnable, rule, IResource.NONE, monitor); If IWorkspace.AVOID_UPDATE were passed (instead of IResource.NONE) I believe that these intermediate events would not occur. Probably either the comment or the implementation should be changed. Also as a side request it would be nice if this parameter could be configurable through the API of this class. | verified fixed | 7f4de64 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/WorkspaceModifyOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-26T13:45:47Z | 2004-09-01T20:20:00Z |
180,701 | Bug 180701 [JFace] API - Popup dialog is creating image descriptors every time it is opened | We are not caching the imageDescriptors from PopupDialog but are recreating them all of the time. This is likely not a serious issue but it will generate garbage. Also the images are not looked up using bundles so they cannot be overridden in other Locales. As they are currently symmetric this is not an issue but they should be looked up in the same way we do it in JFaceResources when this fixed. | verified fixed | f9004d9 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/PopupDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/JFaceResources.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-25T22:18:42Z | 2007-04-03T14:20:00Z |
189,885 | Bug 189885 [Dialogs] SafeRunnableDialog class Javadoc contains special char: e | I20070530-0010. /** * SafeRunnableDialog is a dialog that can show the results of multiple safe * runnable errorse * */ | verified fixed | 55dc77e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/util/SafeRunnableDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-25T22:12:20Z | 2007-05-30T10:13:20Z |
72,489 | Bug 72489 [Dialogs] ErrorDialog resize behaviour should be improved | The resize behaviour of the ErrorDialog lacks a few constraints: - You can resize the dialog arbitrarily. A minimum size should be calculated dynamically to make sure that all components are visible. - If visisble - the details field upper left position should be fixed and the field itself should resizes only. | verified fixed | 1e5fcc1 | ["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 | 2007-06-25T22:04:42Z | 2004-08-24T09:33:20Z |
140,041 | Bug 140041 [Preferences] ConcurrentModificationException in WorkingCopyManager.applyChanges | Build: 3.2 RC2 I found this error in my log file this morning. I don't know what I was doing at the time, and didn't notice any other side-effects: java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.nextEntry(HashMap.java:942) at java.util.HashMap$ValueIterator.next(HashMap.java:972) at org.eclipse.ui.preferences.WorkingCopyManager.applyChanges(WorkingCopyManager.java:59) at org.eclipse.jdt.internal.ui.preferences.OptionsConfigurationBlock.processChanges(OptionsConfigurationBlock.java:753) at org.eclipse.jdt.internal.ui.preferences.OptionsConfigurationBlock.performApply(OptionsConfigurationBlock.java:712) at org.eclipse.jdt.internal.ui.preferences.JavaBuildPreferencePage.performApply(JavaBuildPreferencePage.java:126) at org.eclipse.jface.preference.PreferencePage$2.widgetSelected(PreferencePage.java:282) 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:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968) 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:925) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968) 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:143) 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: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 | 9b048e2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/WorkingCopyManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-22T13:45:14Z | 2006-05-03T18:13:20Z |
103,747 | Bug 103747 [Viewers] calling refresh on treeviewer in treeExpanded function, but it mess | I tried calling refresh on treeviewer in treeExpanded function. The result is it mess up the tree, there is only one children without a label. Code to reproduce: public void createPartControl(Composite parent) { viewer = new TreeViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL); drillDownAdapter = new DrillDownAdapter(viewer); viewer.setContentProvider(new ViewContentProvider()); viewer.setLabelProvider(new ViewLabelProvider()); viewer.setSorter(new NameSorter()); viewer.setInput(getViewSite()); viewer.addTreeListener(new ITreeViewerListener() { public void treeCollapsed(TreeExpansionEvent event) { } public void treeExpanded(TreeExpansionEvent event) { viewer.refresh(event.getElement()); }}); } | verified fixed | 204ef75 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-21T20:52:01Z | 2005-07-14T00:13:20Z |
85,742 | Bug 85742 [RCP] Doc clarification required for IWorkbenchConfigurer.create* | I20050215-2300 Is it safe to call create*(blah) more than once on IWorkbenchWindowConfigurer? As it is, multiple controls will be created by the WorkbenchWindow but only one will be recognized. | verified fixed | 988a6bf | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/application/IWorkbenchWindowConfigurer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-21T17:45:11Z | 2005-02-17T19:53:20Z |
70,370 | Bug 70370 [Viewers] ViewerDropAdapter couples auto-scroll and auto-expand | For some reason, the ViewerDropAdapter provides a single method to enable/disable auto scrolling and expanding when dropping. I have a view that hits the server when expanding a tree, so I don't want the auto-expansion but I still want the scrolling. I will attach a patch to ViewerDropAdapter that separates these. | resolved fixed | 0be4c38 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerDropAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-20T19:53:46Z | 2004-07-19T20:46:40Z |
193,260 | Bug 193260 [Databinding] Incorrect javadoc for TextObservableValue | Build ID: I20070525-1350 Steps To Reproduce: The javadoc for the constructor public TextObservableValue(final Text text, int updateEventType) incorrectly states that one of the valid values for the parameter updateEventType is SWT.NONE. This should be SWT.None, as the former is a bitmask and the latter is an event type. More information: Note that due to the fact that SWT.NONE and SWT.None are both 0, the code would behave correctly anyway. | verified fixed | 1d017bb | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/TextObservableValue.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-20T16:39:25Z | 2007-06-19T05:13:20Z |
46,197 | Bug 46197 [Workbench] bogus javadoc for IMemento.TAG_ID | The javadoc for IMemento.TAG_ID says the constant value is "org.eclipse.ui.id" when it is really "IMemento.internal.id". | verified fixed | e73ef43 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IMemento.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-19T20:14:49Z | 2003-11-06T14:46:40Z |
191,467 | Bug 191467 [KeyBindings] New keys preference page doesn't link to help | The new keys preference page doesn't link to the help system like the old one. This is important (new keys workflow) and low risk. PW | verified fixed | 8e36fe7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-07T14:54:11Z | 2007-06-07T12:40:00Z |
191,250 | Bug 191250 [FastView] [Presentations] 3.0 representation and fast view bar | Build ID: Build id: I20070601-1539 Steps To Reproduce: 1.select 3.0 representation on general preferences 2.switch between two perspectives (mine is SQL Explorer (plugin) and cdt (c/c++)) 3.I have dock on left as fast views on both perspectives the available views (that are by default suggested). e.g. Make targets,Outline,C/C++ projects etc for the C/C++ perspective and Database structure,Database detail etc for SQL Explorer. When switching between perspectives the fast view side bar do not change and it shows always the side bar of the perspective that is loaded first on startup. After selecting the default representation from Window->Preferences->General ->Appearance instead of 3.0 representation everything is working. More information: I am using Suse 9.3 64bit (Intel) and 64 bit Eclipse & ibm java 5.x 64 bit. | verified fixed | b661710 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-06T23:00:16Z | 2007-06-06T14:26:40Z |
191,255 | Bug 191255 [Activities] GenerateIdentifiersTest#Generate 10000 identifiers() is not enough reliable to be in fingerprints | Looking at test GenerateIdentifiersTest#Generate 10000 identifiers() on org.eclipse.ui performance results page, it looks like results for test GenerateIdentifiersTest#Generate 10000 identifiers() are not enough reliable to be put in fingerprints. For example, results for build I20070605-0010 shows yellow results on all boxes with following numbers: -569.1% [58.3] +4.8% [9.5] -10.4% [8.0] -109.6% [50.5] -8.0% [11.5] Test results history shows a great fluctuation of these numbers, so I think it would be safer to remove this test from the fingerprints until this test is not stabilized... | verified fixed | c70ffe3 | ["tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/GenerateIdentifiersTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-06T20:28:59Z | 2007-06-06T14:26:40Z |
191,321 | Bug 191321 [Examples] [doc] update rcp browser example documentation | The rcp browser example documentation should be updated to reference the new IApplication API. I also noticed the browser example does not do anything for the IApplication.stop() method. I will attach a patch with the doc updates and the implementation of stop in the browser example. | resolved fixed | 3dda839 | ["examples/org.eclipse.ui.examples.rcp.browser/src/org/eclipse/ui/examples/rcp/browser/BrowserApp.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-06T18:50:37Z | 2007-06-06T17:13:20Z |
172,534 | Bug 172534 [Workbench] Document when getSaveables is called by workbench | It would be good to document when getSaveables will be called by the workbench. This will allow clients with strange use cases (like Compare;-) to know when they need to fire a CLOSE event when the saveables for the part change. | resolved fixed | c9b42b7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISaveablesSource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-05T20:13:25Z | 2007-02-01T17:13:20Z |
98,242 | Bug 98242 [Viewers] [Javadoc] clarify that StructuredViewer does not update sort order if null properties are given | Despite the specification of StructuredViewer.update(Object element, String[] properties) that specifiying null properties forces full update including sort order, the implementation in 3.1M6 calls internalUpdate() which inits needsRefilter to false if no properties are given. Thus a change to a relevant sort attribute of the element does not maintain sort order (e.g. on TreeViewer). Suggested fix: protected void internalUpdate(Widget widget, Object element, String[] properties) { boolean needsRefilter = true; if (properties != null) { needsRefilter = false; for (int i = 0; i < properties.length; ++i) { needsRefilter = needsRefilter(element,properties[i]); | resolved fixed | 7a83295 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-05T20:01:21Z | 2005-06-03T09:13:20Z |
182,046 | Bug 182046 [Trim] configurer.setSaveAndRestore(true) doesn't work in 3.3M6 | Using 3.3 M6 I did a simple RCP tutorial. When I added the following code to my WorkbenchAdvisor subclass, @Override public void initialize(IWorkbenchConfigurer configurer) { configurer.setSaveAndRestore(true); super.initialize(configurer); } I got an error dialog every time I opened the RCP application. The error says: "Unable to read workbench state. Workbench UI layout will be reset." This works without a problem in Eclipse 3.3 M5. | verified fixed | 437af78 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-05T18:22:44Z | 2007-04-11T22:20:00Z |
188,911 | Bug 188911 [Contributions] [Doc] IContributionItem.dispose() says it should not be called by clients | 3.3 RC1. IContributionItem.dispose() says it should not be called by clients but this happens all over the place in the SDK e.g. to dispose menu managers which are also an IContributionItem. I guess this restriction should be removed. | resolved fixed | 86d94ab | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/IContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-05T15:16:02Z | 2007-05-24T12:33:20Z |
190,061 | Bug 190061 [Metadata] Update @since tags for new API | Patch to follow | resolved fixed | c4f41d6 | ["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/Command.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/ISWTObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ListeningLabelProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ObservableListContentProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ObservableMapLabelProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ObservableSetContentProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewersObservables.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/AbstractSWTObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/AbstractSWTVetoableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/CompositeUpdater.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/ControlUpdater.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/MenuUpdater.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/SWTUtil.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/TableUpdater.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/WorkQueue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/viewers/IParentProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/viewers/UnorderedTreeContentProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/viewers/ViewerLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/action/MenuManager.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/resource/CompositeImageDescriptor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/util/Policy.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CellEditor.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerLabel.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/ProjectExplorer.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonViewerSorter.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/WorkingSetFilterActionGroup.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/EditorSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/AbstractWorkbenchTrimWidget.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/WorkbenchPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-04T19:59:24Z | 2007-05-30T21:20:00Z |
190,538 | Bug 190538 [Tests] Need test views for saveables | null | resolved fixed | 5cbf251 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/manual/SaveablesView.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/manual/ViewWithSaveables.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-01T18:59:36Z | 2007-06-01T17:46:40Z |
190,336 | Bug 190336 [Actions] Rename border does not show up on the Mac | The rename action does not draw the box as the Mac specific code checks for a now redundant system property. | verified fixed | 55782a0 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/RenameResourceAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-31T20:27:06Z | 2007-05-31T19:33:20Z |
190,256 | Bug 190256 [FastView] Help view opened as fast view cannot be closed and prevents exiting from eclipse | 3.3RC3 build I20070531-0800 - start a brand new eclipse workspace - go to Preferences page General > Perspectives - click the Open a New View > As Fast View radio button, OK - create a Hello World PDE project, stay in the Java Perspective - close the auto-opened PDE editor - open any of the generated .java files in the java editor - press Ctrl+F1 to show the Help view - after it has appeared close it by pressing the 'X' on its tab -> it does not close, and writes the stack below to the log - the view is left in a strange state visually, and eclipse can only be exited through the Task Manager (at least on win32) It appears that someone above swt is disposing the image in the Help view's tab, after which a paint event is coming in and swt is failing because it tries to use the disposed image. org.eclipse.swt.SWTException: Graphic is disposed at org.eclipse.swt.SWT.error(SWT.java:3563) at org.eclipse.swt.SWT.error(SWT.java:3481) at org.eclipse.swt.SWT.error(SWT.java:3452) at org.eclipse.swt.graphics.Image.getBounds(Image.java:1142) at org.eclipse.swt.custom.CTabItem.drawSelected(CTabItem.java:378) at org.eclipse.swt.custom.CTabItem.onPaint(CTabItem.java:790) at org.eclipse.swt.custom.CTabFolder.drawTabArea(CTabFolder.java:1112) at org.eclipse.swt.custom.CTabFolder.onPaint(CTabFolder.java:2258) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:321) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:962) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:947) at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:1270) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3725) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4364) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2264) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3291) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) | verified fixed | 579510f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-31T20:10:56Z | 2007-05-31T16:46:40Z |
189,106 | Bug 189106 FilteredItemsSelectionDialog flickers when pattern changes | I20070525-0010, was OK in I20070523-0010. The FilteredItemsSelectionDialog flickers when the pattern is changed. E.g. open the Open Type dialog and slowly type "Array" (wait until search is done after every keystroke). => The table always first becomes blank and then the new items are shown. | verified fixed | abf48be | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-30T20:10:15Z | 2007-05-25T08:00:00Z |
190,006 | Bug 190006 [QuickAccess] Empty string should not be associated with an element | [RC2] Steps: 1. Press Ctrl-3, type "Console", hit return -> opens the Console view. 2. Press Ctrl-3, hit return 3. Press Ctrl-3, type "Javadoc", hit return -> opens the Javadoc view 4. Press Ctrl-3 Actual: "Console" is selected Expected: "Javadoc" is selected | verified fixed | 5f92623 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-30T20:04:52Z | 2007-05-30T18:33:20Z |
189,901 | Bug 189901 [ErrorHandling] NPE showing error | Note: This might as well be CDT related, but I do not know. It may also be coincidence that Eclipse crashed while clicking on a project, but I do not think so. Details: I have some rather largish C/C++ projects in my workspace (several thousand files). It already takes very long (~1 Min) to open the workbench and when selecting a project in the navigator it takes (depending on project size) quite as long. During the waiting period the workbench is completely unresponsive. At some point the project selection leads to a crash while waiting for the workbench to become responsive again. The debugger shows the following: 1. NullPointerException: !ENTRY org.eclipse.ui 4 0 2007-05-30 13:03:02.177 !MESSAGE Error occurred during status handling !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.statushandlers.StatusNotificationManager.openStatusDialog(StatusNotificationManager.java:155) at org.eclipse.ui.internal.statushandlers.StatusNotificationManager$2.run(StatusNotificationManager.java:110) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:152) at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:118) at org.eclipse.swt.widgets.Display.syncExec(Display.java:3897) at org.eclipse.ui.internal.statushandlers.StatusNotificationManager.addError(StatusNotificationManager.java:108) at org.eclipse.ui.statushandlers.WorkbenchErrorHandler.handle(WorkbenchErrorHandler.java:50) at org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler.handle(IDEWorkbenchErrorHandler.java:91) at org.eclipse.ui.internal.WorkbenchErrorHandlerProxy.handle(WorkbenchErrorHandlerProxy.java:36) at org.eclipse.ui.statushandlers.StatusManager.handle(StatusManager.java:186) at org.eclipse.ui.statushandlers.StatusManager.handle(StatusManager.java:230) at org.eclipse.ui.statushandlers.StatusManager.handle(StatusManager.java:241) at org.eclipse.ui.application.WorkbenchAdvisor.eventLoopException(WorkbenchAdvisor.java:324) at org.eclipse.ui.internal.ExceptionHandler.handleException(ExceptionHandler.java:62) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2393) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) 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.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) at org.eclipse.equinox.launcher.Main.main(Main.java:1137) 2. It stops in the 'Daemon Thread [Error Reader]' in ProcessClosure$ReaderThread.run, line 73 with an OutOfMemoryException. Afterwards the workbench is completely hung, I can only kill it thus corrupting my workspace :-( | verified fixed | d0ce634 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/StatusNotificationManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-30T18:57:55Z | 2007-05-30T13:00:00Z |
189,896 | Bug 189896 [Commands] handler service snapshot context assertion failed | The snapshot context is filled in with all the sources without taking into account they can be null. It will not accept null values. PW | verified fixed | af1bbb9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerAuthority.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/CommandProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-30T18:34:33Z | 2007-05-30T10:13:20Z |
189,664 | Bug 189664 [QuickAccess] can't find Open Perspective/Show View->Other with Quick Access | 3.3RC2 I can't find either of these "Other..." menu items using the quick access list. Is this because they're nested items? Shouldn't there be a command for these? | verified fixed | cbc6495 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/CommandElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/CommandProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-29T18:46:10Z | 2007-05-29T14:46:40Z |
189,521 | Bug 189521 [QuickAccess] Ctrl+3 popup doesn't handle Home and End keys | 3.3 RC2: If you type Ctrl+3 to open the new commands window, type something, and type Home/End to move the cursor to the beginning/end of string, this is handled by the editor instead of the popup. Unfortunatelly the cursor is not shown, so so can see the effect by testing using Shift+Home/End, and the line on editor will be selected, instead of the popup textbox. Strange to see that is happens on Java editor, but it doesn't on Mylar task editor (perhaps something related to generic text editor itself?). | verified fixed | d17e2ce | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/CommandElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/CommandProvider.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-29T17:25:12Z | 2007-05-28T22:06:40Z |
186,677 | Bug 186677 [PerspectiveBar] Perspective switcher "show text" enables after saving prefs. | 1) Start with a clean install 2) Use pop menu on perspective switcher to "Dock On" -> "Left", and uncheck "Show Text" 3) Open Preferences ([optional?] expand "General" and click on "Appearance" in tree) 4) Click "Ok" in Preferences 5) Notice that text labels are now showing in the perspective switcher. (build:I20070511-0010) | verified fixed | 2b14087 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-29T16:47:29Z | 2007-05-12T11:40:00Z |
189,161 | Bug 189161 [WorkbenchLauncher] Splash javadoc nits | From Susans analysis of the splash API: I took a look at the splash API. Honestly, I don't have a lot of context on the requirements, but I did take enough of a look to pick nits: - the package.html refers to the org.eclipse.ui.splashHandler extension point (singular), but the extension point doc says org.eclipse.ui.splashHandlers - getSplash() - is the only method that doesn't specify whether it is called from the UI thread (I assume it is since it's purpose is to get a shell, but all the other methods tell me specifically) - missing word in javadoc for getBundleProgressMonitor(), shown in red below. * <code>true</code>. Because this property defaults to <code>false</code> * RCP developers must set this property via a * <code>plugin_customization.ini</code> file or by setting the preference - extension point doc nits: - misspelled word "proceedure" in first paragraph - second paragraph "It is possibly" should be "It is possible" - last paragraph (Supplied Implementation) misspelled word "absense" | verified fixed | 811549f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/splash/AbstractSplashHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-29T16:39:08Z | 2007-05-25T16:20:00Z |
189,694 | Bug 189694 ApplicationWindow#run() can hang Eclipse due to Menu#isEnabled | In ApplicationWindow#run() we call Menu#isEnabled to cache our enabled state. This actually crawls all of the children of the menu to determine the state. When the Shell is disabled this will return true and so when the shell is re-enabled all of the menus will be inactive. I will be attaching a Steve approved patch. | verified fixed | 690a6f9 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/window/ApplicationWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-29T16:38:12Z | 2007-05-29T14:46:40Z |
188,808 | Bug 188808 [Preferences] Workbench Preferences dialog cannot filter default preference page | Build ID: 3.3 Steps To Reproduce: 1. Unzip an Eclipse SDk package to somewhere. (Or, clean the exist eclipse configuration directory) 2. Copy the Attached TestFilter_1.0.0.jar to eclipse/plugins folder. 3. Launch Eclipse then Click "Windows" -> "Prefereneces" in order to open the Preferences dialog. 4. You will find the Prefereneces display an empty area and no contents yet. And no default node is selected. 5. But if click any page node from left, show corresponding page. 6. Next time to launch eclipse, all of them are normally. I pasted the two screen-shots, one is correct pictures and another is wrong. More information: | verified fixed | 1e1360a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-29T14:07:31Z | 2007-05-24T04:13:20Z |
187,544 | Bug 187544 [Trim] [Trim] Trim contributions not disabled during editor save | 3.3 M6 During an editor save operation, it disables the window except for the cancel button in the status line. Trim contributions aren't currently covered by that though. E.g. we have a search trim contribution. The user can enter text in here and start a search while an editor save is still going on. | verified fixed | 9837edc | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/layout/TrimLayout.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T19:56:16Z | 2007-05-17T13:53:20Z |
185,386 | Bug 185386 [EditorMgmt] Uses the least recently used perspective when trying to close view that implements ISaveablePart2 | Build ID: M20070212-1330 Steps To Reproduce: I run into an issue with Eclipse 3.2.2 view implementing ISaveablePart2 when there are multiple perspectives. Here's the case: 1 have a view which implements ISavablePart2, which means user will be prompted when the 'X' is clicked and my application has 2 perspectives (called p1 & p2). When the application starts up, it will be loaded into one of the perspective, for now, let say it's p1 and view is created as well. and it gets switched to p2. With p2 as the active perspective, the 'X' on the view is clicked. What happen at this point is a dialog comes up asking user whether to close the view and the perspective gets switched back to p1. After a little investigation i found the following code in EditorManager.saveAll(1147 to 1153): if (part instanceof IViewPart) { Perspective perspective = page .getFirstPerspectiveWithView((IViewPart) part); if (perspective != null) { page.setPerspective(perspective.getDesc()); } } so, according to the snippet above, before the confirmation dialog is pop, it will always switch back to the least recently used perspective. It uses the WorkbechPage.persList.usedList, and this list keeps tracks of recent used perspective, and the last one on the list is the the most recent one and the first one is the least recently used. This is an issue because if user cancels the confirmation, then the perspective remains. if user decides to go with it, it will switch back to p1. In general, user will be confused. More information: | verified fixed | 0effde4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T19:32:38Z | 2007-05-03T16:33:20Z |
176,108 | Bug 176108 Icons not centered in minimized trim stack | N20070301-0010 In a vertically oriented minimized trim stack, the icons aren't centered and are a little too far left. It is easier to see by looking at the little horizontal bar (maybe its just the bar thats not centered?) See screenshot. | verified fixed | 932e441 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/TrimFrame.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T19:09:35Z | 2007-03-01T23:00:00Z |
182,509 | Bug 182509 [Dialogs] [dialogs] Strange selection behaviour in FilteredItemsSelectionDialog | Build ID: I20070323-1616 Steps To Reproduce: 1. Open a FilteredItemsSelectionDialog 2. Make sure that some entries are in the history and 'fillContentProvider' takes some time to return (e.g. by Thread.sleep(5000)) 3. Type into the filter such that at least one, but not all of the history items match and 'fillContentProvider' is called. 4. Select one of the history items. Notice that - it seems that the list containing the element is filtered, but the UI is not updated. - Selecting any history item will either show the selection on an empty line if there are not enough results after filtereing or - The label of the selected item changes on click as if this very entry is updated from the content (which is already filtered) More information: I hope the scenario is more or less clear. Filtering on the history is done on the elements but not reflected in the UI. I would expect that the history is immediately filtered and the UI is updated. On return of 'fillContentProvider' these results become visible in the UI and any selection done in between is kept stable. The call to 'fillContentProvider' has to handle the fact that this operation can be really long-running (several seconds). | verified fixed | dea1e90 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T17:51:09Z | 2007-04-16T07:53:20Z |
188,663 | Bug 188663 [Viewers] Virtual TreeViewer with columns: First and last row have wrong labels | Seen with 3.3 M7 I have a virtual TreeViewer/ILazyTreeContentProvider with multiple columns. Upon setting new input, the first row stays blank with the exception of the first cell. And the last row shows the labels of the first row, with the exception of the first cell. The attached plugin shows the problem: When opening the view, the second column's label is blank on the first row, and the third row's second column shows the label that should be in the first row. Pressing refresh makes the problem go away. Pressing 'New Input' shows the problem again. I did some debugging and here's what I can come up with: When an empty tree is populated, setting an image into the first column on the first row will create a new image list in Tree#imageIndex(Image, int). The call to OS.SendMessage (handle, OS.TVM_SETIMAGELIST, OS.TVSIL_NORMAL, hImageList); somehow causes all following SWT.SetData events to be handled before the first one that was about to set the image into the tree item. The attached SWT snippet shows this clearer (logged on the console). Once the first SetData callback gets control again, ColumnViewer's cached cell already points to the last row, which would explain why the first one stays empty and the last one gets the first row's labels. | verified fixed | 1649e1a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T16:23:34Z | 2007-05-23T14:20:00Z |
188,941 | Bug 188941 [Min/Max] Switching to the R2.1 presentation using the pref dialog ends up with new min/max behavior | null | verified fixed | 5d9d271 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T16:10:29Z | 2007-05-24T15:20:00Z |
178,235 | Bug 178235 [EditorMgmt] DBCS 3.3 - Cannot open file with external program | Product Build#: I20070306 Platform/Version : Windows Vista, 2003, XP Language: T.Chinese Releated Test Case #: ECLIPSE3.3 - M5 OPEN FILES WITH OTHER EDITORS JVM: IBM JRE 5.0 SR1 ===== DEFECT DESCRIPTION ===== From Package Explorer view, we failed to open a java file with external program such as notepad or iexplore. ===== STEPS TO RECREATE ===== 1. From Package Explorer view, select a file, and Open With > Other... from the context menu 2. select External Programs radio button 3. Click Browse.. buttom and select Text File(notepad.exe) program, then click OK 4. The error will display "Unable to open editor, unknown editor ID: <XXX>" ===== EXPECTED RESULT ===== notepad.exe can be specified and the file can be opened | closed fixed | 5c6a2b9 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/OpenWithMenu.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T15:30:26Z | 2007-03-20T11:26:40Z |
188,386 | Bug 188386 [QuickAccess] CTRL-3 and Right-to-left don't play well | When in right-to-left mode, the window that opens when CTRL-3 is pressed does not display test properly. I will attach a screen shot. | verified fixed | 9eb44d2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T15:24:00Z | 2007-05-22T16:06:40Z |
185,899 | Bug 185899 DBCS3.3:CheatSheetHelpMenuAction has no handler | I guess this issue is a locale common on Linux. All of Command invoking from quick access will pop up error dialog Platform: RHEL5, SLES10 Driver: M7 JVM :IBM JRE5 SR4 Steps to recreate 1- Ctrl + 3 to get the quick access 2- select "CheatSheet..." from Commands Result Error dialog pop up. Here is the error stack. eclipse.buildId=I20070503-1400 java.fullversion=J2RE 1.5.0 IBM J9 2.3 Linux x86-32 j9vmxi3223ifx-20070323 (JIT enabled) J9VM - 20070322_12058_lHdSMR JIT - 20070109_1805ifx3_r8 GC - WASIFIX_2007 BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=ja_JP Framework arguments: -startup /work/I20070504/eclipse/plugins/org.eclipse.equinox.launcher_1.0.0.v20070502.jar Command-line arguments: -os linux -ws gtk -arch x86 -startup /work/I20070504/eclipse/plugins/org.eclipse.equinox.launcher_1.0.0.v20070502.jar -consolelog Error Tue May 08 15:00:53 JST 2007 There is no handler to execute for command AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction org.eclipse.core.commands.NotHandledException: There is no handler to execute for command AUTOGEN:::org.eclipse.ui.cheatsheets.actionSet/org.eclipse.ui.cheatsheets.actions.CheatSheetHelpMenuAction at org.eclipse.core.commands.Command.executeWithChecks(Command.java:484) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:426) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:165) at org.eclipse.ui.internal.quickaccess.CommandElement.execute(CommandElement.java:47) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.handleElementSelected(QuickAccessDialog.java:699) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.handleSelection(QuickAccessDialog.java:773) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog.access$1(QuickAccessDialog.java:763) at org.eclipse.ui.internal.quickaccess.QuickAccessDialog$9.widgetDefaultSelected(QuickAccessDialog.java:321) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:112) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3320) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2972) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2329) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:615) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) | verified fixed | b91a713 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T15:09:17Z | 2007-05-08T07:40:00Z |
186,370 | Bug 186370 [LinkedResources] Cannot create linked output folder pointing to path variable | Build: I20070508-0800 1) Create a new Java project 2) Create a path variable FOO pointing to some existing directory that has a sub-directory (I used c:\temp) 3) Right click on project > Properties > Java build path 4) Click the Browse button at the bottom to select a new output location 5) Select the project and click "Create New Folder" 6) Enter "bin2" as the name, and click "Advanced" 7) Select "Link to folder in the file system" 8) Click "Variables" 9) Select FOO, and click "Extend" 10) Select a sub-directory, and click "OK" -> You end up back in the new folder dialog, and there is a warning message saying "Link target does not exist". This is not incorrect. 11) Click "OK" several times to close all the dialogs. 12) Open the .project file, and notice that it has not used the path variable in the link. The location of the linked folder bin2 in my case was "D:/FOO/location". | verified fixed | 6009daa | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T14:55:02Z | 2007-05-10T15:13:20Z |
188,076 | Bug 188076 [KeyBindings] Keys pref page: switching scheme not applied | null | verified fixed | c41afe3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-24T11:57:19Z | 2007-05-21T12:20:00Z |
183,143 | Bug 183143 [Dialogs] FilteredItemsSelectionDialog should filter history before search results are available | I20070418-1012 The FilteredItemsSelectionDialog should filter history items before search results are available. When I open the Open Type dialog and type a pattern that matches history items, I currently have to wait until the search for workspace matches is done. In the old Open Type Dialog, history items were filtered immediately. This is a noticeable performance regression for the Open Type dialog and should be fixed for 3.3. | verified fixed | 74faab2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T18:35:40Z | 2007-04-19T08:06:40Z |
188,357 | Bug 188357 [EFS] Export to tar not working with pluggable filesystem | Build ID: I20070323-1616 Steps To Reproduce: 1. install a EFS I believe this is an example at /cvsroot/org.eclipse/www/eclipse/platform-ui/plugins/org.eclipse.ui.examples.filesystem 2. create a linked folder in the workspace 3. select to export / choose export to tar 4. each file selected to be exported fails More information: Failure point appears to be in org.eclipse.ui.internal.wizards.datatransfer.TarFileExporter line 74 IPath location = contents.getLocation(); Needs to be modified to use getLocationUri() | verified fixed | 54a4a8f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFileExporter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T18:10:17Z | 2007-05-22T16:06:40Z |
128,927 | Bug 128927 [FastView] Problem occurs when "weclome" view be put into "Fast View" bar | Whenever I put the "Welcome" view into "Fast View" bar, Eclipse will report an error information "Could not restore workbench layout" when it restarts. And "Welcome" view will automatically popuped from "Fast View" after restarting. | verified fixed | 6d17062 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T16:53:44Z | 2006-02-22T03:46:40Z |
188,588 | Bug 188588 [KeyBindings] [KeyBindings] missing keyboard shortcut for opening a view in my RCP app | null | verified fixed | a7d5742 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/CommandContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T16:43:38Z | 2007-05-23T08:46:40Z |
188,593 | Bug 188593 [KeyBindings] Conflicts with Emacs keybindings scheme in zh locale for same command | null | verified fixed | a1d7818 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T16:10:19Z | 2007-05-23T08:46:40Z |
182,308 | Bug 182308 [Contributions] [Doc] CompoundContributionItem's getContributionItems() method has no javadocs | getContributionItems() is an abstract protected method that people are supposed to subclass. Unfortunately, there are no javadocs to state what are some valid return values. Looking at the code in CompoundContributionItem itself, returning a null would cause an NPE in the fill(Menu, int) method. This should be noted. | verified fixed | 3ddef3f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/CompoundContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T14:38:06Z | 2007-04-13T13:13:20Z |
140,799 | Bug 140799 [Keybindings] Keyboard shortcuts don't work if a view is detached | While the focus is in the Display view the shortcuts for Inspect, Display and Execute don't work if the Display is a detached view. The content assist keyboard shortcut works, however. I don't get any ErrorLog entries. Using the context menu (which shows the non-functional shortcuts) works fine. A detached Debug view behaves likewise - the keyboard shortcut for "Use step filters" doesn't work whereas the ones for "copy stack" and "find..." do. I am using 3.2RC3, and the 3.2 versions I have tried (M5, M6, RC1a, RC3) all expose this behaviour. Using 3.1 it works fine. | verified fixed | 375f4a5 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T14:34:06Z | 2006-05-09T15:53:20Z |
188,467 | Bug 188467 [GlobalActions] CyclePerspectiveHandler leaks one image per perspective per switch | Build: I20070522-0010 Each time you hit Ctrl+F8 to switch perspectives, it leaks one image per open perspective (the perspective icon). The CyclePerspectiveHandler#addItems method creates a PerspectiveLabelProvider, but never disposes it. This is a major leak - I typically have three or more perspectives open, and toggle between them with Ctrl+F8 quite frequently. Sleak trace: java.lang.Error at java.lang.Throwable.<init>(Throwable.java:56) at org.eclipse.swt.graphics.Device.new_Object(Device.java:787) at org.eclipse.swt.graphics.Image.<init>(Image.java:491) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:289) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.ui.model.PerspectiveLabelProvider.getImage(PerspectiveLabelProvider.java:83) at org.eclipse.ui.internal.CyclePerspectiveHandler.addItems(CyclePerspectiveHandler.java:48) at org.eclipse.ui.internal.CycleBaseHandler.openDialog(CycleBaseHandler.java:130) at org.eclipse.ui.internal.CycleBaseHandler.execute(CycleBaseHandler.java:107) | verified fixed | dcd577d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CyclePerspectiveHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T14:31:32Z | 2007-05-22T21:40:00Z |
186,801 | Bug 186801 [Min/Max] Un-detaching a View restores to maximized perspective | Open the Jave Perspective, detach the Outline view Maximize the editor area un-detach the Outline view The stack containing the Outline view gets restored to the presentation but the EA still has the maximized state. I'll mark this for RC1 pending review (I don't see it as particularly serious). | verified fixed | 7513fab | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T14:07:38Z | 2007-05-14T13:40:00Z |
187,069 | Bug 187069 [Min/Max] Adding a legacy fast view with a maximized part puts the view in the wrong stack | New WS, java perspective Maximize the editor area Click on the legacy FVB's button and choose 'ErrorLog' It appears in the bottom stack's trim, not the legacy FVB Certainly an issue introduced when fixing the 'showView' for edge conditions. | verified fixed | 8f27a59 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/ShowViewHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowViewAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T13:39:36Z | 2007-05-15T17:26:40Z |
187,632 | Bug 187632 [Trim] [Min/Max] Closing the last perspective leaves minimized editor stack in the trim | [RC1 candidate build] 1. minimize the editor area 2. Close all perspectives actual: minimized editor area stays in the trim expected: the minimized editor area should not be there | verified fixed | eb01089 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T13:33:16Z | 2007-05-17T19:26:40Z |
185,067 | Bug 185067 [KeyBindings] New Keys pref page: cannot sort 'User' column | I20070502-0010. 'User' column cannot be sorted but would be important in order to see my custom settings all at once. | verified fixed | 3dbc2ce | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-23T12:57:40Z | 2007-05-02T10:00:00Z |
187,890 | Bug 187890 [Progress] [Decorators] Systems with many jobs can delay decoration >10 seconds | 3.3 M6 Certain decorations on resources take a long time to show up in our product. People have reported them taking >10 seconds, and occasionally blocking JDT error/warning ticks as well. The slowness is due to some interactions between how the Workbench's decoration scheduler schedules UI notifications of available decorations, and how the the job manager assigns default delays to jobs. Basically, when a bunch of decorations are available, the notification job notifies all listeners (usually the label providers in the different views), but does this piecemeal, rescheduling itself between each listener to avoid hogging the CPU. But the job scheduler delays DECORATE priority jobs by 100ms times the number of running jobs. So if you have 5 running jobs and 10 listeners, it can take 5 seconds to get to the last listener. And that's on a good day. It's not uncommon to have twice that many listeners (one of our views uses many). And there can be many jobs running in our product too, in addition to the usual ones in the Eclipse IDE. Back link to our bug DB: #20199 | verified fixed | bcc969a | ["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 | 2007-05-23T12:45:42Z | 2007-05-18T20:26:40Z |
175,181 | Bug 175181 NavigatorSaveablesServices NPEs on shutdown | The following exception was encountered on shutdown the applicaiton. It happend on Linux(SuSE Linux Enterprise 9, PatchLevel: 3). It's very similar to defect: 142785. !ENTRY org.eclipse.osgi 4 0 2006-05-19 11:21:38.993 !MESSAGE An unexpected runtime error has occurred. !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.computeSaveables(NavigatorSaveablesService.java:216) at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.recomputeSaveablesAndNotify(NavigatorSaveablesService.java:374) at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.handleBundleStopped(NavigatorSaveablesService.java:457) at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.bundleChanged(NavigatorSaveablesService.java:100) at org.eclipse.ui.internal.navigator.NavigatorPlugin$1.bundleChanged(NavigatorPlugin.java:35) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:1206) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:189) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:291) 11 | verified fixed | 946481a | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorSaveablesService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-22T20:37:38Z | 2007-02-22T21:33:20Z |
172,485 | Bug 172485 o.e.u.ide action sets need to be converted to commands and moved to ide.application | null | verified fixed | a99adca | ["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginActionBuilder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-22T17:22:07Z | 2007-02-01T14:26:40Z |
185,107 | Bug 185107 [Themes] [europa] appearance preference page corrupted after switch wks | Problem found using Version: 3.3.0 Build id: I20070323-1616 (3.3.M6) with europa install. NOT reproduced with a base 3.3M6 build. Steps to reproduce: - start Eclipse against default wks - go to Window --> Preferences --> Appearance - modify defaults and position the Perspective switcher to the top left position - apply changes and restart the workbench against the same wks - Select File --> Switch Workspace --> Other - enter an alternate wks location, - expand the Copy settings section and select (check) Workbench Layout and Working Sets - click OK button - once restarted, close the welcome page --> note that the Perspective switcher is back to the default position (whereas other settings seems to have been copied ok) In order to position the Perspective switcher to the top left position, go to Window --> Preferences --> Appearance --> you get an error message that claims that current preference page contains invalid value --> an IllegalArgumentException is displayed in the console (to be attached files) Still did not find any workaround to position the Perspective switcher to the top left position (clear worksapce or clear then re-install europa config) | verified fixed | 8911082 | ["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 | 2007-05-22T16:52:52Z | 2007-05-02T12:46:40Z |
178,284 | Bug 178284 [DynamicUI] [Contributions] Loading/unloading action set leaves handlers and keybindings behind | Using I20070320-0010: After a bundle is uninstalled the large number of warnings like this are generated: Conflict for 'AUTOGEN:::org.eclipse.team.ui.UnmanagedFileContributions/org.eclipse.team.ui.replaceLocalHistory': HandlerActivation(commandId=AUTOGEN:::org.eclipse.team.ui.UnmanagedFileContributions/org.eclipse.team.ui.replaceLocalHistory,handler=ActionDelegateHandlerProxy(null,org.eclipse.team.internal.ui.history.ReplaceLocalHistory),expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@3aabc1),sourcePriority=16384): HandlerActivation(commandId=AUTOGEN:::org.eclipse.team.ui.UnmanagedFileContributions/org.eclipse.team.ui.replaceLocalHistory,handler=ActionDelegateHandlerProxy(null,org.eclipse.team.internal.ui.history.ReplaceLocalHistory),expression=WorkbenchWindowExpression(org.eclipse.ui.internal.WorkbenchWindow@3aabc1),sourcePriority=16384) With no stack traces attached Attempt to right-click on those warnings causes "Unhandled event loop exception", stack will be attached. Steps to reproduce: 1. Use a new plugin-in wizard to create a plugin-in project that contributes a menu item (Use "Hellow World" template) 2. Create a new launch configuration under "Eclipse Application", set program arguments to "-clean -console" 3. Debug this launch configuration. In the console of the host Eclipse type "ss" and note the ID of the plugin you created in the step 1. 4. In the console of the host Eclipse type "uninstall <id_from_step_3>" | verified fixed | e24dcd0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java", "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 | 2007-05-22T16:49:59Z | 2007-03-20T14:13:20Z |
187,812 | Bug 187812 [KeyBindings] IBindingService.getActiveBindingsFor(ParameterizedCommand) does not work | I20070517-1700. IBindingService.getActiveBindingsFor(ParameterizedCommand) does not work i.e. returns an empty array. Test Case: 1. in org.eclipse.jdt.internal.ui.preferences.CodeAssistAdvancedConfigurationBlock change getKeyboardShortcut(...) to use getActiveBindingsFor 2. start target 3. define a key binding for e.g. the 4. go to Java > Editor > Content Assist > Advanced observe: the key binding is not shown | verified fixed | 79b9981 | ["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/ParameterizedCommand.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-22T16:35:29Z | 2007-05-18T14:53:20Z |
174,378 | Bug 174378 [ViewMgmt] [Contributions] activating the view menu does not activate the view | The title pretty much says it all, when you activate the view menu in a view (not the popup) the view does not get activated. This is particularly problematic for view actions that depend on the active part (which might not be the view when the menu is opened), such as the variables view. Also using the new menu commands, the ExecutionEvent can have the wrong active part in it, which causes all manner of problems for view commands that need a reference to the view. To reproduce: Open the view menu in a view that currently is not active Expected: The view gets activated and the menu opens, much like right-clicking in the view Happens: Nothing, the menu opens | verified fixed | 1a7e44e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/TabbedStackPresentation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-22T16:31:01Z | 2007-02-15T22:53:20Z |
187,594 | Bug 187594 Compiler warnings in I20070517-0010 | 1. WARNING in /Eclipse RCP Tests/org/eclipse/ui/tests/rcp/WorkbenchWindowConfigurerTest.java (at line 189) ActionBarAdvisor advisor = new ActionBarAdvisor(configurer) { The local variable advisor is never read 1. WARNING in /src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java (at line 38) import org.eclipse.jface.dialogs.Dialog; The import org.eclipse.jface.dialogs.Dialog is never used 2. WARNING in /src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java (at line 46) import org.eclipse.jface.resource.ImageRegistry; The import org.eclipse.jface.resource.ImageRegistry is never used 3. WARNING in /src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java (at line 47) import org.eclipse.jface.resource.JFaceResources; The import org.eclipse.jface.resource.JFaceResources is never used | verified fixed | 8f80440 | ["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java", "tests/org.eclipse.ui.tests.rcp/Eclipse", "RCP", "Tests/org/eclipse/ui/tests/rcp/WorkbenchWindowConfigurerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-17T16:46:19Z | 2007-05-17T16:40:00Z |
187,497 | Bug 187497 [StatusHandling] NullPointerException in StatusAdapterHelper#clear() | NullPointerException in StatusAdapterHelper#clear() | verified fixed | 1c0b325 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/StatusAdapterHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-17T12:24:34Z | 2007-05-17T08:20:00Z |
153,933 | Bug 153933 [Dialogs] [RCP] Dialog.DLG_IMG_HELP not available in RCP apps | null | verified fixed | affd1b7 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/JFaceResources.java", "bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEInternalWorkbenchImages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-17T03:15:52Z | 2006-08-15T16:40:00Z |
187,189 | Bug 187189 [ViewMgmt] TreeViewer disposes of widget when the third item in the tree is deleted | Build ID: 3.3.0M7 Steps To Reproduce: 1.Run attached sample code 2.Use button to delete tree items from bottom until exception is thrown. 3. More information: M6 does not exhibit this behavior. Exception in thread "main" org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3547) at org.eclipse.swt.SWT.error(SWT.java:3465) at org.eclipse.swt.SWT.error(SWT.java:3436) at org.eclipse.swt.widgets.Widget.error(Widget.java:432) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:325) at org.eclipse.swt.widgets.TreeItem.getBounds(TreeItem.java:401) at org.eclipse.jface.viewers.TreeViewerRow.getBounds(TreeViewerRow.java:48) at org.eclipse.jface.viewers.ViewerCell.getBounds(ViewerCell.java:83) at org.eclipse.jface.viewers.FocusCellOwnerDrawHighlighter.focusCellChanged(FocusCellOwnerDrawHighlighter.java:147) at org.eclipse.jface.viewers.SWTFocusCellManager.setFocusCell(SWTFocusCellManager.java:151) at org.eclipse.jface.viewers.SWTFocusCellManager.handleSelection(SWTFocusCellManager.java:101) at org.eclipse.jface.viewers.SWTFocusCellManager.access$2(SWTFocusCellManager.java:92) at org.eclipse.jface.viewers.SWTFocusCellManager$1.handleEvent(SWTFocusCellManager.java:126) | verified fixed | 1c7f802 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/SWTFocusCellManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-17T01:20:08Z | 2007-05-16T07:20:00Z |
187,264 | Bug 187264 [DataBinding] "not to be implemented by clients" missing in IConverter Javadoc | I believe the intent of having separate IConverter and Converter is that IConverter should *not* be directly implementable by clients--in order to preserve our ability to evolve the IConverter API should that be necessary. Currently the API contract for IConverter says nothing about this. It needs to--before 3.3. :-) | verified fixed | 717fd8d | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/Converter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/IConverter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-17T01:15:54Z | 2007-05-16T12:53:20Z |
187,200 | Bug 187200 [Viewers] Deleting filtered config doesn't reset filter + errors | I20070516-0010. Deleting a filtered launch config doesn't reset filter and gives error. 1. in the launch config dialog enter a search string so that only one config matches 2. delete that config ==> config still visible and follow up error if I select the parent !ENTRY org.eclipse.debug.ui 4 120 2007-05-16 10:07:48.794 !MESSAGE Error logged from Debug UI: !STACK 1 org.eclipse.debug.core.DebugException: Launch configuration xxx at C:\eclipse\workspaces\Development_3_3\plugins\.metadata\.plugins\org.eclipse.debug.core\.launches\xxx.launch does not exist. at org.eclipse.debug.internal.core.LaunchManager.createDebugException(LaunchManager.java:857) at org.eclipse.debug.internal.core.LaunchManager.getInfo(LaunchManager.java:1305) at org.eclipse.debug.internal.core.LaunchConfiguration.getInfo(LaunchConfiguration.java:394) at org.eclipse.debug.internal.core.LaunchConfiguration.getType(LaunchConfiguration.java:530) at org.eclipse.debug.internal.ui.DefaultLabelProvider.getImageKey(DefaultLabelProvider.java:157) at org.eclipse.debug.internal.ui.DefaultLabelProvider.getImage(DefaultLabelProvider.java:59) at org.eclipse.debug.internal.ui.DelegatingModelPresentation.getDefaultImage(DelegatingModelPresentation.java:201) at org.eclipse.debug.internal.ui.DelegatingModelPresentation.getImage(DelegatingModelPresentation.java:153) at org.eclipse.jface.viewers.WrappedViewerLabelProvider.getImage(WrappedViewerLabelProvider.java:117) at org.eclipse.jface.viewers.WrappedViewerLabelProvider.update(WrappedViewerLabelProvider.java:165) at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:135) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:895) at org.eclipse.jface.viewers.AbstractTreeViewer$UpdateItemSafeRunnable.run(AbstractTreeViewer.java:97) 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:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:193) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:973) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466) 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:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:193) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2023) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem(AbstractTreeViewer.java:806) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run(AbstractTreeViewer.java:781) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:755) at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:615) at org.eclipse.jface.viewers.AbstractTreeViewer.setExpandedState(AbstractTreeViewer.java:2341) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationViewer.getNonFilteredChildCount(LaunchConfigurationViewer.java:194) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationView.updateFilterLabel(LaunchConfigurationView.java:366) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationView.handleConfigurationRemoved(LaunchConfigurationView.java:327) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationView.launchConfigurationRemoved(LaunchConfigurationView.java:311) at org.eclipse.debug.internal.core.LaunchManager$ConfigurationNotifier.run(LaunchManager.java:196) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.debug.internal.core.LaunchManager$ConfigurationNotifier.notify(LaunchManager.java:180) at org.eclipse.debug.internal.core.LaunchManager.launchConfigurationDeleted(LaunchManager.java:2042) at org.eclipse.debug.internal.core.LaunchConfiguration.delete(LaunchConfiguration.java:241) at org.eclipse.debug.internal.ui.launchConfigurations.DeleteLaunchConfigurationAction.performAction(DeleteLaunchConfigurationAction.java:69) at org.eclipse.debug.internal.ui.launchConfigurations.AbstractLaunchConfigurationAction$1.run(AbstractLaunchConfigurationAction.java:103) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.debug.internal.ui.launchConfigurations.AbstractLaunchConfigurationAction.run(AbstractLaunchConfigurationAction.java:106) at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:168) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:443) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3673) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3284) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1133) at org.eclipse.debug.ui.DebugUITools$1.run(DebugUITools.java:387) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:391) at org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:333) at org.eclipse.debug.ui.actions.LaunchAction.runWithEvent(LaunchAction.java:79) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3673) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3284) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2329) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) 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.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) at org.eclipse.equinox.launcher.Main.main(Main.java:1137) !SUBENTRY 1 org.eclipse.debug.core 4 5012 2007-05-16 10:07:48.794 !MESSAGE Launch configuration xxx at C:\eclipse\workspaces\Development_3_3\plugins\.metadata\.plugins\org.eclipse.debug.core\.launches\xxx.launch does not exist. | verified fixed | 84a80a0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/PatternFilter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-16T21:46:50Z | 2007-05-16T07:20:00Z |
182,624 | Bug 182624 [Status Handling] Jobs show up twice when NO_IMMEDIATE_ERROR_PROMPT set | When I create an error job from the progress examples I end up getting two entries. STEPS 1) Load org.eclipse.ui.examples.job 2) Select fail and no prompt 3) Start the job - you will get the red icon in the bottom of the screen 4) Select it - there will be 2 entries If you do the same without selecting no prompt you will get one entry | verified fixed | fc6332f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressAnimationItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/StatusAdapterHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/StatusNotificationManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/StatusManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-16T20:25:12Z | 2007-04-16T19:00:00Z |
186,727 | Bug 186727 [ErrorHandling] NullPointerException when trying to show a Status with OK severity | When trying to show a status instastance that has the severity IStatus.OK, I get an NullPointerException as shown below. IStatus status = new Status( IStatus.OK, // severity Activator.PLUGIN_ID, IStatus.OK, "Message", null ); StatusManager.getManager().handle( status, StatusManager.SHOW ); Produces the following exception: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3547) at org.eclipse.swt.SWT.error(SWT.java:3465) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3650) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3287) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2329) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) at org.eclipse.equinox.launcher.Main.main(Main.java:1137) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.statushandlers.StatusNotificationManager$3.run(StatusNotificationManager.java:134) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) ... 23 more Interestingly, if one changes the severity to IStatus.ERROR the status is handled correctly (e.g. the dialog is shown). BTW, I am not using any custom error handler. | verified fixed | e54a7f2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/statushandlers/StatusNotificationManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchErrorHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-16T19:34:31Z | 2007-05-13T23:46:40Z |
187,318 | Bug 187318 [Wizards] "Import Existing Project" loops forever with cyclic symbolic links | null | verified fixed | e1d5a84 | ["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 | 2007-05-16T19:33:38Z | 2007-05-16T18:26:40Z |
173,049 | Bug 173049 [ErrorHandling] multiple stacked "Internal error" dialogs after OutOfMemoryError | I20070206-0010 - launch Eclipse with: java -showversion -jar plugins\org.eclipse.equinox.launcher_*.jar -data oom -clean -consolelog -console -showlocation - File > Import > Projects from CVS - import org.eclipse.jdt.ui => 4 OutOfMemoryErrors in the log, 3 stacked "Internal error", see screenshot. !ENTRY org.eclipse.core.jobs 4 2 2007-02-06 14:32:25.761 !MESSAGE An internal error occurred during: "Building workspace". !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.ui 4 0 2007-02-06 14:32:25.761 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.core.jobs 4 2 2007-02-06 14:32:52.462 !MESSAGE An internal error occurred during: "Building workspace". !STACK 0 java.lang.OutOfMemoryError: Java heap space !ENTRY org.eclipse.ui 4 0 2007-02-06 14:32:52.478 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.OutOfMemoryError: Java heap space | verified fixed | 2648ae3 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchErrorHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-16T17:39:29Z | 2007-02-06T13:53:20Z |
154,537 | Bug 154537 [Import/Export] NPE in import page | I received NPE (occured just in logs) when tried to import projects from folder with NTFS symlinks. !ENTRY org.eclipse.ui.ide 4 4 2006-08-21 19:54:58.062 !MESSAGE java.lang.reflect.InvocationTargetException !STACK 0 java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:350) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:851) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.updateProjectsList(WizardProjectsImportPage.java:680) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.handleLocationDirectoryButtonPressed(WizardProjectsImportPage.java:970) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage$7.widgetSelected(WizardProjectsImportPage.java:519) 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:3348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.actions.ImportResourcesAction.run(ImportResourcesAction.java:159) at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:168) 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:3348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968) 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(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java: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) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:882) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.access$14(WizardProjectsImportPage.java:870) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage$15.run(WizardProjectsImportPage.java:753) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Root exception: java.lang.NullPointerException at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:882) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.collectProjectFilesFromDirectory(WizardProjectsImportPage.java:896) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage.access$14(WizardProjectsImportPage.java:870) at org.eclipse.ui.internal.wizards.datatransfer.WizardProjectsImportPage$15.run(WizardProjectsImportPage.java:753) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) | verified fixed | 70bc582 | ["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 | 2007-05-16T13:47:57Z | 2006-08-21T14:20:00Z |
137,442 | Bug 137442 [DataBinding] (C)ComboObservableValue should bind to selection index | 3.2M6: I propose to extend (C)ComboObservableValue such that they could bind int.class values for pure selection changes of an otherwise immutable combo content. E.g. swtbinding allows such binding to an index holder and the class would attach as SelectionListener where it asks the combo for its selection index. Maybe the corresponding property should be assigned to SWTProperties.SELECTION_INDEX. Similar arguments could be given for corresponding extensions for SWT-List widgets. | verified fixed | 2b81787 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/SWTObservables.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/CComboSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ComboSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ListSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/SingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/TableObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/TableSingleSelectionObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/SWTObservablesTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/TableObservableValueTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-15T19:52:36Z | 2006-04-19T07:00:00Z |
186,475 | Bug 186475 [ActivityMgmt] The wizard entry is displayed in the New dialog, even if activities extension is specified to hide the wizard entry. | Build ID: 20061106 Steps To Reproduce: The wizard entry is displayed in the New dialog, even if activities extension is specified to hide the wizard entry. Result of debugging it, I think that it is because the method returns local ID instead of plug-in ID in the following method. Plugin : org.eclipse.ui.workbench Folder: /Eclipse UI/org/eclipse/ui/internal/dialogs/ File: WorkbenchWizardNode.java Method: getPluginId More information: | verified fixed | a3a11cf | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardNode.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-15T18:41:20Z | 2007-05-10T23:33:20Z |
186,762 | Bug 186762 [WorkingSets] IWorkingSetManager#createWorkingSetNewWizard(String[]) does not work as speced | I20070514-0010 Spec says: "workingSetIds a list of working set ids which are valid workings sets to be created" Is: But passing in an array of size>1 results in a dialog which does allow to create any working set type, not only the requested one. See implementation in WorkingSetNewWizard: if (descriptors.length > 1) { page = workingSetTypePage = new WorkingSetTypePage(); } else { editPageId = descriptors[0].getId(); page = workingSetEditPage = registry.getWorkingSetPage(editPageId); } Should: Only allow to create working sets which have a type which is element of workingSetIds I will attach a patch... | verified fixed | 6d73cb8 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetNewWizard.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetTypePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-15T18:36:19Z | 2007-05-14T10:53:20Z |
187,046 | Bug 187046 [Min/Max] 'show title' false leads to missing icon in minimized stack | Create a view with a stand-alone, no title view. Maximize the editor area The view's stack moves to the trim but there's no icon displayed. I used the 'with a view' template for my project so I know that there -is- a view image declared... | verified fixed | 531ae5d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-05-15T18:34:19Z | 2007-05-15T17:26:40Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.