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]
253,239
Bug 253239 [PropertiesDialog] Wrong title for a file property
null
verified fixed
06467bb
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/part/FileEditorInput.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-06T14:38:58Z
2008-11-03T16:33:20Z
192,633
Bug 192633 [FieldAssist] auto-activated proposal popup should be closed when trigger character is removed
I20070608-1718 Auto-activated proposal popup should be closed when trigger character is removed. Steps: - open Find/Replace dialog, activate regex - type "\" or "\r" - when proposals appear, press Backspace until field is empty again Was: Proposals stay up Expected: Proposals should disappear when the triggering character is removed. This is also what happens in the Java Editor.
verified fixed
f81f1e4
["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-05T19:59:54Z
2007-06-14T11:20:00Z
252,904
Bug 252904 [Contributions] Contributions to the status trim bar are never disposed.
I've been working on a control contribution to the status bar and I ran into some problems because it was never being disposed. I tracked down the problem to the dispose() implementation in TrimContributionManager.ToolBarTrimProxy which looks like: public void dispose() { if (tbm != null) { tbm.removeAll(); tbm.dispose(); } } The problem is that tbm.removeAll() clears out the contribution items in the toolbar manager, so when the tbm.dispose() call is made it does not dispose the contribution items. Reversing these two calls seems to fix the problem.
verified fixed
e815b3e
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimContributionManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-05T19:12:36Z
2008-10-30T20:53:20Z
243,612
Bug 243612 [FieldAssist] Content assist does not work well with combo box.
To replicate the problem on a combo box with content assist enabled. This can be seen from the SDK Example provided with eclipse. Verified on 3.2-3.4 1. Click on the button to show the drop down list for the combo 2. Click on the editable text field of the combo 3. Initiate content assist on that text field 4. Now when we move the mouse, the focus is on the drop down list of the combo although it is hidden behind the content assist popup. Clicking once will fill the text field of the combo box with the value from the drop down list (which is hidden now). May be the combo box drop down list should close as soon as content assist is in effect?
verified fixed
7096574
["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-05T18:12:07Z
2008-08-08T18:26:40Z
252,940
Bug 252940 [Dialogs] DialogPage's dispose() method has a false javadoc specification
The DialogPage class's dispose() method is spec'ed as... /** * The <code>DialogPage</code> implementation of an * <code>IDialogPage</code> method does nothing. Subclasses may extend. */ ...unfortunately, the truth is that it actually does something rather important. public void dispose() { // deallocate SWT resources if (image != null) { image.dispose(); image = null; } } I am marking this as major since unwary subclasses that extends this method without calling super.dispose() will end up having a memory leak.
verified fixed
d2f35e4
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-05T17:02:31Z
2008-10-31T10:46:40Z
251,280
Bug 251280 [Dialogs] It's a PixelConverter party and everyone's invited
I was refactoring some code today and came across a PixelConverter class in PDE. I than did a search on the SDK to see who else was privy to having a PixelConverter class... turned out to be a party.
verified fixed
3c25f63
["bundles/org.eclipse.jface/src/org/eclipse/jface/layout/PixelConverter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-04T22:40:45Z
2008-10-17T19:00:00Z
230,394
Bug 230394 [JFace] MessageDialog.openQuestion() Javadoc
The MessageDialog.openQuestion() Javadoc says: * @return <code>true</code> if the user presses the OK button, * <code>false</code> otherwise But the dialog has Yes/No buttons, no "OK" button.
verified fixed
a0b6a8b
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-03T23:18:48Z
2008-05-06T13:20:00Z
182,122
Bug 182122 [Dialogs] CheckedTreeSelectionDialog#createSelectionButtons(Composite) fails to align the selection buttons to the right
Build ID: I20070323-1616 The first of the layout problems is that the selection buttons have unnecessary space on the right: 1. CheckedTreeSelectionDialog#createSelectionButtons(Composite) configures the buttonComposite it creates with a GridLayout that initially starts with 2 numColumns. 2. Later it uses Dialog#createButton(Composite,int,String,boolean) to create the buttons "Selection All" and "Deselect All" with their parent set to buttonComposite. Because the method in question retrieves the layout of the specified parent (i.e. buttonComposite) and increases its numColumns for each created Button, the GridLayout of buttonComposite ends up with numColumns set to 4 while there are only 2 Buttons. 3. So buttonComposite is left with unintended space on the right which is easily visible when buttonComposite is aligned to the right. The second of the layout problems is that the selection buttons are aligned to the left: 1. CheckedTreeSelectionDialog#createSelectionButtons(Composite) creates a GridData with GridData.HORIZONTAL_ALIGN_END|GridData.GRAB_HORIZONTAL which I think is intended to align buttonComposite to the right like ListSelectionDialog has the buttons "Select All" and "Deselect All" to the right. However, the GridData in question is not attached to any control with setLayoutData(Object) but is remembered in the argument composite using setData(Object) and doesn't seem to be retrieved later on. 2. So buttonComposite is left aligned to the left which is in contrast to the right-aligned buttons of ListSelectionDialog. More information: I think CheckedTreeSelectionDialog and ListSelectionDialog should be consistent and align the selection buttons to the same side.
verified fixed
fbe9583
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/CheckedTreeSelectionDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-03T22:48:04Z
2007-04-12T12:13:20Z
240,344
Bug 240344 Paste in bultin-browser goes to address field instead of form input field
Build ID: I20080617-2000 Steps To Reproduce: Launch a web application into the built-in browser that has a form. Click in a form field to place the cursor there. Press Ctrl-V or Select Edit/Paste in the menu. In either case the cliboard content is appended to the address bar in the browser.
resolved fixed
8bf660a
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserEditorActionBarContributor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-11-03T17:20:57Z
2008-07-10T14:26:40Z
252,497
Bug 252497 [WorkingSets] Image leak in Project Explorer context menu
Each time I open the view dropdown menu in the Project Explorer view, the icons for the working set menu contribution items are leaked. I.e., I have three working sets, so each time I open the menu three images are leaked. Here is a stack trace of the image allocation from Sleak: java.lang.Error at org.eclipse.swt.graphics.Device.new_Object(Device.java:806) at org.eclipse.swt.graphics.Resource.init(Resource.java:85) at org.eclipse.swt.graphics.Image.<init>(Image.java:577) at org.eclipse.jface.resource.URLImageDescriptor.createImage(URLImageDescriptor.java:162) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.ui.internal.WorkingSetMenuContributionItem.fill(WorkingSetMenuContributionItem.java:89) at org.eclipse.jface.action.MenuManager.doItemFill(MenuManager.java:731) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:812) at org.eclipse.ui.internal.ViewPane$PaneMenuManager.update(ViewPane.java:97) at org.eclipse.jface.action.MenuManager.handleAboutToShow(MenuManager.java:464) at org.eclipse.jface.action.MenuManager.access$1(MenuManager.java:459) at org.eclipse.jface.action.MenuManager$2.menuShown(MenuManager.java:485) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:235) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1008) at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:4120) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3824) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:342) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1576) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1937) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4557) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu._setVisible(Menu.java:250) at org.eclipse.swt.widgets.Display.runPopups(Display.java:3874) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3440) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:370) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:615) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
verified fixed
b678e7d
["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
2008-10-31T17:54:47Z
2008-10-28T21:40:00Z
252,219
Bug 252219 [DataBinding] [Databinding] Snippet000HelloWorld assume the Person model is a bean but it's only a POJO...
null
resolved fixed
82cbfed
["examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet000HelloWorld.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-28T19:57:02Z
2008-10-27T15:06:40Z
252,487
Bug 252487 [DataBinding] use Double.isNaN(d) instead of d!=d to check for NaN
There are two warnings in StringToNumberParser related to the fact that we use "doubleValue == doubleValue" to determine whether the value is NaN (suprisingly, NaN is never == NaN, even if it is the same variable). We should be using Double.isNaN(doubleValue) instead.
resolved fixed
dbb8f11
["bundles/org.eclipse.core.databinding/src/org/eclipse/core/internal/databinding/conversion/StringToNumberParser.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-28T19:54:39Z
2008-10-28T18:53:20Z
248,392
Bug 248392 View becomes disabled and completly nonfunctional
Eclipse 3.4 Steps to reproduce: 1.) Have a view visible in one perspective 2.) Have the same view as fast view in another perspective 3.) Right click on the fast view icon and select "Close" 4.) Go back to the first perspective Actual results: The view is not responding to mouse clicks anymore. You have to close and reopen it to make it functional again.
verified fixed
c0bf4a8
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewManager.java", "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
2008-10-28T14:11:39Z
2008-09-24T07:06:40Z
238,452
Bug 238452 [Browser] External browser parameters are not passed to external browser
Build ID: I20080609-1311 Steps To Reproduce: 1.When I set values in to the Edit External Web Browser dialog from Window->Preferences->General->WebBrowser->Use external web browse->Edit these parameters have no effect. 2. 3. More information: The buggy code is in org.eclipse.ui.internal.browser.browsers.MozillaFactory.createBrowser(String, String, String) public IWebBrowser createBrowser(String id, String location, String parameters) { // Create single browser for all clients if (browserInstance == null) { browserInstance = new MozillaBrowser(id, location); } return browserInstance; } Parameters are ignored
resolved fixed
79d46af
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/ExternalBrowserInstance.java", "bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserUtil.java", "bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaBrowser.java", "bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaFactory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-27T21:33:01Z
2008-06-25T18:53:20Z
252,105
Bug 252105 Javadoc warnings in N20081024-2000
/builds/N/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchActionConstants.java:727: warning - Tag @see: reference not found: org.eclipse.ui.internal.ShowInAction 1 warning
verified fixed
0a58d03
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchActionConstants.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T23:44:11Z
2008-10-26T00:13:20Z
246,462
Bug 246462 [DataBinding] [Databinding] Extend ControlObservableValue to observe Size, Location, Bounds and Focus of a control
null
verified fixed
b1b18e0
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/swt/SWTObservables.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/swt/ControlObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/swt/SWTProperties.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T18:51:28Z
2008-09-06T14:06:40Z
234,345
Bug 234345 [Viewers] AbstractTreeViewer#getChildren(Widget,Object[]) holds doc that it is experimental
a) Remove the experimental description => Why do we need this method b) Remove the method
verified fixed
dc99699
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T14:55:14Z
2008-05-28T13:06:40Z
243,347
Bug 243347 [Wizards] TarFile should not throw NPE in finalize()
I20080805-1307 TarFile#finalize() throws an NPE which is swallowed by the Finalizer thread. To reproduce, e.g. try to import a *.zip archive. Here, the constructor fails to initialize entryEnumerationStream, so it stays null: Thread [main] (Suspended (breakpoint at line 59 in TarFile)) TarFile.<init>(File) line: 59 TarFile.<init>(String) line: 84 ArchiveFileManipulations.isTarFile(String) line: 47 WizardArchiveFileResourceImportPage1.getFileSystemTree() line: 228 In the finalizer thread, the NPE is thrown: Daemon System Thread [Finalizer] (Suspended (exception NullPointerException)) TarFile.close() line: 71 TarFile.finalize() line: 158 Finalizer.invokeFinalizeMethod(Object) line: not available Finalizer.runFinalizer() line: 83 [local variables unavailable] Finalizer.access$100(Finalizer) line: 14 Finalizer$FinalizerThread.run() line: 160 [local variables unavailable]
verified fixed
2554239
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/TarFile.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T14:40:46Z
2008-08-06T16:26:40Z
242,225
Bug 242225 [Viewers] EditingSupport#setValue() doc
It would be nice if the Javadoc of org.eclipse.jface.viewers.EditingSupport#setValue(Object element, Object value) could mention that it is necessary to call this in order to show the new updated value: getViewer().update(row, null);
verified fixed
0ba5e15
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/EditingSupport.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T14:38:56Z
2008-07-28T13:00:00Z
180,392
Bug 180392 [DataBinding] Add support for shorts, bytes, and BigDecimal to StringToNumberConverter
We need to add the appropriate API to StringToNumberConverter and NumberToStringConverter for short and bytes as their boxed types are Numbers as well.
verified fixed
254ce71
["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/UpdateStrategy.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/NumberToStringConverter.java", "bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/conversion/StringToNumberConverter.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/conversion/NumberToStringConverterTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/conversion/StringToNumberConverterTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T14:34:07Z
2007-04-01T20:40:00Z
97,786
Bug 97786 [Viewers] - Lazy Virtual Table View Test - duplicate items appear after delete
3.1 RC1, Win XP - open the Lazy Virtual Table View Test - Scroll down so that element 6110 is the top item - select item 6114 and delete it - select item 6118 and delete it - scroll up two items so that 6108 is the top item - scroll back down and notice duplicate elements at item 6128 and 6129 6126 6127 6128 6129 6128 6129 6130 6131 you might not get the exact same index for the duplicates - it may depend on the number of visible items, etc. But it is definitely reproducible. Resetting the input and trying again will show the problem, but the duplicate items appear later in the list (numbers 6132 and 6133 were duplicates after I reset input and repeated the steps). The location of the duplicates is the same if you open/close the view. ie. once you find the duplicates, you can reproduce consistently by opening/closing the view and following the same steps.
verified fixed
dc13bca
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T13:39:46Z
2005-06-01T04:26:40Z
252,117
Bug 252117 [DataBinding] ListBinding does not update from model to target in some cases
null
verified fixed
10bb325
["bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/JavaBeanObservableList.java", "bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/JavaBeanObservableSet.java", "bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/JavaBeanPropertyObservableMap.java", "tests/org.eclipse.jface.tests.databinding.conformance/src/org/eclipse/jface/databinding/conformance/MutableObservableListContractTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/beans/JavaBeanObservableArrayBasedListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/beans/JavaBeanObservableArrayBasedSetTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/beans/JavaBeanObservableListTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/beans/JavaBeanObservableSetTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-26T13:06:54Z
2008-10-26T14:06:40Z
247,731
Bug 247731 [Browser] Eclipse requires restart after changing mozilla browser location in preferences
If a user tries to change the location of the Firefox executable in the "Web Browser" preference page, the user must restart Eclipse, but they are not told this. This is due to the MozillaFactory creating a single instance of a MozillaBrowser and never ensuring that the executable paths are the same. Changing this preference may look like it doesn't do anything (or that they did something wrong) to the user since their new preference value is not properly used.
resolved fixed
56d1edb
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaBrowser.java", "bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/browsers/MozillaFactory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T22:44:38Z
2008-09-17T19:33:20Z
134,190
Bug 134190 [JFace] NPE in StatusLine class
In class org.eclipse.jface.action.StatusLine, method SubTask(String name) NPE. StatusLine.subTask(String) line: 552 StatusLineManager$1.subTask(String) line: 205 EventLoopProgressMonitor(ProgressMonitorWrapper).subTask(String) line: 154 EventLoopProgressMonitor.subTask(String) line: 171 SBModelManager.saveModelState(IProject, IProgressMonitor) line: 175 It happens if beginTask method was never called before. I think it is better to check fTaskName.
verified fixed
948a9c0
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLine.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T20:03:51Z
2006-03-30T23:06:40Z
201,391
Bug 201391 [MPE] notification when active page of a MultiPageEditorPart changes
3.4 M1. I could not find a listener that informs when the active page of a MultiPageEditorPart changes.
verified fixed
d3ea18f
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IPartService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartList.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartListenerList2.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WWinPartService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPagePartList.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/MultiPageEditorPart.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/multipageeditor/MultiVariablePageEditor.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/multipageeditor/MultiVariablePageTest.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/multipageeditor/PartPageListener.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T16:51:36Z
2007-08-28T08:33:20Z
251,997
Bug 251997 [Wizards] StackOverflowError in WizardsRegistryReader
null
verified fixed
0099411
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/WizardsRegistryReader.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T13:21:20Z
2008-10-24T12:06:40Z
251,996
Bug 251996 [Workbench] WorkbenchLabelProvider leaks
null
verified fixed
67e925f
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/model/WorkbenchLabelProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T13:06:40Z
2008-10-24T12:06:40Z
251,995
Bug 251995 [LinkedResources] Error logged when opening Properties dlg on a Linked Resource folder involving a path variable
null
verified fixed
2459568
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T13:04:48Z
2008-10-24T12:06:40Z
236,795
Bug 236795 [JFace] SWT Exception creates endless cycle
null
closed fixed
ec93395
["bundles/org.eclipse.jface/src/org/eclipse/jface/operation/ModalContext.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ExceptionHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-24T12:49:25Z
2008-06-12T05:53:20Z
246,105
Bug 246105 [Dialogs] Title and description not layed out properly when title image is null
null
verified fixed
f8b3e36
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/TitleAreaDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-23T18:51:06Z
2008-09-03T16:40:00Z
241,849
Bug 241849 [Markers] Need a property tester to test the marker type of a MarkerEntry
Build ID: I20080617-2000 Steps To Reproduce: There is no property tester defined in org.eclipse.ui.ide for testing the marker type of a MarkerEntry in a marker view. Such a tester would be very useful for clients who are trying to add popup menu items to a marker view. I could define a property tester in my own plug-in for testing the marker type, but then I run in to plug-in activation issues. It would be better for the tester to be defined in a lower-level plug-in. More information: In 3.4, the marker views no longer support using object contributions to add to the popup menu. This means that existing object contributions need to be migrated to the command/handler infrastructure. However, with object contributions, it was possible to control visibility and enablement using the filters defined in IMarkerActionFilter. The command/handler infrastructure uses property testers to accomplish this sort of filtering instead; it would be nice for the platform to define property testers equivalent to these filters to make migration easier.
resolved fixed
fe34cf1
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/WorkbenchMarker.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerPropertyTester.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/internal/InternalTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/markers/MarkerTesterTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-23T14:57:41Z
2008-07-23T19:06:40Z
251,001
Bug 251001 [Commands] Removed unused Action classes related to Update Manager
null
resolved fixed
de5fd06
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/update/ConfigurationManagerAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/update/InstallWizardAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-23T14:22:02Z
2008-10-15T19:46:40Z
219,901
Bug 219901 [Undo] new file creation subjec to Undo (file deleted without warning)
when creating a new file by right clicking on your project in the project explorer new->file this action is put on the undo/redo stack. Pressing Ctrl-Z to undo this action will thus delete your file. As this stack is separate from the stack in the editor , one can create a new file, work for a long time, then inadvertently press ctrl-z to undo a code change while having the focus on the project explorer and irrevocably lose their file. Redo will create a new EMPTY file; the work is gone, forever. This appears to only work for the "new file", not for "new->source file" etc. Although some may perceive this as a feature, it is hard to imagine a scenario where ctrl-z should permanently delete a file without warning.
verified fixed
9cf3737
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/newresource/BasicNewProjectResourceWizard.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-22T22:15:59Z
2008-02-22T03:13:20Z
251,193
Bug 251193 closing the WorkbenchWindow causes the RectangleAnimation to fail
null
verified fixed
bb89cfe
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AnimationEngine.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/AnimationFeedbackBase.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DefaultAnimationFeedback.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FaderAnimationFeedback.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewBar.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ImageAnimationFeedback.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/LegacyAnimationFeedback.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/TrimDropTarget.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewPane.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-22T19:03:25Z
2008-10-17T07:53:20Z
251,257
Bug 251257 [Contributions] IAction.setImageDescriptor() javadoc needs to note "image vs. checked" platform discrepancy
null
verified fixed
5d632b9
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/IAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-22T18:36:46Z
2008-10-17T16:13:20Z
38,789
Bug 38789 [Commands] parameters: Provide commands for the "Show In" menu items -- allowing key bindings
This is for M1. I assigned a key to "Show in Package Explorer" (Ctrl+Alt+O). I open a Java file and press the key, the file is show in the Package Explorer. I open a text file and press the key, nothing happens. However if I select from the menu Navigate -> Show In -> Package Explorer, the file is show in the Package Explorer.
verified fixed
2d3e7d7
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowInAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowInHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowInMenu.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
2008-10-21T21:07:24Z
2003-06-11T16:46:40Z
251,444
Bug 251444 [Contributions] MenuService registry changes causes CME
null
verified fixed
c40f542
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-21T20:45:03Z
2008-10-20T19:13:20Z
247,720
Bug 247720 [FieldAssist] Field Assist Example password field mixes chars with *'s
3.5M2 candidate - when the Field Assist Example is shown its Password contains ***** - but when you type in the field non-* characters are shown - I'm not sure if this field should have style PASSWORD, or if *'s should be shown in the regular Text field, but showing the *'s initially and then showing regular characters when typing looks broken
verified fixed
1503681
["examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/FieldAssistTestDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-21T18:45:30Z
2008-09-17T19:33:20Z
251,568
Bug 251568 javadoc warnings in N20081020-2000
These warnings are reported by the releng check. /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:525: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:519: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:538: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:532: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:486: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:480: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:564: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:558: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:499: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:493: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:551: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:545: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:577: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:571: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:512: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor /builds/N200810202000/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java:506: warning - Tag @see: can't find Cursor(Display, ImageData, ImageData, int, int) in org.eclipse.swt.graphics.Cursor 16 warnings
verified fixed
f4f6d3b
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISharedImages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-21T18:39:30Z
2008-10-21T17:26:40Z
217,761
Bug 217761 [Viewers] Widget is disposed when DecoratorManager tries to update Viewer that's gone
-- Error Log -- Date: Mon Feb 04 13:39:57 PST 2008 Message: Problems occurred when invoking code from plug-in: "org.eclipse.jface". Severity: Error Plugin ID: org.eclipse.jface Stack Trace: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3563) at org.eclipse.swt.SWT.error(SWT.java:3481) at org.eclipse.swt.SWT.error(SWT.java:3452) at org.eclipse.swt.widgets.Widget.error(Widget.java:438) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:376) at org.eclipse.swt.widgets.Widget.getData(Widget.java:464) at org.eclipse.jface.viewers.AbstractTreeViewer.associate(AbstractTreeViewer.java:688) at org.eclipse.jface.viewers.AbstractTreeViewer.doUpdateItem(AbstractTreeViewer.java:980) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2026) at org.eclipse.jface.viewers.StructuredViewer.internalUpdate(StructuredViewer.java:2009) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1953) at org.eclipse.jface.viewers.ColumnViewer.update(ColumnViewer.java:553) at org.eclipse.ui.navigator.CommonViewer.update(CommonViewer.java:428) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1905) at org.eclipse.jface.viewers.StructuredViewer.handleLabelProviderChanged(StructuredViewer.java:1118) at org.eclipse.ui.navigator.CommonViewer.handleLabelProviderChanged(CommonViewer.java:177) at org.eclipse.jface.viewers.ContentViewer$1.labelProviderChanged(ContentViewer.java:74) at org.eclipse.ui.internal.decorators.DecoratorManager$1.run(DecoratorManager.java:239) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.decorators.DecoratorManager.fireListener(DecoratorManager.java:237) at org.eclipse.ui.internal.decorators.DecorationScheduler$3.runInUIThread(DecorationScheduler.java:526) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:94) 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:3296) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2974) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447) at org.eclipse.equinox.launcher.Main.run(Main.java:1173) at org.eclipse.equinox.launcher.Main.main(Main.java:1148)
verified fixed
d15be9a
["bundles/org.eclipse.jface/src/org/eclipse/jface/internal/InternalPolicy.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-21T18:36:08Z
2008-02-04T21:20:00Z
247,818
Bug 247818 [StatusHandling] WorkbenchStatusDialogManager should inform of dialog closure
null
resolved fixed
13c2109
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchErrorHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-21T16:36:15Z
2008-09-18T12:13:20Z
230,349
Bug 230349 [StatusHandling] Status label provider should not be disposed when its modality is switched
null
resolved fixed
4ebb856
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-21T10:42:47Z
2008-05-06T10:33:20Z
84,107
Bug 84107 [DnD] DragCursors should be shared
Can the cursors defined in org.eclipse.ui.internal.DragCursors be exposed? We'd like to re-use these cursors but don't want to use internal API. Perhaps something like ISharedImages can be set up to share cursors as well. Can this be fixed in time for the 3.1 release?
verified fixed
179f69e
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISharedImages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/DragCursors.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IWorkbenchGraphicConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchImages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-20T17:17:26Z
2005-02-01T01:06:40Z
244,047
Bug 244047 [Browser] Extension point schema previews open in internal browser
I20080812-0800, was OK in 3.4 Extension point schema previews open in an internal browser, even though I've set Preferences > General > Web Browsing > Use external Web browser.
resolved fixed
77cd5fd
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/DefaultBrowserSupport.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-09T16:20:19Z
2008-08-13T17:53:20Z
247,945
Bug 247945 [WorkbenchParts] IWorkbenchPartReference's getPart(boolean) method refers to editors
Currently, the javadoc is... /** * Returns the IWorkbenchPart referenced by this object. * Returns <code>null</code> if the editors was not instantiated or * it failed to be restored. Tries to restore the editor * if <code>restore</code> is true. */ ...which is incorrect since views are workbench parts too.
verified fixed
d1b4f00
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPartReference.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-06T19:21:41Z
2008-09-19T10:26:40Z
43,573
Bug 43573 [Contributions] Support icon in <menu>
Can we have support for the icon attribute in the <menu> tag under <extension point="org.eclipse.ui.popupMenus"> That way menu groups can have support for their own icons?
verified fixed
71796c7
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginActionBuilder.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-06T17:49:14Z
2003-09-24T13:26:40Z
244,145
Bug 244145 [ErrorHandling] UIJob eats possible exception
null
resolved fixed
dfb0942
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/UIJob.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-03T21:29:31Z
2008-08-14T10:33:20Z
242,832
Bug 242832 [ErrorHandling] [statushandling] WSDM#getSecondaryMessage should consequently check for message duplication
We look for duplication in all possibilities except if we have only an exception name.
resolved fixed
3a9d8ad
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-03T19:40:52Z
2008-08-01T08:40:00Z
249,281
Bug 249281 [StatusHandling] Display.sleep should be used instead of Thread.yield
null
resolved fixed
bb5fb11
["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
2008-10-03T19:15:44Z
2008-10-01T08:33:20Z
249,514
Bug 249514 [Viewers] [JFace] NPE setting StructuredSelection(Object[])
Build ID: I20080617-2000 Steps To Reproduce: 1. Pass null to new StructuredSelection(Object[]) 2. Watch NPE occur More information: The problem is there is no check on the the constructor for a null array. The javadoc doesn't specify that null is an illegal value, but looking at the class, it appears the other constructors do not allow null. Proposed fix: * Update the javadoc to say null is not allowed * Add an Assert.isNotNull to the constructor to match other constructors. Stacktrace: Thread [main] (Suspended (exception NullPointerException)) StructuredSelection.<init>(Object[]) line: 61 CategoriesView(SmalltalkBrowsingPart).selectAll(boolean) line: 864 CategoriesView.setSelection(IStructuredSelection, boolean) line: 274 CategoriesView(SmalltalkBrowsingPart).adjustInputAndSetSelection(Object) line: 797 CategoriesView.adjustInputAndSetSelection(Object) line: 253 CategoriesView(SmalltalkBrowsingPart).selectionChanged(IWorkbenchPart, ISelection) line: 731 CategoriesView.selectionChanged(IWorkbenchPart, ISelection) line: 224 PageSelectionService(AbstractSelectionService).firePostSelection(IWorkbenchPart, ISelection) line: 179 AbstractSelectionService$2.selectionChanged(SelectionChangedEvent) line: 71 StructuredViewer$3.run() line: 842 SafeRunner.run(ISafeRunnable) line: 37 Platform.run(ISafeRunnable) line: 880 JFaceUtil$1.run(ISafeRunnable) line: 48 SafeRunnable.run(ISafeRunnable) line: 175 TreeViewer(StructuredViewer).firePostSelectionChanged(SelectionChangedEvent) line: 840 TreeViewer(StructuredViewer).handlePostSelect(SelectionEvent) line: 1153 StructuredViewer$5.widgetSelected(SelectionEvent) line: 1178 OpenStrategy.firePostSelectionEvent(SelectionEvent) line: 251 OpenStrategy.access$5(OpenStrategy, SelectionEvent) line: 245 OpenStrategy$3.run() line: 419 RunnableLock.run() line: 35 UISynchronizer(Synchronizer).runAsyncMessages(boolean) line: 133 Display.runAsyncMessages(boolean) line: 3800 Display.readAndDispatch() line: 3425 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 2382 Workbench.runUI() line: 2346 Workbench.access$4(Workbench) line: 2198 Workbench$5.run() line: 493 Realm.runWithDefault(Realm, Runnable) line: 288 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 488 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 149 IDEApplication.start(IApplicationContext) line: 113 EclipseAppHandle.run(Object) line: 193 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 382 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 45 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 612 Main.invokeFramework(String[], URL[]) line: 549 Main.basicRun(String[]) line: 504 Main.run(String[]) line: 1236 Main.main(String[]) line: 1212
verified fixed
9a1a95b
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredSelection.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-03T17:08:20Z
2008-10-02T15:06:40Z
249,378
Bug 249378 [Viewers] Make ArrayContentProvider a singleton
ArrayContentProvider contains zero state, and is not intended to be subclassed. Adding a static getter class to allow sharing a single instance of the ArrayContentProvider will improve performance and reduce memory usage.
verified fixed
975549a
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ArrayContentProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-03T15:46:38Z
2008-10-01T19:40:00Z
249,574
Bug 249574 [Contributions] ExternalActionManager.addPropertyChangeListener() doesn't register the ListenerList
null
resolved fixed
7cd6dbf
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ExternalActionManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-03T15:22:32Z
2008-10-03T07:46:40Z
249,435
Bug 249435 CollapseAllHandler has incorrect javadoc
At the class level javadoc, it says... handlerService.activateHandle(CollapseAllHandler.COMMAND_ID, collapseHandler); ...it should be... handlerService.activateHandler(CollapseAllHandler.COMMAND_ID, collapseHandler); ...activeHandler, not activateHandle.
resolved fixed
1f61850
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/CollapseAllHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-02T19:48:34Z
2008-10-02T06:46:40Z
218,137
Bug 218137 [ErrorHandling] Errors for multiple jobs are displayed in many dialogs
Build ID: I20071211-0010 Steps To Reproduce: 1. Try org.eclipse.ui.tests/Manual Component Tests/StatusHandling.txt, section 'Job'. Please launch new eclipse and then perform manual tests. 2. During the first run error dialog will be displayed twice. For further tests statuses will be displayed in one dialog.
resolved fixed
e763085
["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
2008-10-02T11:09:06Z
2008-02-07T10:26:40Z
249,272
Bug 249272 [StatusHandling] Clipboard in WSDM is never used
null
resolved fixed
a94d8a9
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-10-02T09:25:05Z
2008-10-01T08:33:20Z
247,933
Bug 247933 [StatusHandling] During the modality switch the state of details/support is not preserved correctly
null
resolved fixed
faa47d3
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-22T10:26:39Z
2008-09-19T07:40:00Z
247,651
Bug 247651 javadoc warning in org.eclipse.ui.workbench in I20080916-2000
null
verified fixed
7afd7d8
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/about/IInstallationPageContainer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-17T19:27:58Z
2008-09-17T14:00:00Z
246,612
Bug 246612 [FilteredTree] FilteredTree renders all parent items of matches bold
null
verified fixed
8c221c9
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-16T18:08:17Z
2008-09-08T16:06:40Z
247,440
Bug 247440 API error in IWorkbenchPreferenceConstants
null
verified fixed
8a73030
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-16T12:09:58Z
2008-09-16T13:00:00Z
246,959
Bug 246959 [WorkingSets] addPropertyChangeListener deprecated on impl but not on interface
Like that for years. WorkbenchPage.addPropertyChangeListener(IPropertyChangeListener) is deprecated but in the corresponding interface it is not. We should also deprecate IWorkbenchPage.addPropertyChangeListener(...).
verified fixed
6b00f02
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-12T18:28:18Z
2008-09-11T08:00:00Z
246,373
Bug 246373 [Dialogs] [Progress] ProgressMonitor dialog missing a null check when blocked
Build ID: M20080903-2000 Failed to execute runnable (java.lang.NullPointerException) org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3777) at org.eclipse.swt.SWT.error(SWT.java:3695) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:136) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3342) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3071) at org.eclipse.team.tests.ccvs.ui.ModelParticipantSyncInfoSource.waitUntilFamilyDone(ModelParticipantSyncInfoSource.java:199) at org.eclipse.team.tests.ccvs.ui.ModelParticipantSyncInfoSource.waitForCollectionToFinish(ModelParticipantSyncInfoSource.java:182) at org.eclipse.team.tests.ccvs.ui.ModelParticipantSyncInfoSource.internalMergeResources(ModelParticipantSyncInfoSource.java:399) at org.eclipse.team.tests.ccvs.ui.ModelParticipantSyncInfoSource.mergeResources(ModelParticipantSyncInfoSource.java:364) at org.eclipse.team.tests.ccvs.ui.ModelParticipantSyncInfoSource.overrideAndUpdateResources(ModelParticipantSyncInfoSource.java:418) at org.eclipse.team.tests.ccvs.core.subscriber.CVSWorkspaceSubscriberTest.overrideAndUpdate(CVSWorkspaceSubscriberTest.java:266) at org.eclipse.team.tests.ccvs.core.subscriber.CVSWorkspaceSubscriberTest.testDeletionConflicts(CVSWorkspaceSubscriberTest.java:715) at org.eclipse.team.tests.ccvs.core.EclipseTest.runTest(EclipseTest.java:1391) at org.eclipse.team.tests.ccvs.core.EclipseTest.runBare(EclipseTest.java:1238) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) 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:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3342) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3071) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) 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:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30) Caused by: java.lang.NullPointerException at org.eclipse.jface.dialogs.ProgressMonitorDialog$ProgressMonitor.setBlocked(ProgressMonitorDialog.java:268) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog$4.setBlocked(ProgressMonitorJobsDialog.java:456) at org.eclipse.ui.internal.progress.ProgressMonitorFocusJobDialog$10.run(ProgressMonitorFocusJobDialog.java:313) at org.eclipse.ui.internal.progress.ProgressMonitorFocusJobDialog$9.run(ProgressMonitorFocusJobDialog.java:293) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133)
verified fixed
9c13216
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ProgressMonitorDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-10T18:15:59Z
2008-09-05T13:06:40Z
40,632
Bug 40632 [Dialogs] Open Resource should have "open with" area to override default open behavior
When using Open Resource window you should be able to rc on any of the items found and open choose to open in the text editor instead of having to accept the default open behavior of the resource.
resolved fixed
fec280a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchImages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-10T16:56:29Z
2003-07-22T21:40:00Z
246,209
Bug 246209 [Viewers] OpenStrategy postSelection delay hinders automated testing
Build ID: I20080617-2000 Steps To Reproduce: The initializeHandler method runs the firePostSelectionEvent after the TIME=500 ms, which causes the automated tests to fail unless the thread is made to sleep for 500+ ms after each arrow key pressed, which is cumbersome. More information: Could we have the TIME member public, to set to 0 when testing? Probably that would be a good idea to have some kind of a more global flag (maybe in Display) to turn off optimizations that are hostile to event driven testing?
verified fixed
a4ceec2
["bundles/org.eclipse.jface/src/org/eclipse/jface/util/OpenStrategy.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-09T16:37:39Z
2008-09-04T14:53:20Z
245,761
Bug 245761 [Presentations] Lazy IndexOutOfBoundsException in PresentationSerializer.getPart
When restoring after some failure, PresentationSerializer.getPart can get many out of range numeric ids. Throwing and ignoring an IndexOutOfBoundsException for each makes debugging very hard and is just lazy programming. Please replace the catch by if (index < parts.size()) { IPresentablePart result = (IPresentablePart) parts.get(index); return result; }
verified fixed
c615159
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/PresentationSerializer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-05T17:59:57Z
2008-08-30T07:06:40Z
246,384
Bug 246384 [PropertiesDialog] propertyPages extension point does not allow forcePluginActivation when using core.expression's property tester
null
verified fixed
2c81b97
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/RegistryPageContributor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-05T17:55:36Z
2008-09-05T13:06:40Z
246,383
Bug 246383 [KeyBindings] AWT Text fields no longer receive delete key pressed event in workbench
null
verified fixed
f44f2cd
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/WidgetMethodHandler.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IActionBarsTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-05T17:53:20Z
2008-09-05T13:06:40Z
246,382
Bug 246382 [KeyBindings] Emacs Binding not visible
null
verified fixed
73cedaf
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/model/KeyController.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-05T17:51:31Z
2008-09-05T13:06:40Z
246,381
Bug 246381 [GlobalActions] GlobalUndoAction / GlobalRedoAction causes NPE by unsafely disposing old delegate
null
verified fixed
7d5db78
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/OperationHistoryActionHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-09-05T17:49:04Z
2008-09-05T13:06:40Z
245,710
Bug 245710 [Workbench] Eclipse process continues to run in background after shutdown
null
resolved fixed
c674ee2
["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
2008-08-29T15:30:24Z
2008-08-29T14:26:40Z
245,437
Bug 245437 [Preferences] (HEAD) Preference pages not scrollable (accessible) via keyboard
null
verified fixed
2b311c9
["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
2008-08-27T20:07:01Z
2008-08-27T20:46:40Z
242,788
Bug 242788 a lot of popup ends up as null error
null
resolved fixed
02eee18
["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
2008-08-19T22:07:17Z
2008-07-31T21:33:20Z
200,316
Bug 200316 [CommonNavigator] Can not contribute property page to classpath container in project explorer
null
verified fixed
8794aba
["bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/PropertiesActionProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-18T17:59:30Z
2007-08-17T08:40:00Z
236,612
Bug 236612 [ActivityMgmt] Endless loop in MutableActivityManager.getIdentifier(..)
I20080609-1311, Sun JDK 1.6.0_05-b13 This never happened to me before, but now I ran into this the second time in two days. Both times, I was working in my development workbench and pressed Ctrl+H to open the search dialog. The UI thread froze, CPU went up to 100% on one core, and stack dumps always looked like the one below. From another Eclipse instance, I attached the debugger to the running Eclipse. With some debugging using the Display view, I found that the data in the WeakHashMap was screwed up. The table contained several WeakHashMap.Entry objects whose 'next' field formed cycles (i.e. for Entry e, e.next.next was the same as e). I don't quite understand why MutableActivityManager#activitiesById must be a WeakHashMap. However, I think it's not safe to even just read a WeakHashMap from multiple threads without synchronization (e.g. from the UI thread and from MutableActivityManager.getUpdateJob().new Job() {...}.run(IProgressMonitor)), since every WeakHashMap#get() may cause a structural change (via getTable() -> expungeStaleEntries()). "main" prio=6 tid=0x00397000 nid=0xa58 runnable [0x009de000..0x009dfe68] java.lang.Thread.State: RUNNABLE at java.util.WeakHashMap.get(WeakHashMap.java:355) at org.eclipse.ui.internal.activities.MutableActivityManager.getIdentifier(MutableActivityManager.java:186) at org.eclipse.ui.internal.activities.ProxyActivityManager.getIdentifier(ProxyActivityManager.java:76) at org.eclipse.ui.activities.WorkbenchActivityHelper.filterItem(WorkbenchActivityHelper.java:218) at org.eclipse.search.internal.ui.SearchDialog.filterByActivities(SearchDialog.java:339) at org.eclipse.search.internal.ui.SearchDialog.<init>(SearchDialog.java:152) at org.eclipse.search.internal.ui.OpenSearchDialogAction.run(OpenSearchDialogAction.java:53) at org.eclipse.search.internal.ui.OpenSearchDialogAction.run(OpenSearchDialogAction.java:45) at org.eclipse.ui.internal.handlers.ActionDelegateHandlerProxy.execute(ActionDelegateHandlerProxy.java:289) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:471) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:822) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:511) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:126) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1184) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1040) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1352) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3894) at org.eclipse.swt.widgets.Tree.WM_CHAR(Tree.java:5795) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3787) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:5791) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4541) at org.eclipse.swt.internal.win32.OS.$$YJP$$DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2370) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3420) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) 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:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
verified fixed
2aff330
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/MutableActivityManager.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-18T14:04:59Z
2008-06-11T13:13:20Z
242,466
Bug 242466 [JFace] Widget is disposed error when closing dialog from OSX dock
- run the snippet below which shows a dialog - right-click its icon in the OSX dock and select Quit -> the exception at the bottom will be spewed - it looks like the last line of Window.runEventLoop(Shell) should change from: display.update(); to... if (!display.isDisposed()) display.update(); snippet: public static void main (String [] args) { try { final Display display = new Display (); final Shell shell = new Shell (display); TitleAreaDialog dialog = new TitleAreaDialog(shell); dialog.setBlockOnOpen(true); dialog.open(); display.dispose (); } catch (Exception e) { e.printStackTrace(); } } exception: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3777) at org.eclipse.swt.SWT.error(SWT.java:3695) at org.eclipse.swt.SWT.error(SWT.java:3666) at org.eclipse.swt.widgets.Display.error(Display.java:1126) at org.eclipse.swt.widgets.Display.checkDevice(Display.java:626) at org.eclipse.swt.widgets.Display.update(Display.java:4084) at org.eclipse.jface.window.Window.runEventLoop(Window.java:832) at org.eclipse.jface.window.Window.open(Window.java:801) at win32.Main1.main(Main1.java:20)
verified fixed
1abba9f
["bundles/org.eclipse.jface/src/org/eclipse/jface/window/Window.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-15T17:11:25Z
2008-07-29T19:33:20Z
161,095
Bug 161095 [CommonNavigator] Drag and Drop of non IResource items causes FileTransfer to be created with null data
I am not sure whether this is the right behavior or not. This is found when using this Project Explorer with an Editor that expects an FileTransfer (like SSE or Page Designer). A FileTransfer gets created on drag, but becuase the selection in the Project Explorer is not adapted to IResource, the constructed FileTransfer contains null . So, when Dnd an non IResource or IFile adapted item (such as Java Resources: src node) - onto the editor: 1. The Editor expects an FileTransfer. 2. When CommonDragAdapter - in dragSetData(event) code : - ResourceDragAdapterAssistant is used to match the FileTransfer - on setDragData method : IResource[] resources = getSelectedResources(aSelection); will return empty. 3. When Editor tries to retrieve the data from the FileTransfer : - SSE gets an ClassCasteException (because its expecting String[], but got an Object instead. - Page Designer gets and SWTException (from FileTransfer.nativeToJava() which calls FileTransfer.javaToNative (see that null will toss the invalid data exception) It seems that FileTransfer should not be created by the Project Explorer when Drag source is not an IResource adapted node.
resolved fixed
64eaccc
["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonDragAdapter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-15T01:46:41Z
2006-10-16T17:33:20Z
189,529
Bug 189529 [CommonNavigator] Project Navigator - Customization dialog should use straight tabs or border
3.3. I0527 1. Open the resource perspective with the Project Navigator 2. Click the view menu and select "Customization" The resulting dialog has two tabs along the tops. These tabs look odd because they are using the curved style but no top border. Thus you get a curve for the unselected tab but that curve just stops. The dialog is better to use the traditional tab style, or it needs to add a top border (which probably won't look good though). Other choise is to use the 3.0 presentation style, which is curved selected tab but straight for the non selected.
verified fixed
eac10bd
["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/filters/CommonFilterSelectionDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-15T01:43:37Z
2007-05-28T22:06:40Z
217,801
Bug 217801 [CommonNavigator] Capability filtering of commonWizard extensions uses wrong identifier
null
verified fixed
afbae9b
["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/wizards/CommonWizardDescriptor.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ActivityTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestSuite.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/OpenTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineTest.java", "tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-15T01:40:35Z
2008-02-05T11:13:20Z
220,559
Bug 220559 Regression in some open editor performance tests
Verifying build I20080226-1155, it looks like some open editors tests are seriously red: - OpenJavaEditorTest#testOpenEditor3(): between -16.1% and -36% - OpenJavaEditorTest#testOpenEditor4(): between -18.1% and -39.2%
resolved fixed
34e2b00
["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-15T01:38:22Z
2008-02-27T13:46:40Z
238,162
Bug 238162 [RCP] Remove dependency on org.eclipse.update.core
Build: 3.4 final I noticed while browsing code that IDEWorkbenchAdvisor has a method "checkUpdates" which makes a call to update manager API (SiteManager.handleNewChanges()). Looking through the history, I see this SiteManager.handleNewChanges() method has had an empty body since the 3.0 release, so it's a no-op to call it. This reference should be removed because it allows org.eclipse.ui.ide.application to remove its dependency on org.eclipse.update.*. We will be gradually removing dependencies on classic update and this one is an easy place to start.
resolved fixed
8db4538
["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-14T20:48:56Z
2008-06-23T19:40:00Z
243,209
Bug 243209 [ActivityMgmt] NPE in org.eclipse.ui.internal.activities.Identifer prevents menu contributions from showing up
Build ID: I20080617-2000 (Version 3.4.0) In the code of Identifier.removeIdentifierListener(), only part of the code is guarded aganist NPEs. When the NPE occurs, menu contributions don't show up. A patch is attached to fix the problem.
verified fixed
b029607
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/activities/Identifier.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-14T14:42:13Z
2008-08-05T18:13:20Z
208,804
Bug 208804 [CommonNavigator] change "Navigator" view perspective links
null
resolved fixed
7631b0b
["bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/ResourcePerspective.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-13T22:58:31Z
2007-11-05T19:13:20Z
242,900
Bug 242900 [Markers] (3.4 maint.) Test failure in MarkersViewColumnSizeTest.testColumnRestore
junit.framework.AssertionFailedError: Column sizes not restored at org.eclipse.ui.tests.markers.MarkersViewColumnSizeTest.testColumnRestore(MarkersViewColumnSizeTest.java:73) 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:62) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:114) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3378) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3036) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2382) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2346) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:493) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:488) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:46) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30)
verified fixed
ce0e0ca
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/markers/MarkersTestMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-05T19:41:15Z
2008-08-01T17:00:00Z
215,941
Bug 215941 [Help] Help content for dialogs should open in a new window
null
resolved fixed
afe086f
["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/DefaultBrowserSupport.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-08-05T17:27:49Z
2008-01-21T07:20:00Z
238,909
Bug 238909 [DataBinding] Correctly set the staleness state of the validation status observable of the MultiValidator
For Bindings, the validation status observable should be stale whenever either the target or model observable is stale. For the MultiValidator, the validation status observable should be stale whenever any of its dependencies accessed from within the MultiValidator#validate() is stale.
verified fixed
68060d8
["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/validation/MultiValidator.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/validation/MultiValidatorTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T20:17:11Z
2008-06-29T17:20:00Z
242,017
Bug 242017 [DataBinding] ButtonObservableValue does bot store the inital value during init causing the next change to be dropped
Build ID: 3.4.0 - I20080617-2000 Steps To Reproduce: 1. Create a Check Box button whose initial value is CHECKED 2. Create a Text Box 2. Create a binding with checkbox's selection as the model with Text Box's enablement as the target 3. Watch the enablement change by checking, unchecking the check box The text box's enablement does not change when the check box is unchecked first. More information: This is due to the fact that the ButtonObservableValue in its init method does not store the initial selection status pf the button. Therefore the first change, transition to unchecked stated is falsely equal with the *current* state of the writable value. Therefore change is dropped and further bindings processing is terminated. Initializing the default current state with: this.selectionValue = button.getSelection(); at the end of the init method fixes the problem. Regards, Hasan Ceylan
verified fixed
7dfb4b4
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/swt/ButtonObservableValue.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T19:32:55Z
2008-07-24T20:06:40Z
235,195
Bug 235195 [Wizards] [DataBinding] Non-error statuses not handled correctly by WizardPageSupport class
Build ID: I20080516-1333 Steps To Reproduce: 1. Setup a DataBindingContext inside a wizard page whose validation status consists of an INFO or WARNING. 2. Attach the DataBindingContext to a WizardPageSupport instance. 3. The wizard page will erroneously be set to be not complete.
resolved fixed
7aab53c
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/wizard/WizardPageSupport.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/wizard/WizardPageSupportTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T19:00:02Z
2008-06-02T18:06:40Z
236,605
Bug 236605 [DataBinding] Duplicate entries in bound list after update
null
resolved fixed
60d5383
["bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/beans/JavaBeanObservableList.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/beans/JavaBeanObservableListTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:37:44Z
2008-06-11T10:26:40Z
240,009
Bug 240009 [Viewers] FilteredTree.getBoldFont calls filter.setPattern many times
getBoldFont is called by the label provider for each matching item. We are doing too much work.
verified fixed
4194886
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:18:26Z
2008-07-08T15:13:20Z
242,765
Bug 242765 [Commands] NPE in ContributedAction.runWithEvent()
null
resolved fixed
ad49697
["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
2008-07-31T18:10:45Z
2008-07-31T18:46:40Z
242,760
Bug 242760 [Browser] Delete key is eaten in Internal Web Browser
null
resolved fixed
7c40447
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/WorkbenchKeyboard.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:09:40Z
2008-07-31T16:00:00Z
242,446
Bug 242446 [Contributions] ActionDelegateHandlerProxy fails with ClassCastException
null
resolved fixed
9a82c2a
["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
2008-07-31T18:08:03Z
2008-07-29T19:33:20Z
242,427
Bug 242427 [Commands] IAction.AS_RADIO_BUTTON actions contributed with ActionContributionItem to MenuManager have problems getting checked on selection
null
resolved fixed
48660f5
["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ActionContributionItem.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:06:52Z
2008-07-29T16:46:40Z
242,421
Bug 242421 [KeyBindings] WARNING messages generated for incorrect message content in plugin org.eclipse.ui.workbench
null
resolved fixed
bb71a7c
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeyAssistDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:05:14Z
2008-07-29T16:46:40Z
242,411
Bug 242411 [GlobalActions]'Export...' and 'Exit' menu items under the 'File' menu share the same mnemonic
null
resolved fixed
7958811
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ActionFactory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:04:01Z
2008-07-29T16:46:40Z
242,409
Bug 242409 [Preferences] Preference links don't switch preference pages if dialog already open in tips and tricks
null
resolved fixed
c22e399
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ShowPreferencePageHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-31T18:02:45Z
2008-07-29T16:46:40Z
208,160
Bug 208160 [JFace] Request for RowLayoutFactory
null
verified fixed
cd331d9
["bundles/org.eclipse.jface/src/org/eclipse/jface/layout/GridDataFactory.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/layout/RowDataFactory.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/layout/RowLayoutFactory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-30T20:26:03Z
2007-10-31T00:20:00Z
242,583
Bug 242583 [About] Feature info text area in about dialog does not wrap text
The text control that displays the aboutText from feature branding plugins about.ini file is not configured to wrap text. This cuts off long text (as in feature description) and forces people to insert line break manually. Making the control wrap text will allow manual text breaks to be removed and let the text flow more naturally to fill the available area. Will attach a patch.
verified fixed
ac92c2d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutFeaturesDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-30T15:53:11Z
2008-07-30T15:00:00Z
241,209
Bug 241209 [Markers] [Problems View] Changing columns in the preferences makes errors disappear from the view
null
closed fixed
b7a10e8
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ExtendedMarkersView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-28T19:58:44Z
2008-07-17T10:20:00Z
241,384
Bug 241384 [Markers] Cannot delete marker from in marker, problems, task or bookmarks view
Build ID: I20080617-2000 Steps To Reproduce: 1. Select any type of marker (bookmark, user-created task, problem marker etc.) and try to delete it 2. A popup window appears and wants your confirmation to delete the marker 3. Nothing happens. The marker is still alive and kicking. More information: Deleting a bookmark or user created task by right clicking on them in the editor's annotation bar works. Don't know if this matters but I have installed Eclipse CDT with Mylin support.
verified fixed
85ef538
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/DeleteHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-28T18:42:48Z
2008-07-18T11:20:00Z
233,313
Bug 233313 [Preferences] Mistake in javadoc for PreferencePage
Build ID: M20080221-1800 Steps To Reproduce: Open source code for org.eclipse.jface.preference.PreferencePage. The javadoc of the PreferencePage states that: "Subclasses must implement the createControl framework method to supply the page's main control." I think this should be "Subclasses must implement the _createContents_ framework method to supply the page's main control." More information: Because createControl is inherited from DialogPage and implements buttons and decoration. The method then calls the abstract createContents that people use to fill out the preference page with SWT controls.
closed fixed
56367d5
["bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferencePage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2008-07-28T16:42:46Z
2008-05-21T20:00:00Z