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] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
171,319 | Bug 171319 [KeyBindings] IActionDelegate with key binding misses active editor | null | verified fixed | 5d165bd | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ActionDelegateHandlerProxy.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-24T01:51:58Z | 2007-01-22T21:06:40Z |
183,686 | Bug 183686 Parts References Tests give an Error Dialog | null | verified fixed | 6e77b8a | ["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-04-24T00:04:21Z | 2007-04-23T23:13:20Z |
180,363 | Bug 180363 [LinkedResources] No way to create a linked resource based on a variable | Eclipse 3.3M6 1. In shell: mkdir /tmp/test 2. In Eclipse define a path variable TMP pointing to /tmp under Preferences/Workspace/Linked Resources 3. Select a project, click New Folder, Advanced. Check Link to folder in the file system. Type TMP/test, click Finish. The folder gets added to .project file as: <link> <name>test</name> <type>2</type> <location>/tmp/test</location> </link> instead of expected: <link> <name>test</name> <type>2</type> <locationURI>TMP/test</locationURI> </link> This is a regression from Eclipse 3.2. | verified fixed | 193b329 | ["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-04-23T20:47:59Z | 2007-03-31T22:26:40Z |
168,295 | Bug 168295 [Decorators] File icons with more than one Label Decoration get black background | Build ID: I20061214-1445 Steps To Reproduce: 1. In Window > Preferences > General > Appearance > Label Deoorations add "Java Type Indicator" 2. In Window > Preferences > General > Appearance > Label Deoorations add other decoration. (I use the source control software Perforce's label decoration.) 3. View file icons in the package explorer that have both icons simultaneously displayed. The background of the file icon is black instead of white (transparent?). More information: This behavior is new to Eclipse 3.3. I've noticed it at least since 3.3M2. It does not happen in Eclipse 3.2.1. | verified fixed | e1c8dc2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/DecorationImageBuilder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/OverlayCache.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-23T20:21:14Z | 2006-12-16T03:33:20Z |
183,599 | Bug 183599 Navigator tests failing in N20070423-0010 | null | resolved fixed | b24254e | ["bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/WorkingSetRootModeActionGroup.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-23T12:56:50Z | 2007-04-23T12:06:40Z |
173,213 | Bug 173213 [Commands] Show View cannot be executed from the Command Composer | The command composer has an execute function to allow users to check out their commands. While some command won't work from that situation, Show View used to until I changed from workbench.getActiveWorkbenchWindow() to HandlerUtil.getActiveWorkbenchWindow(event). I suspect that being in a dialog is not providing the ACTIVE_WORKBENCH_WINDOW_NAME variable. PW | verified fixed | 3fae1f7 | ["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/HandlerProxy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-22T18:53:18Z | 2007-02-07T01:00:00Z |
178,363 | Bug 178363 Navigate > Next/Previous and Ctrl+,/. don't work any more in Synchronize view | I20070320-0010, was fine in 3.2 Navigate > Next/Previous and Ctrl+,/. don't work any more in the Synchronize view. They are always disabled. | verified fixed | 805cd23 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/SubActionBars.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-22T15:27:52Z | 2007-03-20T17:00:00Z |
138,666 | Bug 138666 [EditorMgmt] provide mechanism for restoring editors without materialization | Currently it seems that editors can only be opened (with or without activation), or get restored via mementos at workbench startup. Mylar, and potentially other tools that need to open more than one editor at once, would benefit from a mechanism to restore editor references identically to how startup does it. Opening a dozen Java editors is unecessarily slow, seems to load the outlines, etc, even when "activate" is set to false. Currently we have: IDE.openEditor(activePage, (IFile) resource, false); What I'm asking for is something like: IDE.openEditors(IWorkbenchPage page, IFile[] files) If no editor was active this would probably want to active the editor for the first file in the list, or could take a boolean to specify if that should happen. It might make sense to try this out somewhere internal before moving it to IDE, but off-hand it seems seperate from the more complicated memento support for restoring editors. | verified fixed | c36564a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-21T01:49:07Z | 2006-04-26T16:46:40Z |
182,898 | Bug 182898 [KeyBindings] IAE trying to open Keys (Experimental) preference page | I20070417-0800 Just tried to open Keys (Experimental) preference page. java.lang.IllegalArgumentException at sun.text.normalizer.ReplaceableUCharacterIterator.<init>(ReplaceableUCharacterIterator.java:42) at sun.text.normalizer.UCharacterIterator.getInstance(UCharacterIterator.java:66) at sun.text.normalizer.NormalizerBase.setText(NormalizerBase.java:985) at java.text.CollationElementIterator.setText(CollationElementIterator.java:480) at java.text.RuleBasedCollator.compare(RuleBasedCollator.java:348) at java.text.Collator.compare(Collator.java:310) at org.eclipse.ui.internal.keys.NewKeysPreferencePage$BindingComparator.compare(NewKeysPreferencePage.java:610) at org.eclipse.jface.viewers.ViewerComparator$1.compare(ViewerComparator.java:187) at java.util.Arrays.mergeSort(Arrays.java:1270) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1281) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1281) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.mergeSort(Arrays.java:1282) at java.util.Arrays.sort(Arrays.java:1210) at org.eclipse.jface.viewers.ViewerComparator.sort(ViewerComparator.java:185) at org.eclipse.jface.viewers.AbstractTreeViewer.getSortedChildren(AbstractTreeViewer.java:603) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run(AbstractTreeViewer.java:774) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java:751) at org.eclipse.jface.viewers.TreeViewer.createChildren(TreeViewer.java:495) at org.eclipse.jface.viewers.AbstractTreeViewer.internalInitializeTree(AbstractTreeViewer.java:1420) at org.eclipse.jface.viewers.TreeViewer.internalInitializeTree(TreeViewer.java:674) at org.eclipse.jface.viewers.AbstractTreeViewer$5.run(AbstractTreeViewer.java:1407) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1333) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged(AbstractTreeViewer.java:1396) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:251) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1624) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.updateTree(NewKeysPreferencePage.java:1895) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.update(NewKeysPreferencePage.java:1677) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.selectSchemeCombo(NewKeysPreferencePage.java:1596) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.access$7(NewKeysPreferencePage.java:1586) at org.eclipse.ui.internal.keys.NewKeysPreferencePage$4.selectionChanged(NewKeysPreferencePage.java:1133) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:162) 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:45) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:187) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:160) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:2058) at org.eclipse.jface.viewers.StructuredViewer.setSelection(StructuredViewer.java:1659) at org.eclipse.jface.viewers.Viewer.setSelection(Viewer.java:392) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.setScheme(NewKeysPreferencePage.java:1669) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.fill(NewKeysPreferencePage.java:1369) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.createContents(NewKeysPreferencePage.java:944) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:233) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1438) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1195) 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:45) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:187) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1189) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:433) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:694) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:842) 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:45) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:187) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:840) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1153) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1173) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:250) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:244) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:418) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3650) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3287) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) 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:101) 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:359) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:174) 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:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:475) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:415) at org.eclipse.equinox.launcher.Main.run(Main.java:1140) at org.eclipse.equinox.launcher.Main.main(Main.java:1115) | verified fixed | 126d984 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferenceMessages.java", "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-04-20T18:29:50Z | 2007-04-18T09:53:20Z |
180,503 | Bug 180503 [Contributions] Updating UIElement from Command Handler not working | I'm seeing inconsistent behavior with the updateElement(...) method provided by IElementUpdater when trying to manipulate a toolbar item with a "toggle" state. When the toolbar item is clicked by the user and put in a "checked" (depressed) state, the CommandContributionItem.setChecked method indicates that the checkedState member variable is stored as false. This causes any calls to UIElement.setChecked(false) to be silently ignored, and the toolbar item remains in a checked state. Steps to reproduce: I added the following command to a simple RCP application with a view application: <extension point="org.eclipse.ui.commands"> <command defaultHandler="demo.DemoHandler" id="demo.command" name="Demo"> </command> </extension> The Handler code looks like: public class DemoHandler extends AbstractHandler implements IElementUpdater { @Override public Object execute(ExecutionEvent event) throws ExecutionException { IWorkbenchWindow window = HandlerUtil.getActiveWorkbenchWindowChecked(event); ICommandService service = (ICommandService) window.getService(ICommandService.class); service.refreshElements(event.getCommand().getId(), null); return null; } public void updateElement(UIElement element, Map parameters) { element.setChecked(false); } } The menu extension is as follows: <extension point="org.eclipse.ui.menus"> <menuContribution locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions"> <toolbar id="main"> <command commandId="demo.command" icon="icons/alt_window_16.gif" style="toggle"> </command> </toolbar> </menuContribution> </extension> | verified fixed | de638d9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PopupMenuExtender.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerAuthority.java", "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-04-20T16:35:31Z | 2007-04-02T16:06:40Z |
182,402 | Bug 182402 [JFace] FontRegistry.defaultFontRecord() leaks a Font | FontRegistry.defaultFontRecord(), creates a Font, uses that Font's FontData to create a FontRecord (which creates a new Font with the FontData), but never disposes the original Font once the FontRecord has been created. | verified fixed | 6ba7fa5 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/FontRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-19T19:06:25Z | 2007-04-13T21:33:20Z |
183,167 | Bug 183167 [ErrorHandling] Assertion problem in testWizardWithNoDefaultContructor during N20070419-0010 tests | In UiTestSuite -> testWizardWithNoDefaultContructor expected:<Plug-in [org.eclipse.ui.tests was unable to load class org.eclipse.ui.tests.statushandlers.wizards.FaultyExportWizard].> but was:<Plug-in ["org.eclipse.ui.tests" was unable to instantiate class "org.eclipse.ui.tests.statushandlers.wizards.FaultyExportWizard"].> junit.framework.ComparisonFailure: expected:<Plug-in [org.eclipse.ui.tests was unable to load class org.eclipse.ui.tests.statushandlers.wizards.FaultyExportWizard].> but was:<Plug-in ["org.eclipse.ui.tests" was unable to instantiate class "org.eclipse.ui.tests.statushandlers.wizards.FaultyExportWizard"].> at org.eclipse.ui.tests.statushandlers.WizardsStatusHandlingTestCase.assertStatusAdapter(WizardsStatusHandlingTestCase.java:125) at org.eclipse.ui.tests.statushandlers.WizardsStatusHandlingTestCase.testWizardWithNoDefaultContructor(WizardsStatusHandlingTestCase.java:111) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:332) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:202) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:195) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3264) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2951) 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:101) at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:138) at org.eclipse.test.UITestApplication.run(UITestApplication.java:60) at org.eclipse.test.UITestApplication.start(UITestApplication.java:210) 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:361) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:478) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:417) at org.eclipse.equinox.launcher.Main.run(Main.java:1143) at org.eclipse.equinox.launcher.Main.main(Main.java:1118) at org.eclipse.core.launcher.Main.main(Main.java:24) | verified fixed | 2946216 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/WizardsStatusHandlingTestCase.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-19T16:46:33Z | 2007-04-19T13:40:00Z |
183,036 | Bug 183036 Need to move HighContrast check out of the PreferenceInitializer | null | verified fixed | 631030f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/WorkbenchThemeManager.java", "bundles/org.eclipse.ui/src/org/eclipse/ui/internal/UIPreferenceInitializer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-19T15:24:42Z | 2007-04-18T18:13:20Z |
182,971 | Bug 182971 [Commands] Error in Bug73756Test#testUndefinedCommandIsActiveLogged | null | verified fixed | d4799b9 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/commands/Bug73756Test.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-19T12:01:59Z | 2007-04-18T15:26:40Z |
187,255 | Bug 187255 WSDL should not provide Eclipse-BuddyPolicy: registered | I do not see any use of this, and can not imagine how, even in theory, it would be needed. So, suggest we remove it to avoid confusion. | closed fixed | a362bb8 | ["examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet004DataBindingContextErrorLabel.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-19T02:43:33Z | 2007-05-16T12:53:20Z |
182,812 | Bug 182812 [Contributions] Lots of IllegalArgumentExceptions from CommandContributionItem | I was getting lots of exceptions about a disposed image. I will attach a patch that fixed the problem. | verified fixed | d5d7d17 | ["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-04-19T01:49:34Z | 2007-04-17T20:00:00Z |
176,525 | Bug 176525 Cleartext proxy password shown in Help->About->Configuration Details | Build ID: M20060921-0945 Steps To Reproduce: 1. Windows -> Preferences -> Internet -> Proxy Settings 2. Click "Enable proxy auth" 3. Enter name & password 4. Hit 'OK' then goto Help -> About -> Configuration Details 5. Scroll down until you see the following lines: http.proxyHost= http.proxyPassword= http.proxyPort=8080 http.proxySet=true http.proxyUserName= The password will be listed here in plain text. More information: On networks using authenticated proxies, this allows anyone to easily see your name/password if you leave your desk. It should be displayed using a masking character(*). I've only checked this on WinXP | resolved fixed | 98e28ff | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/about/ConfigurationLogDefaultSection.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-18T20:17:49Z | 2007-03-06T19:40:00Z |
183,034 | Bug 183034 [DataBinding] Content providers should support AbstractTableViewer | Observable(List|Set)ContentProvider should check for AbstractTableViewer instead of TableViewer, so that it may be used with non-standard Table widgets. | verified fixed | c2c79df | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ObservableListContentProvider.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ObservableSetContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-18T19:51:07Z | 2007-04-18T18:13:20Z |
180,205 | Bug 180205 [Progress] Progress view shows two entries for same job | I20070327-0800 * Start workbench * Select projects and "Team > synchronize with repository" (I selected all debug projects in this case) * Perspective automatically switches to team * Progress view was in foreground, and shows two jobs for the same "synch" job * Pressing "Remove all finished operations" button on progress view removes one of the jobs Screen shots to be attached. | verified fixed | 75faccb | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/GroupInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-18T19:43:43Z | 2007-03-30T15:53:20Z |
180,674 | Bug 180674 [Presentations] Many colors allocated over and over again when opening same editor | Build 3.3M6 This is not a leak. Using SWT sleak tool, I noticed some colour allocations which I was wondering whether they were intentional. - Basically, I have an editor open already (any unit will do) which has focus. - Use 'ctrl-shift-T' to open OpenType dialog - Type in the same unit name to re-open on the same file. The sleak tool shows that even though no new editor, still 23 color objects are being allocated (not a leak). Looking at the trace below, they seem to be created to refresh the CTab (due to editor focus change between editor and openType dialog). Is this intentional ? Feels like much ado for nothing. ---------------------- java.lang.Error at org.eclipse.swt.graphics.Device.new_Object(Device.java:786) at org.eclipse.swt.graphics.Color.<init>(Color.java:80) at org.eclipse.swt.custom.CTabFolder.allocSelectionHighlightGradientColors(CTabFolder.java:3447) at org.eclipse.swt.custom.CTabFolder.setSelectionBackground(CTabFolder.java:3353) at org.eclipse.ui.internal.presentations.r33.PaneFolder.setSelectionBackground(PaneFolder.java:740) at org.eclipse.ui.internal.presentations.r33.DefaultTabFolder.updateColors(DefaultTabFolder.java:490) at org.eclipse.ui.internal.presentations.r33.DefaultTabFolder.setActive(DefaultTabFolder.java:437) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.setActive(TabbedStackPresentation.java:299) at org.eclipse.ui.internal.DefaultStackPresentationSite.setActive(DefaultStackPresentationSite.java:55) at org.eclipse.ui.internal.PartStack.setActive(PartStack.java:1137) at org.eclipse.ui.internal.ViewPane.setActive(ViewPane.java:380) at org.eclipse.ui.internal.ViewPane.showFocus(ViewPane.java:389) at org.eclipse.ui.internal.WorkbenchPage$3.run(WorkbenchPage.java:598) 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.WorkbenchPage.activatePart(WorkbenchPage.java:591) at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3263) at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:2810) at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:265) at org.eclipse.ui.internal.PartPane.handleEvent(PartPane.java:229) 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:943) at org.eclipse.swt.widgets.Shell.setActiveControl(Shell.java:1272) at org.eclipse.swt.widgets.Shell.WM_MOUSEACTIVATE(Shell.java:2014) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3711) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1554) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1752) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2221) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3758) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2221) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3758) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2221) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3758) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2221) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3758) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2221) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java:77) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3758) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:2140) at org.eclipse.swt.widgets.Button.callWindowProc(Button.java:327) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3758) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4355) at org.eclipse.swt.internal.win32.OS.PeekMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.PeekMessage(OS.java:2730) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3279) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2337) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2301) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2176) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:463) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:458) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:146) 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:356) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:171) 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:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:476) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416) at org.eclipse.equinox.launcher.Main.run(Main.java:1141) at org.eclipse.equinox.launcher.Main.main(Main.java:1116) | verified fixed | bc7088c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IWorkbenchThemeConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultThemeListener.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/r33/DefaultThemeListener.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/LightColorFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-18T19:06:00Z | 2007-04-03T11:33:20Z |
182,926 | Bug 182926 Build N20070418-0010 Compile errors in build | 1. ERROR in /Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/WizardsStatusHandlingTestCase.java (at line 111) assertStatusAdapter(TestStatusHandler.getLastHandledStatusAdapter()); TestStatusHandler cannot be resolved 2. ERROR in /Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/WizardsStatusHandlingTestCase.java (at line 112) assertEquals(TestStatusHandler.getLastHandledStyle(), TestStatusHandler cannot be resolved | verified fixed | 6533be3 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/UiTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/TestStatusHandler.java", "tests/org.eclipse.ui.tests/Status", "Handling", "Test", "Bed/org/eclipse/ui/tests/statushandlers/TestStatusHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-18T12:02:52Z | 2007-04-18T12:40:00Z |
182,780 | Bug 182780 [DataBinding] Default a converter for IStatus to String | The converter used to display an IStatus uses toString(). This outputs a fairly ugly status message. We should create a default converter and use this in UpdateValueStrategy to return just the message of the status. | verified fixed | 27019d2 | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/AggregateValidationStatus.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/UpdateStrategy.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StatusToStringConverter.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/AggregateValidationStatusTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/UpdateStrategyTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StatusToStringConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-18T02:30:48Z | 2007-04-17T17:13:20Z |
182,651 | Bug 182651 [FastView] WorkbenchPage.isPageZoomed class cast error | In plugin org.eclipse.ui.workbench, the function WorkbenchPage.isPageZoomed contains the code: for (int j = 0; j < editors.length && !zoomed; j++) { if (editors[j] instanceof EditorStack) { zoomed = ((EditorStack)kids[i]).getState() == IStackPresentationSite.STATE_MAXIMIZED; } } The line of code inside the "if" statement should be: zoomed = ((EditorStack)editors[j]).getState() == IStackPresentationSite.STATE_MAXIMIZED; This seems to be a simple typo error, as the "if" statement and "for" loop make no sense otherwise. | verified fixed | 4833382 | ["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-04-17T14:53:15Z | 2007-04-17T00:33:20Z |
180,831 | Bug 180831 [Forms] Crash during drawBackground when in advanced/antialiased mode | 3.3 M5 Jared is seeing one of our forms-based editors crashing the workbench. He says: (This happens) almost every time I try to save. This happens whether I'm creating a new stream or trying to edit an existing stream (by adding a new component). I get one of two similar crashes. Either the workbench hangs and I get the following printed to my system console: Xlib: unexpected async reply (sequence 0xadd25)! or the workbench crashes with the attached core file. One of the times that the workbench locked up, I dumped the threads which showed the UI thread blocked as follows. This looks similar to the stack that's dumped to the core file: "main" prio=1 tid=0x0805c3d0 nid=0x507c waiting for monitor entry [0xbff6a000..0xbff6c1f8] at org.eclipse.swt.internal.cairo.Cairo.cairo_xlib_surface_create(Native Method) - waiting to lock <0xa38e2070> (a java.lang.Class) at org.eclipse.swt.graphics.GC.initCairo(GC.java:2657) at org.eclipse.swt.graphics.GC.setAdvanced(GC.java:2754) at org.eclipse.ui.internal.forms.widgets.FormUtil.setAntialias(FormUtil.java:507) at org.eclipse.ui.forms.widgets.Section.onPaint(Section.java:408) at org.eclipse.ui.forms.widgets.ExpandableComposite$1.paintControl(ExpandableComposite.java:510) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:204) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1097) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1121) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1106) at org.eclipse.swt.widgets.Control.gtk_expose_event(Control.java:2154) at org.eclipse.swt.widgets.Composite.gtk_expose_event(Composite.java:638) at org.eclipse.swt.widgets.Canvas.gtk_expose_event(Canvas.java:133) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1474) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3879) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3870) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:5574) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1155) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1468) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2903) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2264) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2228) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2103) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:457) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:452) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:146) 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:354) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) 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:476) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416) at org.eclipse.equinox.launcher.Main.run(Main.java:1124) at org.eclipse.equinox.launcher.Main.main(Main.java:1099) | resolved fixed | b32851c | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/BusyIndicator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-16T22:16:49Z | 2007-04-03T22:40:00Z |
176,373 | Bug 176373 [Preferences] NLS33:button labels on Content Types Preferences truncated | Build ID: eclipse-SDK-3.3M5eh-win32.zip The following strings in eclipse/plugins/org.eclipse.ui.workbench/org/eclipse/ui/internal/messages.properties are truncated when replaced with long translations ContentTypes_fileAssociationsAddLabel = &Add... ContentTypes_fileAssociationsRemoveLabel = &Remove | closed fixed | 2fe8bdf | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ContentTypesPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-16T20:33:38Z | 2007-03-05T15:53:20Z |
169,985 | Bug 169985 [ErrorHandling] Hooking the error handling into jobs again | Previous trial was a troublemaker. | verified fixed | 4896f35 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorInfo.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorNotificationManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/FinishedJobs.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobErrorDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/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/statushandlers/StatusDialog.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", "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-04-16T19:15:36Z | 2007-01-09T16:26:40Z |
177,449 | Bug 177449 [Themes] Font setting changes don't take effect until restart | Build: I20070313 When I switched to the new 3.3 presentation/theme, my editor fonts changed. If I attempt to change the font from the preference page, the setting is ignored. See me for a demo if you can't reproduce. | verified fixed | 081984b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorsAndFontsPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/Theme.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeElementHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-16T15:40:56Z | 2007-03-14T22:06:40Z |
182,395 | Bug 182395 [Workbench] Workbench not disposing default images | In Workbench.initializeImages() new Images get created and Window.setDefaultImages is called. In uninitializeImages(), those images are not disposed, they're just set to null. | verified fixed | f3c793d | ["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-04-16T14:35:10Z | 2007-04-13T18:46:40Z |
138,021 | Bug 138021 [Preferences][Themes] Appearance page cumulative fixes | null | verified fixed | 3a1737d | ["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/ViewsPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-16T13:49:26Z | 2006-04-21T17:20:00Z |
153,081 | Bug 153081 [Commands] commands doesn't recognize the objectcontribution for popups | For a popup I defined a objectcontribution. This works correctly in a TableTree. If I select the popup item the action will run by executing the selectionChanged() method on the IObjectActionDelegate. Then I defined a definitionId for the popup action which associates the command correctly. It executes the action if I press the key defined by keybinding. But I got a Nullpointerexception because the selectionChanged() method isn't executed. Debugging brought me to the following code in ActionDelegateHandlerProxy: if (applicationContext instanceof IEvaluationContext) { final IEvaluationContext context = (IEvaluationContext) applicationContext; final Object selectionObject = context .getVariable(ISources.ACTIVE_CURRENT_SELECTION_NAME); if (selectionObject instanceof ISelection) { currentSelection = (ISelection) selectionObject; delegate.selectionChanged(action, currentSelection); } } Unfortunately the selectionObject is null and the delegate.selectionChanged() won't be executed. Here are the entries of my plugin.xml ====================================== The popup: ---------- <extension point="org.eclipse.ui.popupMenus"> <objectContribution adaptable="false" id="RSPCore.editWorkflowContribution" objectClass="com.rsp.core.base.model.DescriptiveElement"> <action class="com.rsp.core.client.view.editor.EditWorkflowAction" definitionId="RSPCore.editCommand" id="RSPCore.editDescriptiveWorkflowAction" label="%objectContribution.parameter.action.label.edit" menubarPath="default"/> </objectContribution> </extension> The command: ------------ <extension point="org.eclipse.ui.commands"> <category id="RSPCore.WorkflowCategory" name="RSPCore.WorkflowCategory"/> <command categoryId="RSPCore.WorkflowCategory" id="RSPCore.editCommand" name="RSPCore.editCommand"/> </extension> The keybinding: --------------- <extension point="org.eclipse.ui.bindings"> <key commandId="RSPCore.editCommand" schemeId="org.eclipse.ui.defaultAcceleratorConfiguration" sequence="ENTER"/> </extension> | verified fixed | 58d3d80 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ActionDelegateHandlerProxy.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-16T13:45:00Z | 2006-08-08T12:26:40Z |
181,991 | Bug 181991 [Contributions] ContributedAction leaks editors | I20070410-1043 - new workspace - paste into Package Explorer: public class Test1 { public static void main(String[] arg) { System.out.println("Hello"); } } - doubleclick ruler on line 3 to add a breakpoint - close editor => the CompilationUnitEditor is leaked via ActionDelegateHandlerProxy#delegate and ContributedAction#appContext If you make a copy of the class, set the breakpoint there, and close the editor again, then the first editor is still leaked via ContributedAction#appContext and the most recent editor is leaked through both ways. | verified fixed | c186a72 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ContributedAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-16T13:22:19Z | 2007-04-11T16:46:40Z |
166,600 | Bug 166600 [DataBinding] Refactor tests to be in the correct packages | null | verified fixed | 6f628e3 | ["tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/DatabindingContextTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/ListBindingTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/ValueBindingTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/beans/BeansObservablesTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/AbstractObservableTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/DiffsTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/LockRealm.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/ObservablesTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/RealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/ThreadRealm.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/list/AbstractObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/list/ObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/list/WritableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/map/AbstractObservableMapTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/map/ObservableMapTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/map/WritableMapTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/set/AbstractObservableSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/set/AbstractObservableSetRealmTestCase.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/set/ObservableSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/set/UnionSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/set/WritableSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/set/WritableSetTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/value/AbstractObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/value/AbstractVetoableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/value/ComputedValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/observable/value/WritableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/BindingStatusTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/RandomAccessListIteratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/IdentityConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/ObjectToPrimitiveValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/Bean.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/BeanObservableListDecoratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/BeanObservableSetDecoratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/BeanObservableValueDecoratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/JavaBeanObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/JavaBeanObservableMapTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/JavaBeanObservableSetTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/JavaBeanObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/ListenerSupportTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/observable/UnmodifiableObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/conversion/IdentityConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/AbstractBindSupportFactoryTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryBooleanPrimitiveTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryBytePrimitiveTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryDoublePrimitiveTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryFloatPrimitiveTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryIntTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryLongPrimitiveTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryShortPrimitiveTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/factories/DefaultBindSupportFactoryTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/internal/databinding/provisional/validation/ObjectToPrimitiveValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/AbstractDefaultRealmTestCase.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/ComputedValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/DatabindingContextTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/EventTrackers.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/IDiffsTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/ObservableTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/RandomAccessListIteratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/RealmTester.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/SelectionAwareObservableCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/mask/EditMaskLexerAndTokenTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/mask/EditMaskParserTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/LockRealm.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/ThreadRealm.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/list/AbstractObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/list/ObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/list/WritableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/set/AbstractObservableSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/set/AbstractObservableSetRealmTestCase.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/set/ObservableSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/set/UnionSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/set/WritableSetRealmTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/set/WritableSetTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/value/AbstractObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/value/AbstractVetoableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/observable/value/WritableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/scenarios/ScenariosTestCase.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/AbstractGetAndSetSelectionObservableCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/AutoSelectTableViewerCollectionExtendedTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/AutoSelectTableViewerCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/CComboObservableCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/ComboObservableCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/CopyOfAutoSelectTableViewerCollectionExtendedTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/ListObservableCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/ObservableCollectionViewerTest.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/databinding/swt/TableViewerObservableCollectionTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/swt/TextObservableValueTests.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/util/EventTrackers.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/util/RealmTester.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/examples/databinding/mask/internal/EditMaskLexerAndTokenTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/examples/databinding/mask/internal/EditMaskParserTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/BindingStatusTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/ListBindingTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/ValueBindingTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/Bean.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/BeanObservableListDecoratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/BeanObservableSetDecoratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/BeanObservableValueDecoratorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/JavaBeanObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/JavaBeanObservableMapTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/JavaBeanObservableSetTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/JavaBeanObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/beans/ListenerSupportTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/observable/UnmodifiableObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/TextObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/viewers/SelectionProviderSingleSelectionObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/provisional/observable/AbstractObservableTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/provisional/observable/ObservablesTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/provisional/viewers/SelectionObservableValueTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-14T20:46:42Z | 2006-12-02T20:06:40Z |
181,756 | Bug 181756 [WorkbenchLauncher] [BiDi] Bidi3.3: ProgressBar is not mirrored in mirrored eclipse | When eclipse is launched with "-dir rtl" or "-nl ar" attributes, the progress bar should be mirrored (rtl). Currently the brogress bar is not mirrored. See attachment for details. | closed fixed | 4ffa39f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/splash/BasicSplashHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-13T18:37:25Z | 2007-04-10T13:00:00Z |
181,729 | Bug 181729 [FastView] View ordering not restored on restart after minimize | null | verified fixed | e8555a7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-13T17:59:15Z | 2007-04-10T10:13:20Z |
153,888 | Bug 153888 [Markers] Marker views update on each resource delta (was: Problems view flashes when launching anything) | null | verified fixed | afa6a13 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-12T20:25:09Z | 2006-08-15T11:06:40Z |
182,190 | Bug 182190 [StatusHandling] [Wizards] getControl assert on wizard page has no message | M6 If you forget to set the control on your wizard page our assert gives no feedback. We need an error message. | resolved fixed | adcaff3 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-12T18:56:50Z | 2007-04-12T17:46:40Z |
179,580 | Bug 179580 [Menus] Action set not shown on startup | null | verified fixed | 452c106 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/EvaluationAuthority.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-12T17:59:58Z | 2007-03-27T18:26:40Z |
180,805 | Bug 180805 [Markers] Performance issue when doing 'Select all' in Problems View with large number of warnings | Build ID: I20070323-1616 Steps To Reproduce: We ran across this bug while working with a large workspace. The amount of time spent doing 'Select all' in the problems view is proportional to the total # of warnings/errors. For a large workspace with 46,200 warnings it took 47 seconds, to highlight/select 100 (default visible limit). Here are some other measured times for various # of warnings. #ofWarnings: 4,200 12,600 25,200 46,200 Elapsed Time: 4s 13s 25s 47s The results show about 1s for each 1000 warnings. In the end, we only highlight the 100 visible items, so the response time is expected to be constant. I can provide a generated workspace on request. More information: | closed fixed | 709a12d | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/ActionSelectAll.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerAdapter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-12T17:23:12Z | 2007-04-03T19:53:20Z |
181,950 | Bug 181950 [WorkbenchLauncher] [BiDi] BIDI3.3<HCG:Undesired order of dir path when selecting threw "Workspace Launcher"> | Build ID: 3.3 Steps To Reproduce: Note: treat Caps Lock latin letters as BiDi letters Hebrew\Arabic. Prerequisite : use one of your previous workspaces with BiDi characters. i.e : c:\CBA\FED. 1.Run eclipse. 2.Go to "File->Switch Workspace" and select/create a workspace as suggeasted above. Actual Result: The dir path is presented in the workspace text box as such : c:\FED\CBA Expected Result: c:\CBA\FED More information: | closed fixed | dda88af | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/ChooseWorkspaceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T18:25:00Z | 2007-04-11T14:00:00Z |
181,982 | Bug 181982 [Viewers] content provider in TreeTest should return children when getElements is called | null | verified fixed | 2cb6792 | ["tests/org.eclipse.ui.tests.performance/src/org/eclipse/jface/tests/performance/TreeTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T18:03:59Z | 2007-04-11T16:46:40Z |
179,584 | Bug 179584 OpenCloseViewTest#showView:org.eclipse.ui.views.ResourceNavigator() should be removed from the fingerprints | OpenCloseViewTest#showView:org.eclipse.ui.views.ResourceNavigator() is not a good test anymore because we are not supporting this. We should remove this from the fingerprints and add a test for the project explorer. | verified fixed | ef177b7 | ["tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/ViewPerformanceSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T14:55:52Z | 2007-03-27T18:26:40Z |
98,144 | Bug 98144 Open view tests need degradation comment removed | Most of the performance.OpenCloseViewTest#showView: tests are running in less than 50ms. The number of iterations should be increased by 3 times. | verified fixed | fa25d38 | ["tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/OpenCloseViewTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T14:39:46Z | 2005-06-02T16:33:20Z |
178,367 | Bug 178367 [Min/Max] Stack 'selectedTabId' handling does no correctly handle multi-instance views | In the processing for the currently selected tab in a view stack we aren't honoring the 'secondaryId'. This means that multi-instance stacks are not correctly handled. Also, restoring a stack while it's showing a view doesn't make that view the new 'selected' tab view (probably because it's 'pane' is the FastViewPane at that point. | verified fixed | 8c80632 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStackTrimToolBar.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T14:20:36Z | 2007-03-20T17:00:00Z |
181,839 | Bug 181839 [Min/Max] Mazimizing the editor area causes it to lose focus | This means that the regular Ctrl-M zoom toggling doesn't work anymore -and- that after a mazimize you can't immediately start typing into the editor... | verified fixed | 22336a4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T13:09:53Z | 2007-04-10T21:20:00Z |
178,917 | Bug 178917 [Databinding] Create snippet to demonstrate Databinding for Table-Inline-Editing | null | verified fixed | 1622dc1 | ["examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet013TableViewerEditing.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-11T01:21:31Z | 2007-03-22T21:46:40Z |
179,458 | Bug 179458 [Presentations] EditorArea shown when application restored | Reproduce: 1. Create the mail-template 2. Add the following functions to ApplicationWorkbenchAdvisor: @Override public void initialize(IWorkbenchConfigurer configurer) { super.initialize(configurer); configurer.setSaveAndRestore(true); PlatformUI.getPreferenceStore().setDefault(IWorkbenchPreferenceConstants.ENABLE_NEW_MIN_MAX,false); PlatformUI.getPreferenceStore().setDefault(IWorkbenchPreferenceConstants.ENABLE_DETACHED_VIEWS, false); } On the second start you'll notice that the editor area is restored. For RCP application this is a major problem. | verified fixed | 16af00c | ["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-04-10T20:34:56Z | 2007-03-27T10:06:40Z |
178,906 | Bug 178906 Infinite error dialogs due to error closing error dialog | Build: I20070320-0010 I installed GEF using update manager, and chose to apply changes without restarting. This caused an error in the registry, and an error dialog opened. When I clicked "ok" on the error dialog, another error occurred, and the dialog reopened. This led to an infinite recursion of error dialogs. Well, almost infinite. Eventually the process ran out of handles, at which point I got a fairly entertaining series of dialogs, as shown in the attached screen shot. | verified fixed | 97072bf | ["bundles/org.eclipse.jface/src/org/eclipse/jface/util/SafeRunnable.java", "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-04-10T14:21:53Z | 2007-03-22T21:46:40Z |
179,094 | Bug 179094 [min/max] switch between perspectives ends up with maximizing the active view of the first perspective | Using I20070322-1800, I have my perspectives docked on the left side. The Java perspective is open with an active editor. I switch to the debug perspective. I switch back to the java perspective and the active editor ends up being maximized even if this was not the case before I switched. I had to reset my java perspective to get everything back in order. | verified fixed | 9b87812 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-09T20:41:35Z | 2007-03-23T17:13:20Z |
181,613 | Bug 181613 [FastView] Min/max rectangle should use stack border colour | 3.3 M6 The min/max animation rectangle is currently black. It would be a nice finesse to use the colour which we use for the view stack borders, since that's what's being animated, and is usually subtler a colour than black. | verified fixed | d5f8920 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LegacyAnimationFeedback.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-09T19:19:14Z | 2007-04-09T14:46:40Z |
181,624 | Bug 181624 [Contributions] [ActivityMgmt] new menu story does not acknowledge activities | The new menu story is not currently activity aware. This needs to happen before 3.3 ships. | verified fixed | 4485b70 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/expressions/AlwaysEnabledExpression.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/ContributionRoot.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/InternalMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimContributionManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WindowMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/ActivitiesTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/activities/MenusTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-09T19:19:10Z | 2007-04-09T17:33:20Z |
180,415 | Bug 180415 Implement "Kelvin Colours" | Implement the following color selection scheme for selected active tab begin/end as follows: Group 1 Rule: If at least 2 of the RGB values for TITLE_BACKGROUND_GRADIENT are equal to or between 181 and 255, then apply specified opacity for Group 1 Examples: Vista, XP Silver Gradient Top = Base colour + 75% white Gradient Bottom/Base colour = TITLE_BACKGROUND Group 2 Rule: If atleast 2 of the RGB values are equal to or between 100 and 180, then apply specified opacity for Group 2 Examples: XP Olive, OS X Graphite , GTK Gradient Top = Base colour + 75% white Gradient Bottom/Base colour = TITLE_BACKGROUND + 30% white Group 3 Rule: If atleast 2 of the RGB values are equal to or between 0 and 99, then apply specified opacity for Group 3 Examples: XP Blue, Wn Classic, Wn Plum, Wn Marine Gradient Top = Base colour + 75% white Gradient Bottom/Base colour = TITLE_BACKGROUND + 60% white Group 4 Rule: If each of the 3 RGB values are between 0-99, 100-180, and 181-255, then apply specified opacity for Group 4 Examples: OS X Blue Gradient Top = Base colour + 75% white Gradient Bottom/Base colour = TITLE_BACKGROUND + 30% white Group 5 - Exceptions Rule: No gradients are used for the High Contrast themes Examples: XP HC, Wn HC | verified fixed | 91f6763 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorSelectionFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/DarkColorSelectionFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/LightColorFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/LightColorSelectionFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-09T14:24:55Z | 2007-04-02T02:13:20Z |
172,113 | Bug 172113 [Workbench] The default browser handler(DefaultWebBrowser) in ui.workbench doesn't work on SLED10 | Build ID: Eclipse 3.2/3.3M4 Env: Linux/SLED 10 Eclipse: 3.2.2 or 3.3M4 Steps To Reproduce: 1. Start Eclipse, setup a run to Run a product with "org.eclipse.sdk.ide". 2. In the "Run" setting, select "Plug-ins" tab, unselect "org.eclipse.ui.browser". 3. Run the application. 4. In the new IDE window, select "Help->About Eclipse SDK->Feature Details to show feature details dialog. 5. Select one of the dialog, press "License" key. Problem: An error dialog is shown "Unable to open web browser on {0}" with "OK" button. Expected: Shown the license file with an external browser, e.g, firefox. More information: - Our application doesn't ship with "org.eclipse.ui.browser", so the default handler(DefaultWebBrowser class) in ui.workbench is handling the openURL calls. - From the DefaultWebBrowser code, it is really old to launch external browser on Linux. It only tries to start "netscape" and "mozilla". Now most of linux distributions are shipping with Firefox. - Can ui.workbench uses Program.launch() as default action? | verified fixed | e115ae4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/browser/DefaultWebBrowser.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-09T13:58:21Z | 2007-01-30T06:53:20Z |
154,398 | Bug 154398 [Dialogs] Javadoc - IconAndMessageDialog.createMessageArea assumes parent composite is using GridLayout | IconAndMessageDialog.createMessageArea assigns GridData objects as the layout data for the children of the parent composite. This mandates that the parent's layout is a GridLayout - which is unspecified in the Javadoc. This affects all callers of IconAndMessageDialog.createMessageArea as well, for example: ErrorDialog.createDialogArea MessageDialog.createDialogArea ProgressDialog.createDialogArea | verified fixed | 9a2dff3 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/IconAndMessageDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-07T19:59:55Z | 2006-08-18T19:40:00Z |
179,409 | Bug 179409 [DataBinding] Rework StringToBooleanPrimitiveConverter | The current implementation has 4 values possible to translate from. This needs to be externalized so that any number of values can be specified. | verified fixed | a2c9ec5 | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToBooleanPrimitiveConverter.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToBooleanConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-07T16:48:50Z | 2007-03-27T01:46:40Z |
179,408 | Bug 179408 [DataBinding] Externalize Date Format | DateConversionSupport hard codes the date format. This needs to be externalized. | verified fixed | 19077ac | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/DateConversionSupport.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/DateConversionSupportTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-07T03:58:42Z | 2007-03-27T01:46:40Z |
175,742 | Bug 175742 [Markers] contributed marker resolutions only showing first contribution | Debug is trying to add a marker resolution for a quick fix to repair deprecated JRE variables on the build path. When we contribute our resolution generator for org.eclipse.jdt.core.buildpath_problem marker types with a DEPRECATED_VARIABLE id attribute, we find that our resolution is always over-written by the junit generator. It seems that the MarkerHelpRegistry does not allow more than one generator per query result (in our case DEPRECATED_VARIABLE is the query result, same with junit's contribution). I would expect that you could have more than one quickfix for a given issue (in this case what to do about deprecated build path variables). | verified fixed | 8296cd4 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/registry/MarkerHelpRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-05T20:04:01Z | 2007-02-27T21:00:00Z |
177,405 | Bug 177405 [Preferences] Layout issues with Text Boxes and Scrollbars | null | verified fixed | 64edd3c | ["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-04-05T18:51:06Z | 2007-03-14T19:20:00Z |
180,928 | Bug 180928 [Commands] NPE in ToggleBreakpointAction.getDocument | I20070403-1110 Steps: - new workspace - new Java Project - open type Integer - press Ctrl+F10, Esc - open type Number - press Ctrl+F10, Esc - activate editor for Integer - press Ctrl+F10, Esc - press Ctrl+F10, Esc If you have not changed anything in the vicinity, then this is likely a problem in Platform/UI's action delegate handler contribution story. java.lang.NullPointerException at org.eclipse.debug.ui.actions.ToggleBreakpointAction.getDocument(ToggleBreakpointAction.java:156) at org.eclipse.debug.ui.actions.ToggleBreakpointAction.update(ToggleBreakpointAction.java:168) at org.eclipse.ui.texteditor.AbstractRulerActionDelegate.update(AbstractRulerActionDelegate.java:133) at org.eclipse.ui.texteditor.AbstractRulerActionDelegate.menuAboutToShow(AbstractRulerActionDelegate.java:145) at org.eclipse.ui.texteditor.AbstractTextEditor.rulerContextMenuAboutToShow(AbstractTextEditor.java:5607) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.rulerContextMenuAboutToShow(AbstractDecoratedTextEditor.java:1390) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.rulerContextMenuAboutToShow(JavaEditor.java:3505) at org.eclipse.ui.texteditor.AbstractTextEditor$13.menuAboutToShow(AbstractTextEditor.java:2774) at org.eclipse.jface.action.MenuManager.fireAboutToShow(MenuManager.java:289) at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:394) at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:390) at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:416) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:234) 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:943) at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:3979) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3696) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1554) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1752) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4342) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:227) at org.eclipse.swt.widgets.Display.runPopups(Display.java:3699) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3278) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2361) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2325) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) 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:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:152) 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:359) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:174) 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:476) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416) at org.eclipse.equinox.launcher.Main.run(Main.java:1141) at org.eclipse.equinox.launcher.Main.main(Main.java:1116) | verified fixed | 190a2c0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginActionContributionItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PopupMenuExtender.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-05T17:18:35Z | 2007-04-04T12:33:20Z |
169,637 | Bug 169637 [DataBinding] Multiple validation statuses per binding | null | verified fixed | a238cb0 | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/ListBinding.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/ValueBinding.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/BindingStatus.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/BindingStatusTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/ListBindingTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/ValueBindingTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-05T01:50:07Z | 2007-01-05T04:06:40Z |
181,061 | Bug 181061 [Viewers] JFace viewers performance issues in 3.3 | A number of the JFace performance tests are red since I20060926-0800. | verified fixed | 501630e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerCell.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerRow.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/WrappedViewerLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-04T20:53:13Z | 2007-04-04T20:53:20Z |
177,438 | Bug 177438 Accessibility : Preferences Dialog UI has problems in High Contrast Mode on SLED 10 | Build ID: 3.2.2 Steps To Reproduce: 1.Set the OS in high contrast Mode 2.Set Font size of Application font to Sans 28 3.Restart platform 4. Bring up Preferences in Eclipse and notice that UI is not displayed completely. More information: | verified fixed | fe44e74 | ["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-04-04T19:18:44Z | 2007-03-14T22:06:40Z |
132,424 | Bug 132424 [Markers] Quick Fix dialog problems | null | verified fixed | 6772968 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerResolutionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-04T18:25:17Z | 2006-03-18T00:00:00Z |
178,989 | Bug 178989 [Min/Max] Handle 'non-standard' stack/view types | This covers things like stand-alone and multi-instance views etc... | verified fixed | 95f03ca | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorSashContainer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PageLayout.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/RectangleAnimation.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-04T18:05:49Z | 2007-03-23T11:40:00Z |
180,394 | Bug 180394 [DND] [EditorMgmt] Simple D&D strategy for editors and multiple windows | If you have two or more workbench windows open, you cannot drag and drop editor tabs from one window to another. While I recognize that there is complexity involved in reparting the editor part, I wonder if a simple solution is possible for non-dirty editors: simply open a new editor on the same object. This is what the person must do by hand now anyway (go to 2nd window, find resource, open window). If we thought we could do this easy enough it'd be a great 3.3 UI polish item, solving a pain which users have been reporting more and more as they work in multi monitor setups. | verified fixed | 4fbf4dd | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSashContainer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-04T17:35:41Z | 2007-04-01T20:40:00Z |
177,434 | Bug 177434 [Wizards] New Project wizard is not big enought in High Contrast | Build ID: 3.2.2 Steps To Reproduce: 1.Select High Contrast Mode in the OS 2.Select Sans 28 as the Application font 3.Restart platform 4.Bring up Eclipse New->Project dialog 5.Notice that UI is messed up and input box is not visible More information: | verified fixed | 765b58a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-03T18:57:21Z | 2007-03-14T22:06:40Z |
157,879 | Bug 157879 [CommonNavigator] Link With Editor should be at the bottom of the view menu | I20060918-2000 To be consistent with the package explorer and the navigator view the Link With Editor item should be at the bottom of the view menu in the project explorer | resolved fixed | a761197 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/WorkingSetFilterActionGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-03T13:37:03Z | 2006-09-19T18:20:00Z |
180,466 | Bug 180466 [StatusHandling] StatusManager#getManager() can't return null | null | verified fixed | 5a0605a | ["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-04-03T12:19:58Z | 2007-04-02T10:33:20Z |
179,551 | Bug 179551 [Undo] DefaultOperationHistory should write exceptions to log when running in Eclipse | I20070323-1616 DefaultOperationHistory#handleNotificationException(..) should write exceptions to the log when running in Eclipse. Bugs like 176644 are easy to miss when exceptions only appear on the console. | verified fixed | 05e682a | ["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/DefaultOperationHistory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-02T23:40:41Z | 2007-03-27T15:40:00Z |
176,764 | Bug 176764 [Undo] - DeleteResourcesOperation does not handle overlapped selections | In a project, create a folder f1. In f1, create another folder f2. Select f1 and f2 delete The undo fails with a "not enough info to restore" message. The problem is that the resource description for f2 checks to see whether f2's parent is valid, and at the time of the check, f1 has not been restored. Either the validity check needs to be smarter, or else the deletes should be collapsed into just f1. | verified fixed | 4d5f195 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractCopyOrMoveResourcesOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractResourcesOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/CopyResourcesOperation.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/operations/WorkspaceOperationsTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-02T22:35:37Z | 2007-03-08T21:40:00Z |
175,859 | Bug 175859 [DataBinding] Use MessageFormat for validation hints | The default hints produced by String2IntegerPrimitiveValidator and its peers are not very pleasant. They print extremely long numbers, are missing spaces, etc. For I18n, these hints should be produced via MessageFormat patterns, rather than with a hard-coded structure. This would also allow clients to override the messages by providing replacement patterns in a fragment. Boris, are there any issues with using java.text.MessageFormat under Foundation profiles? Should an ICU equivalent be used instead? | verified fixed | 2a5c379 | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/UpdateStrategy.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/UpdateValueStrategy.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/StringToNumberConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/BindingMessages.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/IntegerToStringConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToByteConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToBytePrimitiveConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToNumberParser.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToShortConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToShortPrimitiveConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/AbstractStringToNumberValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/NumberFormatConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/StringToByteValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/StringToDoubleValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/StringToFloatValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/StringToIntegerValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/StringToLongValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/StringToShortValidator.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/validation/WrappedConverterValidator.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/UpdateStrategyTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/conversion/StringToNumberConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/BindingMessagesTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/IntegerToStringConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToByteConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserByteTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserDoubleTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserFloatTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserIntegerTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserLongTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserShortTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToNumberParserTestHarness.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/conversion/StringToShortConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToByteValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToDoubleValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToFloatValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToIntegerValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToLongValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToNumberValidatorTestHarness.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/StringToShortValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/validation/WrappedConverterValidatorTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-04-01T20:58:13Z | 2007-02-28T16:26:40Z |
180,293 | Bug 180293 [FastViews] NPE in bring up a fast view | The FastViewPane#showView calls 'pane.setFoxus()' part way though its construction. This is now causing a call into 'updateSashBounds' (apparently as a side-effect of an SWT size change). However, the sash hasn't been created yet so we NPE. This code hasn't changed (last change was the copyright change Jan 17)... The fix is obvious...move the 'pane.setFocus()' to the end of the method so everything is set up. What's suspicious is the code flow change; where did the resize event come from? | verified fixed | c16e09b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewPane.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T20:28:43Z | 2007-03-30T21:26:40Z |
171,099 | Bug 171099 [Sync View] Java content provider provides wrong label for folder | When view a resource project (i.e. non-Java) in the Sync view when using compressed folder, the Java content provider is somehow asked to provide a label and only provides a single segment instead of the project relative path. This is probably related to the use of pipelining (i.e. I recall that pipelining prevented the CN framework from being able to determine the proper model to ask for the label. | resolved fixed | 07bb03b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/WrappedViewerLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T20:18:10Z | 2007-01-19T20:53:20Z |
180,245 | Bug 180245 [Preferences] JFace NPE while running tests | This didn't cause a failure, but showed up in the log as an NPE: !ENTRY org.eclipse.jface 4 2 2007-03-30 12:19:20.063 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface". !STACK 0 java.lang.NullPointerException at org.eclipse.jface.preference.ColorFieldEditor.adjustForNumColumns(ColorFieldEditor.java:59) at org.eclipse.jface.preference.FieldEditorPreferencePage.adjustGridLayout(FieldEditorPreferencePage.java:157) at org.eclipse.jface.preference.FieldEditorPreferencePage.createContents(FieldEditorPreferencePage.java:230) at org.eclipse.ui.tests.dialogs.EnableTestPreferencePage.createContents(EnableTestPreferencePage.java:116) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:233) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1429) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1188) 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:45) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:153) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1182) at org.eclipse.ui.tests.dialogs.PreferenceDialogWrapper.showPage(PreferenceDialogWrapper.java:30) at org.eclipse.ui.tests.dialogs.UIPreferencesAuto.testFieldEditorEnablePref(UIPreferencesAuto.java:138) 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 junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:58) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:122) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3233) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2926) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2361) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2325) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) 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:101) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:52) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:152) 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:359) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:174) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 9ea1006 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/ColorFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T18:58:26Z | 2007-03-30T15:53:20Z |
174,908 | Bug 174908 [Contributions] Leakage: PluginActionContributionItem not being removed as activity manager listener | Eclipse 3.3M5 Tested in the resource perspective (only perspective open) Opened the Project Explorer Right click on a Java project to realize the context menu Close the project explorer Each time I repeat this I am seeing leakage which appears to be rooted in the PluginContributionItem(s) that have been added as activity listeners not being removed as listeners. Note that the problem is not limited to the Project Explorer from my testing. | verified fixed | 5fee05b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSite.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PopupMenuExtender.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/PageSite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T18:36:38Z | 2007-02-21T03:53:20Z |
176,282 | Bug 176282 Link With Editor in Navigator and Project Explorer should work for IEditInput that can adapt to IFile | If I define an IEditorInput implementation that returns an IFile when asked for an IFile.class adapter, the Link With Editor capability of the Navigator or Project Explorer should work properly. But it appears that this capability is supported by doing an instanceof IFileEditorInput test instead. That's far less flexible and doesn't seem like the right way to implement it. I talked to Dani about this problem, and he said he fixed it right away for the Package Explorer, which currently has the same proble. Perhaps this isn't a big concern, but I also noticed problems with how equals is defined for FileEditorInput. It only considers itself equal to another IFileEditorInput, even though it implements IPathEditorInput too. Yet JavaFileEditorInput will consider itself equal to another IPathEditorInput with a matching path. So one could have a JavaFileEditorInput that's considers itself equal to a particular FileEditorInput but the opposite would not be true. I think that makes equals poorly defined. I also don't think the hashCode method for JavaFileEditorInput is properly defined to match the equality algorithm. I suppose this hasn't caused any real problems... | verified fixed | e5c00c7 | ["bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/workbench/ResourceLinkHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T17:17:09Z | 2007-03-03T13:53:20Z |
179,110 | Bug 179110 [Perspectives] Log entry switching perspectives | build i0323-1250 - start Eclipse - comes up in Java perspective - switch to the Resource perspective - note the following entries in the log file !ENTRY org.eclipse.ui 4 4 2007-03-23 14:39:47.082 !MESSAGE Referenced part does not exist yet: org.eclipse.ui.views.ResourceNavigator. !ENTRY org.eclipse.ui 4 4 2007-03-23 14:39:47.097 !MESSAGE Referenced part does not exist yet: org.eclipse.ui.views.ResourceNavigator. | verified fixed | 5345a72 | ["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/ResourcePerspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T14:49:11Z | 2007-03-23T20:00:00Z |
178,399 | Bug 178399 [Mni/Max] Editor area both visible and minimized | Build: I20070320-0010 1) Maximize the console view 2) Paste some stack trace into the Java stack trace console 3) Click a link in the stack trace that will cause an editor to be opened -> The console view unzooms, and the editor becomes visible. However, there is a still a fast view bar on the right hand side that still contains the iconified editor area. | verified fixed | f157f32 | ["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-03-30T14:14:27Z | 2007-03-20T19:46:40Z |
176,845 | Bug 176845 [Min/Max] Restore from Editor-Area leaves View unrestored | Eclipse: 3.3 M5 Presentation: 3.3 Doubleclick the package explorer to maximize it, while having some editors open. Then hit "Restore" from the Editor FVB and notice the package explorer still showing the "restore" button in his view, although it has been restored from by the editor area already. Ben | verified fixed | 375c6ba | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PageLayout.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T13:43:20Z | 2007-03-09T17:06:40Z |
180,177 | Bug 180177 ColorsAndFonts test cannot check against the default font | null | verified fixed | cffa629 | ["tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/ColorAndFontLabelProviderTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/ColorAndFontViewerLabelProviderTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T13:10:53Z | 2007-03-30T13:06:40Z |
180,178 | Bug 180178 Compiler warning in N20070330-0010 | 1. WARNING in /Eclipse UI Tests/org/eclipse/ui/tests/services/EvaluationServiceTest.java (at line 202) IWorkbenchWindow secondWindow = openTestWindow(); The local variable secondWindow is never read | resolved fixed | 7ab6d12 | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/services/EvaluationServiceTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-30T13:06:39Z | 2007-03-30T13:06:40Z |
163,281 | Bug 163281 FieldEditorPreferencePage needs a default constructor | null | verified fixed | 506ee18 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FieldEditorPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T20:43:14Z | 2006-11-02T23:26:40Z |
179,980 | Bug 179980 [Contributions] visibleWhen does not work properly for multiple workbench windows | Hi, i have problems using new menu/handlers framework in 3.3M6. As i understand there is possibility to contribute to main menu from my plugin defining something like this: <extension point="org.eclipse.ui.menus"> <menuContribution locationURI="menu:org.eclipse.ui.main.menu?after=open"> <menu id="command" label="Command" mnemonic="C"> <visibleWhen> <with variable="activeContexts"> <iterate operator="or"> <equals value="biz.wss.rcp.fxmanager.FXDealEntryEditor"/> </iterate> </with> </visibleWhen> </menu> </menuContribution> </extension> It means every time when context biz.wss.rcp.fxmanager.FXDealEntryEditor is active menu is displayed. I activate context every time when my plugin's editor is activated. It works properly and menu is displayed properly. Problem occurs when i open another workbench window. I arranged them so both are together visible on the screen. I clicked to one of them to any other editor then my so my menu is not visible. In the second i clicked to my editor and menu changed as i expected, but menu were changed also in the first editor however my editor is not active there. I think problem is caused by evaluating of activeWhen expression. I am checking active context and i would expect it is held per WorkbenchWindow, unfortunatelly it is held by whole workbench. So when click to my editor in the second window my context is activated but not only in this workbench window but also in the first. Same situation is when i change my condition to "activeEditorId". Only one editor is active for whole workbench and it ignores what editor is active in WorkbenchWindow. It results in situation when i don't know how to create in new framework menus what are visible only when my editor is active... Thanks in advance Tomas | verified fixed | bf07ae8 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AbstractEvaluationHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerProxy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/ContributionRoot.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/InternalMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimContributionManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WindowMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/EvaluationAuthority.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/EvaluationReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/EvaluationService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/IEvaluationReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/services/IEvaluationService.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/services/EvaluationServiceTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T19:44:50Z | 2007-03-29T12:06:40Z |
107,599 | Bug 107599 [Preferences] Line delimiter field editor will not switch to defaults | 20050818 When you select Restore Defaults on the Workspace preference page the line delimiter is not reset STEPS 1) Open the Workbench Preference Page 2) Set the line delimiter to OS/9 3) Hit OK 4) Reopen 5) Select Restore Defaults 6) Does not change | verified fixed | fb3814e | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/LineDelimiterEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T19:38:22Z | 2005-08-22T14:13:20Z |
176,873 | Bug 176873 [Preferences] ColorFieldEditor should not set button size to IDialogConstants.BUTTON_WIDTH | The ColorFieldEditor shouldn't adjust the size of the button that is created by ColorSelector. ColorFieldEditor#doFillIntoGrid(...) creates a ColorSelector and then increases the size of the button using IDialogConstants.BUTTON_WIDTH. This creates buttons that are oversized and unattractive. Worse, this means that Eclipse preference pages don't present a color selector with a consistent size. Pages which use the JFace API to create a ColorSelector directly get a button that's one size, while pages which use the ColorFieldEditor get something else. The current workaround allows us to use ColorFieldEditor without the undesirable missizing: new ColorFieldEditor(preference, label, parent) { protected void doFillIntoGrid(Composite parent, int numColumns) { super.doFillInfoGrid(parent, numColumns); getChangeControl(parent).setLayoutData(new GridData()); } } | verified fixed | 77cd298 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/ColorFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T19:24:45Z | 2007-03-09T22:40:00Z |
175,085 | Bug 175085 SWT errors due to oversized overlay icon | I just updated to Eclipse 3.3 and received a lot of SWT errors. The trace showed the cause to be imageData.setAlpha(xx,yy,alpha) called within CompositeImageDescriptor. Apparantly one of the projects in my workspace had the honour of receiving a label overlay image with a size of 17x16 pixels. As the label image is 16x16 pixels and the overlay image is drawn TopRight, the CompositeImageDescriptor.drawImage was called with parameter 'ox' being -1. This in turn causes the ImageData.setAlpha() at the end of this method to be called with 'xx' being -1, falling outside of the ImageData boundaries and hence triggering the SWT error. It seems the imageData.setPixel() call just above it is protected in an 'if ( xx >= 0 && xx < imageData.width && yy > 0 ...)' block and a solution might be to move the setAlpha() call also within this block. But this part of Eclipse is totally new for me so correct me if I'm looking at the wrong place, or let me know if you need more info. Regards, Wieant | verified fixed | 4b7baa4 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/CompositeImageDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T18:53:36Z | 2007-02-22T07:40:00Z |
179,679 | Bug 179679 [Dialogs] FilteredItemsSelectionDialog: make sure all jobs are cancelled when closing dialog | null | verified fixed | dbe9c74 | ["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-03-29T18:45:45Z | 2007-03-28T08:20:00Z |
178,189 | Bug 178189 [Preferences][Dialogs] New File Type dialog problems | Window>Preferences>General>Content Types Add... button - error message ... "a." not rejected - Dialog not resizable - does not remember position | verified fixed | 18f24f0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FileExtensionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T18:29:06Z | 2007-03-20T08:40:00Z |
137,073 | Bug 137073 [Preferences] Encoding field editor never fires value change events | The class AbstractEncodingFieldEditor never fires VALUE property change events unless the validaty of the value has also changed. I will attach a patch that corrects the problem. | verified fixed | b522535 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/AbstractEncodingFieldEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T18:16:42Z | 2006-04-17T21:40:00Z |
179,461 | Bug 179461 [Viewers] ViewerLabelProviders that implement IColorProvider do not clear colours | 3.3 M6 With the recent M6 build I often have remaining italic content even though no jobs are running or waiting. This is pretty distracting. If that's I new feature then I didn't get its pattern ;-) | verified fixed | 463dbd0 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/WrappedViewerLabelProvider.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/ColorAndFontLabelProviderTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/ColorAndFontViewerLabelProviderTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/DecoratingLabelProviderTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-29T12:19:47Z | 2007-03-27T10:06:40Z |
177,183 | Bug 177183 [Dialogs] PopupDialog should show the view menu on mouseDown | I20070306-1200 PopupDialog should show the view menu on mouseDown. Trivial fix follows. | verified fixed | 7e7cc3b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/PopupDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-28T17:15:31Z | 2007-03-13T18:20:00Z |
178,297 | Bug 178297 [Dialogs] - remove required field color | There are still some dialogs using the (now deprecated) class FieldAssistColors. We shouldn't color the required fields anymore in these dialogs: NewFolderDialog CreateLinkedResourceGroup ResourceWorkingSetPage ContainerSelectionGroup ResourceAndContainerGroup | verified fixed | ed7cfb5 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/NewFolderDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceWorkingSetPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/ContainerSelectionGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/ResourceAndContainerGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-28T16:03:53Z | 2007-03-20T14:13:20Z |
178,798 | Bug 178798 [FastViews] Duplicated new FVB after moving around | I20070321-1800 - new workspace - close intro - move original FVB from bottom to left by drag-and-drop - minimize Package Explorer - context menu on new FVB's dotted line > Dock On > Right - move new FVB from right to left by DnD - move new FVB from left to bottom by DnD -> remnants of the new FVB remain in the left trim -> does not seem to be a persistent problem; the spooky FVB disappears on restart | verified fixed | 559b0d3 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/layout/TrimToolBarBase.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-28T13:40:44Z | 2007-03-22T13:26:40Z |
159,198 | Bug 159198 [About] Date and Time of Configuration Details panel are not localized | Install the Language Pack, launch Eclipse in Simplified Chinese locale, Go to Help->About Eclipse SDK->Configuration Detail. The Date and Time at the top of Configuration Details panel is not localized. It should probably use icu4j APIs to get the date and time. See attached picture. | verified fixed | 5bcf5b4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutSystemDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-28T12:34:00Z | 2006-09-28T21:46:40Z |
179,031 | Bug 179031 Breakpoints View showing Search results | build i0322-1800 - I have my Breakpoints view and Search view stacked and minimized - I opened an editor and did a search - Search view popped up (as a fast view) - I selected the "restore" button for the stack - stack was restored with the Breakpoints view getting focus and containing my search results. Will attach screen shot. | verified fixed | 5fd4fa7 | ["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-03-27T17:45:08Z | 2007-03-23T14:26:40Z |
178,791 | Bug 178791 [FastViews] 'Context menu > Close' on 'Restore' button does nothing | I20070321-1800 'Context menu > Close' on the 'Restore' button of a new fast view bar does nothing. | verified fixed | 0553d93 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStackTrimToolBar.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-27T17:19:57Z | 2007-03-22T13:26:40Z |
178,458 | Bug 178458 Tab from other window shows displaying Intro if new content available | null | verified fixed | 165297d | ["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-03-27T14:48:27Z | 2007-03-20T22:33:20Z |
178,331 | Bug 178331 [Dialog] Invalid result in Open Resource dialog when spaces in pattern | null | verified fixed | 3833642 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/SearchPattern.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-27T12:16:41Z | 2007-03-20T17:00:00Z |
178,654 | Bug 178654 Add test suites for DecoratingLabelProvider | null | verified fixed | 1e74783 | ["tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/CompositeLabelProviderTableTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/CompositeLabelProviderTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/DecoratingLabelProviderTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/DecoratingLabelProviderTreePathTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/DecoratingLabelProviderTreeTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/labelProviders/TestColorAndFontLabelProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-26T18:51:44Z | 2007-03-21T20:46:40Z |
178,956 | Bug 178956 [Preferences] Preferences Dialog does not protect against exceptions on close | 3.3 M5eh I can't close my preference dialog anymore. I press 'Cancel' and nothing happens, well, an exception is logged. Looks like I have a broken preference page (the Subsclipse plug-in in my case) that throws a runtime exception in the dispose method. I'll report that separately. Here is the stack trace: !ENTRY org.eclipse.ui 4 0 2007-03-23 09:52:17.125 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.IllegalArgumentException at org.eclipse.core.runtime.ListenerList.remove(ListenerList.java:155) at org.eclipse.core.commands.common.EventManager.removeListenerObject(EventManager.java:99) at org.eclipse.ui.internal.themes.WorkbenchThemeManager.removePropertyChangeListener(WorkbenchThemeManager.java:218) at org.tigris.subversion.subclipse.ui.preferences.SVNDecoratorPreferencesPage.dispose(SVNDecoratorPreferencesPage.java:478) at org.eclipse.jface.preference.PreferenceNode.disposeResources(PreferenceNode.java:173) at org.eclipse.ui.internal.preferences.WorkbenchPreferenceExtensionNode.disposeResources(WorkbenchPreferenceExtensionNode.java:134) at org.eclipse.jface.preference.PreferenceDialog.close(PreferenceDialog.java:289) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.close(FilteredPreferenceDialog.java:446) at org.eclipse.ui.internal.dialogs.WorkbenchPreferenceDialog.close(WorkbenchPreferenceDialog.java:140) at org.eclipse.jface.preference.PreferenceDialog.cancelPressed(PreferenceDialog.java:269) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:238) at org.eclipse.jface.dialogs.Dialog$3.widgetSelected(Dialog.java:638) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:215) 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:3490) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3104) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) 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:3490) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3104) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2264) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2228) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2103) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:457) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:452) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:146) 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:354) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) 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:476) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416) at org.eclipse.equinox.launcher.Main.run(Main.java:1124) | verified fixed | d7aded6 | ["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-03-26T18:41:15Z | 2007-03-23T08:53:20Z |
178,394 | Bug 178394 NPE in marker adapter buildAll markers | This shows up occasionally in the test suite logs. Probably happening during shutdown !STACK 0 java.lang.NullPointerException at org.eclipse.ui.views.markers.internal.MarkerAdapter.buildAllMarkers(MarkerAdapter.java:262) at org.eclipse.ui.views.markers.internal.MarkerView.updateForContentsRefresh(MarkerView.java:570) at org.eclipse.ui.views.markers.internal.MarkerView$MarkerProcessJob.run(MarkerView.java:151) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58) | verified fixed | e7104f4 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerAdapter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TableView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-03-26T18:39:44Z | 2007-03-20T19:46:40Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.