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] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
97,676 | Bug 97676 [Preferences] Pref Page General/Editors/Content Types problems - File Associations | I'm missing an "Edit" button or table editors. | verified fixed | 9d50cfe | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ContentTypesPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/FileExtensionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-10-01T13:22:37Z | 2005-05-31T20:06:40Z |
91,047 | Bug 91047 [About] About dialog buttons seemingly not responsive | Clicking on the 'Plug-in Details' or 'Configuration Details' buttons in the About dialog are time-consuming operations when the product in question has a large number of plug-ins. Yet, there is no hourglass, a busy cursor or a visual indicator of any sort between the time I click the button and the ten seconds later when the dialog actually appears. Of course, this problem would not be noticeable in pure Eclipse (86 plug-ins). | verified fixed | c320183 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-10-01T13:08:41Z | 2005-04-11T20:06:40Z |
138,078 | Bug 138078 [Preferences] Preferences Store for i18n support | I'm using the French local. I run into a problem of the double parsing in French format (ex: 3,14 instead of 3.14). I got an exception in the following method of the class org.eclipse.ui.preferences.ScopedPreferenceStore public double getDouble(String name) { String value = internalGet(name); if (value == null) return DOUBLE_DEFAULT_DEFAULT; try { return Double.parseDouble(value); } catch (NumberFormatException e) { return DOUBLE_DEFAULT_DEFAULT; } } it should be: public double getDouble(String name) { String value = internalGet(name); if (value == null) return DOUBLE_DEFAULT_DEFAULT; try { return NumberFormat.getInstance().parse(value); } catch (NumberFormatException e) { return DOUBLE_DEFAULT_DEFAULT; } } | verified fixed | 1c78f5c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/preferences/ScopedPreferenceStore.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-28T17:30:38Z | 2006-04-21T22:53:20Z |
204,935 | Bug 204935 [Markers] MarkersView should use fixed default widths | The MarkersView should use fixed rather than proportional widths as columns are getting very small when the workbench is restarted with a small markers view. | verified fixed | e35c49f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/ExtendedMarkersView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerCompletionField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerDescriptionField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerLocationField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerPathField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerPriorityField.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/api/MarkerField.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-28T17:25:18Z | 2007-09-28T17:20:00Z |
191,735 | Bug 191735 [About] Plug-ins table from About dialog should show sort arrows | 3.3RC4 - Help -> About Eclipse SDK - press Plug-in Details button - click on a table header in the resulting Plug-ins table -> this sorts the column's entries but does not give a visual indication in the column header (Table.setSortColumn(...) and Table.setSortDirection(...) needed) | verified fixed | 16b4528 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/AboutPluginsDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-28T13:26:32Z | 2007-06-08T16:26:40Z |
204,902 | Bug 204902 [Markers] Quick FIx dialog should select all markers by default | Currently we select no markers by default | verified fixed | 81ea353 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/QuickFixPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-28T13:18:38Z | 2007-09-28T11:46:40Z |
200,424 | Bug 200424 [Undo] Undo operation deletes a file from the file system | Build ID: I20070621-1340 Steps To Reproduce: 1) Open an Eclipse workspace 2) Create a new file, type some text, save it, close it 3) Reopen that file and leave it open 4) With the editor in focus, go to File, New in the menu and create a new file. 5) Type some text into the new file and save it. Leave the file open. 6) Click the tab on the first file and press ctrl+z. You can see the second file's tab disappears without any notification. If you look in Package Explorer and in your file system, the file no longer exists. More information: You can get the second file back by clicking on the Package Explorer pane and selecting Edit, Redo in the menu (if you do this before doing anything else!). However, it is quite unnerving to see a file which you have spent a lot of time creating suddenly vanish. The redo option also does not appear while the text editor is in focus. | verified fixed | dd8fc9a | ["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 | 2007-09-27T20:31:36Z | 2007-08-17T19:46:40Z |
204,843 | Bug 204843 [Field Assist] - API - should deprecate FILTER_CUMULATIVE in ContentProposalAdapter | null | verified fixed | 17dc16b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-27T19:45:42Z | 2007-09-27T19:06:40Z |
203,838 | Bug 203838 [Markers] [Markers] clicking on column headers does not sort table | I20070918 Clicking on any of the column headers does not sort based on the relevant column. | verified fixed | f91c1b3 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/CachedMarkerBuilder.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/ExtendedMarkersView.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerComparator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerContentGenerator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerState.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/api/MarkerField.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-26T20:36:35Z | 2007-09-18T15:40:00Z |
192,630 | Bug 192630 [FieldAssist] auto activation of proposal popup should be canceled on keystroke | null | verified fixed | b0b1f2f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-26T19:20:30Z | 2007-06-14T11:20:00Z |
200,762 | Bug 200762 [FieldAssist] SimpleContentProposalProvider filters out exact matches | Build ID: I20070625-1500 Steps To Reproduce: 1. Trigger content assist on a field that uses org.eclipse.jface.fieldassist.AutoCompleteField with SimpleContentProposalProvider 2. If one of the choices is 'foo' and another is 'foobar', typing 'foo' in the field will remove it from the list of proposals leaving 'foobar' selected. If the user presses the enter key, foobar is placed in the field instead of 'foo'. More information: To fix the problem, change line 70: From: if (proposals[i].length() > contents.length() To: if (proposals[i].length() >= contents.length() | verified fixed | 92911ef | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/SimpleContentProposalProvider.java", "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 | 2007-09-26T17:54:32Z | 2007-08-22T05:20:00Z |
139,063 | Bug 139063 [Field Assist] - API - behavior of text insert not taking selection into account | Field Assist Example - set acceptance style to "Insert into field content" - type some text into the text and combo - select a subset of the text and invoke content assist - choose a proposal in the popup outcome: text is inserted at the insertion point expected: text should be inserted, but should replace any selected text Is this a regression? | verified fixed | 54304e9 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ComboContentAdapter.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ContentProposalAdapter.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/IControlContentAdapter2.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/TextContentAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-26T17:02:41Z | 2006-04-27T20:33:20Z |
35,358 | Bug 35358 [Global Actions] missing icon in File / Refresh menu | 20030318 icon for File / Refresh menu is missing | verified fixed | d6177a9 | ["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 | 2007-09-25T17:52:56Z | 2003-03-20T14:20:00Z |
204,135 | Bug 204135 [Commands] Update CommandAction | Update CommandAction to use the new ParameterizedCommand.generateCommand(*) method instead of doing the work itself. Also, initialize it with images if they are available from the ICommandImageService. Check out how it's done in CommandContributionItem. This might have to wait until next week after I've committed the ParameterizedCommand changes. PW | verified fixed | 6a0c469 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/CommandAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-25T17:51:34Z | 2007-09-20T14:53:20Z |
164,939 | Bug 164939 [Forms] Form-based editor horizontal scroll pagesize too small | null | resolved fixed | 22f78a8 | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormUtil.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-25T16:33:36Z | 2006-11-17T10:40:00Z |
203,274 | Bug 203274 [Forms] Border calculation in FormToolkit.initializeBorderStyle looks wrong | 3.3 It has: // Check for Windows Classic. If not used, set the style to BORDER RGB rgb = colors.getSystemColor(SWT.COLOR_WIDGET_BACKGROUND); if (rgb.red != 212 && rgb.green != 208 && rgb.blue != 200) borderStyle = SWT.BORDER; If it's trying to see if the background is something other than (212, 208, 200), then the &&s should be ||s. | resolved fixed | b16b3b9 | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormToolkit.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-25T16:04:12Z | 2007-09-13T13:26:40Z |
137,898 | Bug 137898 [Contributions] Icon tool tips should also show key bindings in Debug view | The tool tips for icons in the tool bar should also display the key bindings of the actions. E.g. the tooltip [Step Into] should be [Step Into (F5)] cf. Preferences -> Keys(Experimental) : there is the icon and the binding | verified fixed | 787dec1 | ["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 | 2007-09-24T18:38:29Z | 2006-04-21T09:00:00Z |
137,893 | Bug 137893 [Markers] Filtering ion Problems view should allow "ANDing" filter conditions | I am trying to make use of the filter settings in ProblemView, but apparently the misc. filters are OR-ed. I want to filter away several types of warnings but can't do so, because conditions are apparently OR'ed instead of AND-ed. Usecase: I don't want to see warnings that contain the substring "(The field <foo>).COPYRIGHT is never read locally" nor warnings containing "(The field <foo>).COPYRIGHT is hiding a field from type (<bar>)" (note: the parts in bracket I only included for clarity. My filters of course only specify the parts outside the brackets). I realize that I could specify a single filter just using ".COPYRIGHT is" but that might inadvertedly also hide other warnings that I might be interested in. And occasionally I also would like to enable additional filters like "<foo> should be tagged with @Override since ..." or "... is emulated by a synthetic aceessor method. Increasing its visibility will improve ...". Changing filters is easier and quicker for such temporary adaptations than changing compilation pref's and rebuilding everything. Michael | verified fixed | c4d3b2b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/provisional/views/markers/MarkerContentGenerator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-24T17:23:27Z | 2006-04-21T09:00:00Z |
203,632 | Bug 203632 [GlobalActions] Convert EDIT_ACTION_SETS to a handler | Convertion ActionFactory.EDIT_ACTION_SETS from an action to a handler. PW | verified fixed | 4b69a13 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ActionFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditActionSetsAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/EditActionSetsHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-24T15:20:04Z | 2007-09-17T17:26:40Z |
203,630 | Bug 203630 [GlobalActions] Convert CLOSE_ALL_PERSPECTIVES to a handler | Convert the ActionFactory.CLOSE_ALL_PERSPECTIVES action to a handler. PW | verified fixed | 5fd79e1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ActionFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/CloseAllPerspectivesAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/CloseAllPerspectivesHandler.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-24T14:59:12Z | 2007-09-17T17:26:40Z |
202,779 | Bug 202779 [MinMax] Unhandled event loop exception when maximizing Console view | null | verified fixed | 4b46c32 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/TabbedStackPresentation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-18T15:10:07Z | 2007-09-10T10:26:40Z |
202,994 | Bug 202994 [Contributions] Text editor leaks in N20070911-0010 | null | verified fixed | 28a9a81 | ["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 | 2007-09-14T20:07:34Z | 2007-09-11T19:46:40Z |
84,702 | Bug 84702 [DynamicUI][RCP]AbstractUIPlugin.stop missing imageRegistry.dispose() | The image registry created by an abstract ui plugin should be disposed if the plugin is stopped. Waiting for the Display to be disposed is not soon enough in a dynamic environment. | verified fixed | f3ad41d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/plugin/AbstractUIPlugin.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-14T18:44:13Z | 2005-02-08T16:26:40Z |
182,761 | Bug 182761 [Themes] Undefined color entry will cause an NPE if looked up | If you look up a ColorDescriptor from a theme and that color is not registered you will get a descriptor with a null color that will result in an NPE. We should either get back null, handle the null descriptor or have some API we can check. | verified fixed | f015a66 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ColorRegistry.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/themes/JFaceThemeTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-14T14:40:31Z | 2007-04-17T14:26:40Z |
199,769 | Bug 199769 [Commands] HandlerService.createExecutionEvent always throws NullPointerException | Build ID: I20070621-1340 Steps To Reproduce: 1.call org.eclipse.ui.internal.handlers.HandlerService createExecutionEvent(final Command command, final Event event) with a valid event and command the code is: public final ExecutionEvent createExecutionEvent(final Command command, final Event event) { return new ExecutionEvent(command, null, event, getCurrentState()); } and so it calls: public ExecutionEvent(final Command command, final Map parameters, final Object trigger, final Object applicationContext) { if (parameters == null) { throw new NullPointerException( "An execution event must have a non-null map of parameters"); //$NON-NLS-1$ } parameters will always be null, so you always get a NPE More information: | verified fixed | 2f741ba | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/HandlerService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-13T17:56:37Z | 2007-08-13T15:46:40Z |
147,785 | Bug 147785 [Contributions] ISelectionListener doesn't extend EventListener... | ...nor does it take event objects. Some of the SWT listeners follow the standard but many of the RCP listeners don't. This means some generic tools we wrote to work with EventListeners now must work against Objects and just assume that they're listeners. If the EventListener isn't good enough then why create an Eclipse specific base class? Arggggggghhhhhhhhhh Frustrated in Ottawa | verified fixed | 7cc1de1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISelectionListener.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-13T16:42:45Z | 2006-06-19T20:46:40Z |
123,205 | Bug 123205 [Contributions] ToolBarManger displays wrong number of items, if pack() is not called | I have added bunch of Action items into the ToolBarManager. After each addition, I call an update, which is kind of required for the design, I currently have. Here are my observations: 1. If I do not call pack(), only one button shows up. 2. If I only use the LAST update, then all button shows up, no matter, whether I use size(), pack(), or leave both those out. Please find below the SWT code snippet to reproduce the problem. I am using 3.2M3 Build Id: I20051102-1600 <code> import org.eclipse.jface.action.Action; import org.eclipse.jface.action.ToolBarManager; import org.eclipse.jface.resource.ImageDescriptor; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; import org.eclipse.swt.graphics.GC; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.ToolBar; public class SampleUI { public static void main( String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout( new GridLayout(1, false)); //Create Images Image blueImage = new Image ( Display.getCurrent(), 20, 20); Color color = Display.getCurrent().getSystemColor (SWT.COLOR_BLUE); GC gc = new GC ( blueImage); gc.setBackground (color); gc.fillRectangle ( blueImage.getBounds ()); gc.dispose(); Image greenImage = new Image ( Display.getCurrent(), 20, 20); color = Display.getCurrent().getSystemColor (SWT.COLOR_GREEN); gc = new GC ( greenImage); gc.setBackground (color); gc.fillRectangle ( greenImage.getBounds ()); gc.dispose(); Image redImage = new Image ( Display.getCurrent(), 20, 20); color = Display.getCurrent().getSystemColor (SWT.COLOR_RED); gc = new GC ( redImage); gc.setBackground (color); gc.fillRectangle ( redImage.getBounds ()); gc.dispose(); ToolBarManager toolBarManager = new ToolBarManager( new ToolBar( shell, SWT.FLAT)); toolBarManager.add( new TestAction( blueImage)); toolBarManager.update( true); toolBarManager.add( new TestAction( greenImage)); toolBarManager.update( true); toolBarManager.add( new TestAction( redImage)); toolBarManager.update( true); //Only leaving this one, eliminates the problem shell.setSize( 200, 200); //Setting the SIZE shows only 1 button //shell.pack(); //Calling PACK, shows all buttons shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } class TestAction extends Action { public TestAction( Image image) { setImageDescriptor( ImageDescriptor.createFromImage( image)); } public void run() { System.out.println( "Key Pressed"); } } </code> | verified fixed | 13d3549 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ToolBarManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-13T16:04:36Z | 2006-01-10T08:00:00Z |
203,126 | Bug 203126 [WorkingSets] Allow location of WorkingSetConfigurationBlock to be changed by implementors | I really like the new WorkingSetConfigurationBlock. I think it can be very handy for many users. The one thing I would like to see, is to allow others who extend the Platform's Wizards to place the location of the WorkingSetConfigurationBlock where they would like. The current implementation forces the working set block after the project creation block. For PDE, it would be nice to be able to move the working set block down on the page, similar to JDT's new project wizard. | verified fixed | dbb4557 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewProjectCreationPage.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 | 2007-09-13T15:49:54Z | 2007-09-12T18:00:00Z |
97,901 | Bug 97901 [ViewMgmt] [RCP] tab group with non-closeable view can still be moved | While you cannot move a non-closeable view, you can still move its tab group. This allows the view to be moved, you can drop it on a different tab group or detach it. | resolved fixed | 8bb632c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-13T12:35:13Z | 2005-06-01T15:33:20Z |
201,055 | Bug 201055 [RCP] Limit offered perspectives in the perspective chooser | Version: 3.3.0 Build id: I20070621-1340 Many RCP applications have multiple workbench windows each with a specific function. Each window might have a number of perspectives, but you don't want to be able to open all perspectives in all windows, only those that are relevant for the specific function of the window. This is not possible with the current perspective chooser - actually it is not even possible to avoid the "open perspective" button or to limit the set of perspectives that are offered in the menu. | resolved fixed | c9770f1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/PerspectiveMenu.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java", "bundles/org.eclipse.ui/src/org/eclipse/ui/internal/UIPreferenceInitializer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-12T13:10:58Z | 2007-08-24T10:06:40Z |
200,558 | Bug 200558 [Viewers] ArrayIndexOutOfBoundsException in ColumnViewer | null | verified fixed | d02a0d0 | ["tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/Bug200558Test.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-11T18:15:03Z | 2007-08-20T14:26:40Z |
202,208 | Bug 202208 [ViewMgmt] Standalone View does not resize when implementing ISizeProvider | null | resolved fixed | 2d16491 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/PresentablePartFolder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/TabbedStackPresentation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-10T18:35:33Z | 2007-09-04T21:06:40Z |
202,316 | Bug 202316 [Forms] Add gradient sharing support for FormHeading | null | resolved fixed | 206939d | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormHeading.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormImages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-10T18:09:49Z | 2007-09-05T19:20:00Z |
83,307 | Bug 83307 [WorkingSets] Unable to restore working set item | I sometimes see this message in the console. It looks like we are restoring a working set after a breakpoint is deleted. Unable to restore working set item - cannot instantiate item: org.eclipse.debug.ui.elementFactory.breakpoints | verified fixed | 43e1859 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkingSet.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/Policy.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-10T15:34:17Z | 2005-01-20T14:06:40Z |
73,872 | Bug 73872 [ActionSets] Action delegates promotes memory leaks | The structure of the Action delegates (in particular ObjectAction) promotes memory leaks. What happens is the the typical implementation of a delegate will save the selection on the selectionChanged() or save the workbenchPart on the setActivePart() for ObjectAction. Object Action is the worst offender because the delegate lasts for the entire session once created. So if you popup a menu on one editor/view, and the delegate is called with setActivePart() and selectionChanged(), but that action is not selected, then the action (the ObjectPluginAction internal implementation itself AND the object delegate itself) hold onto the selection and the part. And then even though the selection has changed later or the part has been closed, they won't go away because they are being held onto. PluginAction holds onto the selection. And the selection can hold onto items from an editor, and these items can then go on and hold onto a editor. I've tested it with some of my own object delegates, and I held onto three different editors because of this (through the interaction of both the selection and the part being held onto). Even if I did something like make the selection and the part a WeakReference within my delegate it wouldn't matter because the main Action (PluginAction) will still hold onto the same things. And so I can't get rid of the leak. | resolved fixed | ef63a51 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectPluginAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-10T15:02:28Z | 2004-09-14T13:53:20Z |
27,842 | Bug 27842 [Working Sets] What is a working set type? | Build: 20021204 When I open the New Working Set dialog for the first time (and let's say I know nothing about working sets). I have no idea which type to select. I have to guess which type I want based off of the name of the type. At this point in time, all of the names are very terse, so they don't give me much help. It would make it easier for me to choose if working set types came with descriptions so that I could click on each on, and a description would be display which would help me choose my type. The dialog would have to be modified in order to display the description, what I am envisioning is something like the Label Decorations preference page. For example, when I select the Java type, a text area would populate with text similar to, "The Java working set type allows the selection of Java and Java related resources, this includes .java, .class, and .jar files." Something like that would make me more confident in my working set type selection. As a workaround, we could suggest that more descriptive names be used. | verified fixed | 3ec0b87 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetTypePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/WorkingSetDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-10T14:56:47Z | 2002-12-06T15:53:20Z |
174,345 | Bug 174345 [WorkingSets] IWorkingSetElementAdapter documentation is sparse/misleading | null | verified fixed | 46b1806 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkingSetElementAdapter.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/ModifyWorkingSetDelegate.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-10T14:18:25Z | 2007-02-15T17:20:00Z |
200,690 | Bug 200690 [Forms] Investigate resource sharing for section header gradients | From Andre: While doing some handle/memory leak tracking, we found that every section header allocates an image for the gradient. Since we use quite a few section headers in the work item editor, it would bring our handle count down if the images could be shared. In addition we would like to share the FormToolkit (since it allocates resources that can be shared too). | resolved fixed | bf8f174 | ["bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/Section.java", "bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormImages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-07T22:34:23Z | 2007-08-21T15:26:40Z |
202,663 | Bug 202663 Presence of tweaklets during test runs causes grief | If you have tweaklets in your workspace while running the tests you get a slew of hard to diagnose errors. We should test for the presence of tweaklets in the test suites and bail early if they are found. | verified fixed | b3a2315 | ["tests/org.eclipse.ui.tests.harness/src/org/eclipse/ui/tests/harness/util/TweakletCheckTest.java", "tests/org.eclipse.ui.tests/Eclipse", "Part", "References", "Test/org/eclipse/ui/parts/tests/PartsReferencesTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/UiTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/session/SessionTests.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/session/WorkbenchSessionTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-07T17:21:44Z | 2007-09-07T15:46:40Z |
202,424 | Bug 202424 Missing current theme causes crash on startup | M20070905-1045 The following NPE on startup causes the workbench to immediately exit: Exception in thread "Thread-1" java.lang.NullPointerException at org.eclipse.ui.internal.themes.ThemeElementHelper.populateRegistry(ThemeElementHelper.java:41) at org.eclipse.ui.internal.Workbench$28.runWithException(Workbench.java:1426) at org.eclipse.ui.internal.StartupThreading$StartupRunnable.run(StartupThreading.java:31) 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:3659) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2309) 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:585) 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) I zipped my workspace and can make it available on request. | verified fixed | 822c31c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/WorkbenchThemeManager.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/session/SessionTests.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/session/ThemeStateTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-07T16:48:38Z | 2007-09-06T12:00:00Z |
161,044 | Bug 161044 [Import/Export] Error: Destination directory conflicts with location of workspace root | Steps to reproduce: 1)Create a new simple project called Proj1 2)Create a new simple project called Proj2 3)Create a new file called testFile in Proj1 4)Try to export the testFile as a zip file and put that zip file inside C:\<yourWorkspace>\Proj2 You get error "Destination directory conflicts with location of workspace root" The code causing this is in UI. The class is called org.eclipse.ui.internal.wizards.datatransfer.WizardFileSystemResourceExportPage1and the method is #validateDestinationGroup. - Why is this considered an error? Products built upon Eclipse allow you to export to a directory in the workspace so obviously this is not a rule but more of a policy used by Eclipse export wizard. This introduces inconsistent behaviour with downstream products. - Can the export be made less restrictive? For example, permit the above example but prevent exports that would damage or corrupt the workspace. | verified fixed | 0834cdd | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardDataTransferPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardFileSystemResourceExportPage1.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-07T14:57:34Z | 2006-10-16T12:00:00Z |
184,712 | Bug 184712 [Viewers] Label provider of a tree vewier is not called | Build ID: Eclipse 3.3 M6 Steps To Reproduce: I created a tree viewer on eclipse 3.2, same viewer doesn't work on eclipse 3.3 (The labels and Images are gone). I set a break point in my label provider, it is not called. I have 2 viewers on my page, one is tree viewer and another one is table viewer, the label provider is shared. It implements both of ILabelProvider and ITableLabelProvider. On the new eclipse 3.3 driver, I have to comment out the part of ITableLabelProvider. More information: Here is the example: import java.util.ArrayList; import org.eclipse.jface.viewers.ITableLabelProvider; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.jface.viewers.TreeViewer; import org.eclipse.jface.viewers.Viewer; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Tree; public class TreeViewerTest { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); createDialogArea(shell); shell.pack(); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } protected static Control createDialogArea(Composite parent) { SummaryInfoLabelProvider lProvider = new SummaryInfoLabelProvider(); SummaryInfoContentProvider cProvider = new SummaryInfoContentProvider(); Composite primary = new Composite(parent, SWT.NONE); primary.setLayout(new GridLayout()); primary.setLayoutData(new GridData(GridData.FILL_BOTH)); // create summary tree Tree tree = new Tree(parent, SWT.BORDER); TreeViewer summaryViewer = new TreeViewer(tree); GridData gd = new GridData(GridData.FILL_BOTH); GridLayout layout = (GridLayout)parent.getLayout(); if(layout != null) gd.horizontalSpan = layout.numColumns; tree.setLayoutData(gd); summaryViewer.setLabelProvider(lProvider); summaryViewer.setContentProvider(cProvider); ArrayList input = new ArrayList(); for(int i = 0; i < 10; i ++) { StringBuffer name = new StringBuffer("TreeNode ").append(i); input.add(name); } summaryViewer.setInput(input); return (primary); } public static class SummaryInfoLabelProvider extends LabelProvider implements ITableLabelProvider { /* (non-Javadoc) * @see org.eclipse.jface.viewers.ILabelProvider#getImage(java.lang.Object) */ public Image getImage(Object element) { return null; } /* (non-Javadoc) * @see org.eclipse.jface.viewers.ILabelProvider#getText(java.lang.Object) */ public String getText(Object element) { return element.toString(); } public Image getColumnImage(Object element, int columnIndex) { return null; } /* (non-Javadoc) * @see org.eclipse.jface.viewers.ITableLabelProvider#getColumnText(java.lang.Object, int) */ public String getColumnText(Object element, int columnIndex) { return ""; } } public static class SummaryInfoContentProvider implements ITreeContentProvider { /* (non-Javadoc) * @see org.eclipse.jface.viewers.ITreeContentProvider#getChildren(java.lang.Object) */ public Object[] getChildren(Object parentElement) { if(parentElement instanceof ArrayList) return ((ArrayList)parentElement).toArray(); return new Object[0]; } /* (non-Javadoc) * @see org.eclipse.jface.viewers.ITreeContentProvider#getParent(java.lang.Object) */ public Object getParent(Object element) { return null; } /* (non-Javadoc) * @see org.eclipse.jface.viewers.ITreeContentProvider#hasChildren(java.lang.Object) */ public boolean hasChildren(Object element) { return getChildren(element).length > 0; } /* (non-Javadoc) * @see org.eclipse.jface.viewers.IStructuredContentProvider#getElements(java.lang.Object) */ public Object[] getElements(Object inputElement) { return getChildren(inputElement); } /* (non-Javadoc) * @see org.eclipse.jface.viewers.IContentProvider#inputChanged(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object) */ public void inputChanged(Viewer viewer, Object oldInput, Object newInput) { } public void dispose() { } } } | verified fixed | 3fd8f6a | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CellLabelProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/SimpleTreeViewerTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-06T19:56:40Z | 2007-04-30T16:20:00Z |
198,906 | Bug 198906 [DataBinding] SelectionProviderSingleSelectionObservableValue doesn't remove selectionChangedListener on dispose | null | verified fixed | 11dbab9 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/viewers/SelectionProviderSingleSelectionObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSetup.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/viewers/SelectionProviderSingleSelectionObservableValueTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-06T18:10:47Z | 2007-08-06T00:26:40Z |
200,252 | Bug 200252 [JFace] Use logger instead of printStackTrace() in SafeRunnable | SafeRunnable will print a stack trace to the console when running standalone. I would like to change this to use the logger if available. | verified fixed | 3ea6944 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/util/Policy.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/util/SafeRunnable.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-06T17:27:25Z | 2007-08-16T21:33:20Z |
198,904 | Bug 198904 [DataBinding] Listeners in swt Observables are not removed on dispose | null | verified fixed | 93a9cd0 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ButtonObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/CComboObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/CComboSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ComboObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ComboSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ListObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ListSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/SpinnerObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/TableSingleSelectionObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/AbstractSWTTestCase.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/ButtonObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/CComboObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/ComboObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/ListSingleSelectionObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/SpinnerObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/TableObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/TestCounterValueChangeListener.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/TextObservableValueTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-06T17:22:00Z | 2007-08-06T00:26:40Z |
198,903 | Bug 198903 [DataBinding] ComboSingleSelectionObservableValue setValue() does not change selection | null | verified fixed | 38ad473 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/swt/ComboSingleSelectionObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/CComboSingleSelectionObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/swt/ComboSingleSelectionObservableValueTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-06T17:16:07Z | 2007-08-06T00:26:40Z |
198,880 | Bug 198880 [DataBinding] ObservablesManager does not dispose model | null | verified fixed | d85dca5 | ["bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/ObservablesManager.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/ObservablesManagerTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-06T16:59:42Z | 2007-08-04T23:26:40Z |
139,298 | Bug 139298 [ErrorHandling] eclipse will silently fail to launch with invalid colorDefinition value | I had a color value of "30,14, 231", and the erroneous space after the comma caused Eclipse to silently fail to launch without any error messages other than the following from .metadata/.log. Seems that better error tolerance would be good. Note that the launch was a runtime workbench. !ENTRY org.eclipse.ui 4 0 2006-04-28 12:50:32.565 !MESSAGE For input string: " 231" !STACK 0 org.eclipse.jface.resource.DataFormatException: For input string: " 231" at org.eclipse.jface.resource.StringConverter.asRGB(StringConverter.java:560) at org.eclipse.ui.themes.ColorUtil.getColorValue(ColorUtil.java:122) at org.eclipse.ui.internal.themes.ColorDefinition.getValue(ColorDefinition.java:146) at org.eclipse.ui.internal.themes.ThemeElementHelper.installColor(ThemeElementHelper.java:261) at org.eclipse.ui.internal.themes.ThemeElementHelper.populateRegistry(ThemeElementHelper.java:156) at org.eclipse.ui.internal.Workbench.initializeApplicationColors(Workbench.java:1123) at org.eclipse.ui.internal.Workbench.init(Workbench.java:1065) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1847) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 2a74ba4 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/StringConverter.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ColorDefinition.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/themes/ColorUtil.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/themes/ThemeAPITest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-09-05T16:50:15Z | 2006-04-28T18:46:40Z |
193,571 | Bug 193571 [Dialogs] FilteredItemsSelectionDialog does not immediately remove last history match | I20070615-1200 FilteredItemsSelectionDialog does not immediately remove the last remaining history match: - new workspace - new Java project - Navigate > Open Type "ArrayList" - Navigate > Open Type "AbstractList" - close both editors - slow down search, e.g. by adding Thread.sleep(..) at the beginning of fillContentProvider(..) - Navigate > Open Type - slowly type "Arx" => after "Ar", "AbstractList" gets correctly removed => after "Arx", "ArrayList" should also be removed, but it wrongly stays | verified fixed | 226fbfa | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-31T16:41:23Z | 2007-06-20T17:20:00Z |
201,616 | Bug 201616 [Min.Max] Need to be able to change the orientation of a minimized stack | We currently use the aspect ratio of the existing view stack to set the orientation to be used when showing the view as fast views. While this works in most cases there are enough (i.e. minimizing a -maximized- stack usually gets HORIZONTAL even if the stack is usually vertical, minimizing stacks one at a time can change the remaining stacks' layout enough to give the wrong result). For those cases where we get it wrong we should allow the user to change the value...Note that this still applies to the whole stack, not individual views (as in the case of the FVB). | verified fixed | 84c6d9e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewPane.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStackTrimToolBar.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/SystemMenuFastViewOrientation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-30T15:16:36Z | 2007-08-29T17:53:20Z |
201,640 | Bug 201640 [TabbedProperties] NullPointerException in TabbedPropertyRegistryFactory | The following exception is logged during shutdown when an IBM client exists his Eclipse application. Protection code needs to be added here. java.lang.NullPointerException at org.eclipse.ui.internal.views.properties.tabbed.view.TabbedPropertyRegistryFactory.disposeRegistry(TabbedPropertyRegistryFactory.java:89) at org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage.dispose(TabbedPropertySheetPage.java:475) at org.eclipse.ui.views.properties.PropertySheet.doDestroyPage(PropertySheet.java:137) at org.eclipse.ui.part.PageBookView.removePage(PageBookView.java:852) at org.eclipse.ui.part.PageBookView.dispose(PageBookView.java:506) at org.eclipse.ui.views.properties.PropertySheet.dispose(PropertySheet.java:107) at org.eclipse.ui.internal.WorkbenchPartReference.doDisposePart(WorkbenchPartReference.java:720) at org.eclipse.ui.internal.ViewReference.doDisposePart(ViewReference.java:127) at org.eclipse.ui.internal.WorkbenchPartReference.dispose(WorkbenchPartReference.java:671) at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1675) 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.WorkbenchPage.dispose(WorkbenchPage.java:1670) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages(WorkbenchWindow.java:825) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1559) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:699) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:675) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:790) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:788) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$15.run(Workbench.java:908) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:905) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:834) at org.eclipse.ui.internal.Workbench$22.run(Workbench.java:1078) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1076) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1048) at org.eclipse.ui.internal.QuitAction.run(QuitAction.java:57) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144) | resolved fixed | 48957fa | ["bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyRegistryFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-29T20:11:15Z | 2007-08-29T20:40:00Z |
83,216 | Bug 83216 [WorkingSets] Layout changes in New Working Set wizard | I20050118-1015 Navigator view menu>Select Working Set>New Select a working set type Next Back Notice the change in space around the "Working set type" label Really noticeable if you change the Dialog font to a larger size | verified fixed | 508a6b2 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceWorkingSetPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-29T16:07:54Z | 2005-01-19T18:40:00Z |
189,999 | Bug 189999 [PropertiesView] [PropertiesView] Setting 1 value causes very slow recursive refresh | I have a properties with a hierarchy. Everything is read-only except for the leaf nodes. Setting a value takes about 5 seconds on my Core2Duo and seems to have possibly gotten even slower in RC2. This stems from the call to PropertySheetEntry.refreshFromRoot in the setValue method. Why should 1 value cause a total refresh? If other values were dependent, shouldn't they have listeners? This is a big problem for me as it will be very hard for my users to be productive with such a slow interface. I realize its late to get something in for 3.3. If there is a workaround, I would really like to know about it so I don't have to reimplement the property view. | verified fixed | 15e44b9 | ["bundles/org.eclipse.ui.views/src/org/eclipse/ui/views/properties/PropertySheetViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-24T15:09:46Z | 2007-05-30T18:33:20Z |
191,611 | Bug 191611 NPE in FilteredItemsSelectionDialog | Build ID: I20070606-0010 !ENTRY org.eclipse.ui 4 0 2007-06-08 00:53:56.750 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ContentProvider.saveHistory(FilteredItemsSelectionDialog.java:2712) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog.storeDialog(FilteredItemsSelectionDialog.java:390) at org.eclipse.ui.dialogs.FilteredItemsSelectionDialog.close(FilteredItemsSelectionDialog.java:376) at org.eclipse.jface.dialogs.Dialog.cancelPressed(Dialog.java:480) at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:466) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:616) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at filtereddialogtest.popup.actions.NewAction.run(NewAction.java:34) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:256) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144) !SESSION 2007-06-08 00:55:38.812 ----------------------------------------------- | resolved fixed | 8fc8fd9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-24T09:31:04Z | 2007-06-07T23:46:40Z |
194,760 | Bug 194760 [CellEditors] [Viewers] JavaDoc DialogCellEditor updateLabel mistake | Build ID: I20070608-1718 Steps To Reproduce: DialogCellEditor's javadoc contains this: -------------- Subclasses may override the following method: createButton: creates the cell editor's button control openDialogBox: opens the dialog box when the end user presses the button updateLabel: updates the cell editor's label after its value has changed ------------ UpdateLabel method doesn't exist, probably there should be updateContents. More information: | verified fixed | 8696092 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/DialogCellEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-22T17:15:55Z | 2007-06-28T14:13:20Z |
191,046 | Bug 191046 [Min/Max] View does not open 2nd time when editor max'd | 3.3 RC3 I'm not sure how to reproduce this bug. I've seen two odd behaviours: 1. I had opened a test workspace with the editor area maximized. I did Cntrl-3 to open the Plug-ins view. The view opened but the editor was no longer maximized and the plugins view was showing open in its own stack. It should've opened as a fast view. Oddly, it was a vertical view to the right of the editor (vs. the usual default position of horizontal/bottom), but this might be a red herring as I may have moved the placeholder stack there in a previous session, can't be sure. Closing the view left the perspective in the odd state of having the editor area not maximized but all other stacks minimized (so you can hit max/restore on the editor and nothing appears to happen). 2. In trying to reproduce this, I ended up in some state whereby Cntrl-3 opening the plugins view resulting in nothing ... no view, nothing in log. I probably had the view opened previously (in another session) but not since I had restarted that workbench. I will continue to try to find the steps for this. | verified fixed | 2dafad4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-22T14:35:01Z | 2007-06-05T16:13:20Z |
179,374 | Bug 179374 [ErrorHandling] Resize the support area when detail is clicked | If I click on the detail button, I see the detail area appear under the buttons. the SupportArea (on the right) does not resize all the way to the bottom of the Dialog. | verified fixed | 820d3c0 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-20T14:40:47Z | 2007-03-26T20:13:20Z |
124,683 | Bug 124683 [DataBinding] support binding to a multi-selection | This is not yet implemented, but people are asking for it. | resolved fixed | 514b7c2 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/viewers/ViewersObservables.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/viewers/SelectionProviderMultipleSelectionObservableList.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/internal/viewers/SelectionProviderMultiSelectionObservableListTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-17T20:30:10Z | 2006-01-20T18:00:00Z |
12,116 | Bug 12116 [Contributions] widgets: MenuManager.setImageDescriptor() method needed | Currently there seems to be no API to assign image to menu item that contains submenu, the only way is to override MenuManager.fill() methods. That seems to be inconsistent. | verified fixed | cf552db | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/MenuManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-16T19:23:31Z | 2002-03-22T15:13:20Z |
196,306 | Bug 196306 [Commands] RegistryRadioState cannot properly initialize because of NPE | When a RegistryRadioState configured for a contributed command is being read from the registry, an NPE is thrown in RadioState, line 75: private final void activateMember(final RadioState state) { if (active != state) { 75-> active.setValue(Boolean.FALSE); } active = state; } This is because there is no initial active state and no way to provide a non-null value. I believe line 74 should read "if (active != state && active != null) {". | verified fixed | 13c078b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/commands/RadioState.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-16T14:40:01Z | 2007-07-12T14:20:00Z |
194,221 | Bug 194221 [Commands] Slow to close dialogs due to ContextAuthority.sourceChanged triggering multiple menu updates | 3.3 M7 - noticed it was slow closing one of our dialogs (taking a second or two) - took a YourKit profile - it shows 1 call to ContextAuthority.sourceChanged(int) leading to 17 calls to MenuManager.update. A similar issue was reported and fixed in M7, but this aspect of the problem still remains. | verified fixed | cd0e827 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/contexts/ContextAuthority.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-16T14:02:14Z | 2007-06-25T14:00:00Z |
192,587 | Bug 192587 [KeyBindings] Extra entries appear in Keys preference page after pressing "restore command" | Version: 3.3.0 Build id: I20070525-1350 1. Open the new keys preference page 2. Filter down to the copy command 3. Press "Restore Command" 4. Observe bindings from the emacs scheme appear NewKeysPreferencePage#bindingRestore should be checking that the schemes match before adding the binding to the collection. | verified fixed | d4c0730 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-15T14:58:30Z | 2007-06-14T05:46:40Z |
191,511 | Bug 191511 [Perspecitves] Workbench.showPerspective gets NullPointerException, if active page have no perspective. | Build ID: M20070212-1330 Steps To Reproduce: We are creating an Eclipse RCP app. We have a problem that Workbench.showPerspective gets NullPointerException, when the active page has no perspective. 1. Have a page which contains no perspective. 2. Call Workbench.showPerspective 3. Gets NullPointerException in Workbench.showPerspective. More information: To resolve this issue, we just need to add some null checks in Workbench.showPerspective | verified fixed | ef1ed6e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Workbench.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-15T14:42:16Z | 2007-06-07T15:26:40Z |
188,343 | Bug 188343 [KeyBindings] NPE in Keys (Legacy) preference page | Version: 3.3.0 Build id: I20070522-0010 Linux Motif on Fedora Core 5 Start Eclipse Open the preferences dialog Open the Keys (Legacy) on General NPE: java.lang.NullPointerException at org.eclipse.ui.internal.keys.KeysPreferencePage.updateComboCommand(KeysPreferencePage.java:1934) at org.eclipse.ui.internal.keys.KeysPreferencePage.update(KeysPreferencePage.java:1901) at org.eclipse.ui.internal.keys.KeysPreferencePage.setVisible(KeysPreferencePage.java:1869) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1260) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:433) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:694) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:842) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:850) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:193) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:840) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1153) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1178) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:250) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:244) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:418) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3088) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2797) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:792) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3110) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2794) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:497) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:436) at org.eclipse.equinox.launcher.Main.run(Main.java:1162) at org.eclipse.equinox.launcher.Main.main(Main.java:1137) | verified fixed | fc69d4f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/KeysPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-15T13:51:05Z | 2007-05-22T16:06:40Z |
188,178 | Bug 188178 [Commands] workbench System.out | System.out.printlns in the following classes: - WorkbenchLayout - CommandContributionItem There's also something in eclipse that occasionally prints out: 0.5 0.5 19 19 0.5 0.5 19 19 but I can't find it in platform UI (it's not directly tied to System.out) PW | verified fixed | eae51c4 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/CommandContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-14T18:54:59Z | 2007-05-21T23:26:40Z |
143,592 | Bug 143592 [Contributions] Toolbar contributions from two editors displayed simultaneously | Using 3.2RC4 When switching between editors, it seems that the toolbar buttons for the new editor are added before the ones for the old editor are removed. As a result, sometimes all workbench parts move down (making the toolbar two rows tall) and then move back up, creating an undesirable flashing effect. You can easily reproduce this by switching between two editors, both of which have a lot of different items on the toolbar (but not enough that either needs two rows on the toolbar). | verified fixed | 75e769e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchWindow.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-14T18:05:15Z | 2006-05-24T19:46:40Z |
66,219 | Bug 66219 [Contributions] ActionContributionItem always gets the currentTimeMillis | Using 0607 In ActionContributionItem.handleWidgetSelection() there is an exposed System.currentTimeMillis() which should be enclosed in the if (trace). | verified fixed | 78b6ec7 | ["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 | 2007-08-14T15:14:17Z | 2004-06-08T21:26:40Z |
196,164 | Bug 196164 IDE plugin broken due to missing dependency on runtime compatibility | null | resolved fixed | beba95e | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/FiltersContentProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceNavigator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-14T14:56:37Z | 2007-07-11T13:20:00Z |
198,519 | Bug 198519 [DataBinding] JavaBeanObservableValue may cause NPE when used with ComputedValue | Build ID: I20070625-1500 Steps To Reproduce: Simple case: new ComputedValue() { final IObservableValue name = BeansObservables.observeValue(dto, "name"); //$NON-NLS-1$ @Override protected Object calculate() { return name.getValue() != null; } }; More information: When ComputedValue recalculates the value, it calls the makeDirty() and then stopListening() methods which, in turn, may result in call to lastListenerRemoved() (if there are no other listeners attached) in the JavaBeanObservableValue class, causing listenerSupport.dispose() call. From now on, adding new listeners (which happens next during the calculate call) will cause NullPointerException. | verified fixed | 847f611 | ["bundles/org.eclipse.core.databinding.beans/src/org/eclipse/core/internal/databinding/internal/beans/JavaBeanObservableValue.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/internal/databinding/internal/beans/JavaBeanObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSetup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-13T21:08:26Z | 2007-08-01T12:06:40Z |
198,575 | Bug 198575 [Intro] display problems -- standby and maximized | Build ID: I20070625-1500 Several problems with intro part presentation: - Standby Welcome view shows non-standby content - Maximized Welcome view shows standby content - Welcome view (both maximized and standby) intermittently obscures toolbar and perspective switcher All of these were observed in fresh installations of various Eclipse 3.3 download options (Classic, RCP, etc.), with default universal intro implementation. Steps To Reproduce (standby view shows non-standby content): 1. Launch eclipse.exe and point to new (empty) workspace. Maximized Welcome view opens in Java perspective. 2. Select Window>Open Perspective>Other. 3. Select Plug-in Development; click OK. Standby Welcome view in newly opened perspective shows a cut-off portion of the normal (maximized) content, not the correct standby content. Also notice that the PD perspective is missing the toolbar under the main menu and the perspective switcher. Note: This works for any different perspective you select when Welcome is maximized. 4. Click Maximize icon on Welcome view (beside view tab). Maximized Welcome view appears in PD perspective. 5. Click Restore icon on the Welcome view (same icon as above). Standby Welcome view now shows correct standby content, and now the toolbar and perspective switcher magically appear. Steps To Reproduce (maximized view shows standby content): 1. Open any two perspectives, with no Welcome (i.e., Welcome view closed). 2. Select Help>Welcome. Maximized Welcome view opens in current perspective. 3. Change perspective (either from menu, or Ctrl-F8/Ctrl-Shift-F8). Standby Welcome view shows non-standby content, and toolbar and perspective switcher are missing. 4. Change perspective again (either way), back to the perspective in which Welcome was opened (i.e., perspective with maximized Welcome view). Maximized Welcome view now shows standby content, and the toolbar and perspective switcher appear. Other variations of this behavior can be observed by minimizing and restoring the intro and switching perspectives. | verified fixed | b55e0b8 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-10T15:02:01Z | 2007-08-01T20:26:40Z |
198,562 | Bug 198562 [Contributions] Change ActionContributionItem + CommandContributionItem to use event coordinates | In order to enable RTL support on Linux, we have changed the recommended way of determining the location of a Toolitem pop up menu. Attaching a patch for UI. | resolved fixed | e5d371c | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ActionContributionItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/CommandContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-08-02T15:44:46Z | 2007-08-01T17:40:00Z |
196,553 | Bug 196553 [Dialogs] Support IColorProvider/IFontProvider in FilteredItemsSelectionDialog | null | verified fixed | 402bde5 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-30T21:19:12Z | 2007-07-14T21:53:20Z |
197,475 | Bug 197475 [TrayDialog] Redundant check in isCompatibleLayout | Build ID: Build id: I20070621-1340 Inside TrayDialog#isCompatibleLayout(Layout layout) there is redundant check (grid.horizontalSpacing == 0). (line 237) Possible there should be (grid.verticalSpacing == 0). :) | verified fixed | 0d41f4e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/TrayDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-30T20:37:50Z | 2007-07-23T11:26:40Z |
196,921 | Bug 196921 [DnD] Wrong api doc for org.eclipse.ui.part.PluginTransfer | I20070717-1020 Class comment first sentence Is: ...a workbench in a drop and drop operation. Should: ...a workbench in a drag and drop operation. | resolved fixed | 2307883 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/PluginTransfer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-30T14:08:15Z | 2007-07-18T09:13:20Z |
197,770 | Bug 197770 [Snippets] Provide an API similar to ColumnViewerToolTipSupport without new LabelProvider infrastructure | null | resolved fixed | 96d44ca | ["examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/Snippet042ToolTipSupportFor32API.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-25T10:53:14Z | 2007-07-25T10:40:00Z |
95,292 | Bug 95292 [Intro] Help > Welcome missing F1 context | null | verified fixed | e23b195 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IWorkbenchHelpContextIds.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IntroAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-12T18:53:11Z | 2005-05-15T04:06:40Z |
93,373 | Bug 93373 [Intro] TipsAndTricksAction should not use magic numbers | null | verified fixed | 700b324 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/TipsAndTricksAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-12T18:47:50Z | 2005-05-01T17:53:20Z |
196,362 | Bug 196362 [Themes] Incorrect use of IThemeRegistry.HierarchyComparator in ThemeElementHelper.addDefaulted(...) | null | verified fixed | 3196fc7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/themes/ThemeElementHelper.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/themes/ThemeAPITest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-12T18:38:28Z | 2007-07-12T19:53:20Z |
195,152 | Bug 195152 [KeyBindings] NPE when opening Keys preference page | N20070702-0010 Step: try to open Keys preference page !ENTRY org.eclipse.jface 4 2 2007-07-02 17:45:10.046 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.keys.NewKeysPreferencePage$17.updateControl(NewKeysPreferencePage.java:1679) at org.eclipse.jface.internal.databinding.provisional.swt.ControlUpdater$1.run(ControlUpdater.java:106) at org.eclipse.core.databinding.observable.ObservableTracker.runAndMonitor(ObservableTracker.java:102) at org.eclipse.jface.internal.databinding.provisional.swt.ControlUpdater.updateIfNecessary(ControlUpdater.java:130) at org.eclipse.jface.internal.databinding.provisional.swt.ControlUpdater.<init>(ControlUpdater.java:125) at org.eclipse.ui.internal.keys.NewKeysPreferencePage$17.<init>(NewKeysPreferencePage.java:1677) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.createTreeControls(NewKeysPreferencePage.java:1677) at org.eclipse.ui.internal.keys.NewKeysPreferencePage.createContents(NewKeysPreferencePage.java:1274) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.java:235) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDialog.java:1456) at org.eclipse.jface.preference.PreferenceDialog$13.run(PreferenceDialog.java:1213) 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:193) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1207) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:433) at org.eclipse.jface.preference.PreferenceDialog$9.selectionChanged(PreferenceDialog.java:698) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:842) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:193) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:840) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1153) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1178) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:250) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:244) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:418) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3658) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3295) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3681) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3292) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(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:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144) | resolved fixed | 3a1eaaa | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/swt/ControlUpdater.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-05T22:42:53Z | 2007-07-02T15:26:40Z |
195,584 | Bug 195584 [Snippets] Snippet010OwnerDraw consumes 100% of CPU | => Problem is the display-loop missing a sleep | verified fixed | 471772c | ["examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/Snippet010OwnerDraw.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-05T20:14:57Z | 2007-07-05T21:13:20Z |
173,655 | Bug 173655 [Browser] web browser preference page text does not flow | 3.3M5, just an aestetic thing The text at the top of the preference page does not look good on linux because it appears to have a hard return after its comma, which is in the middle of a line. Also, when the dialog's size is expanded the text does not re-lay itself out, which makes it look more awkward. The Label should have SWT.WRAP style, no hard return after the comma, and _may_ need some layout data to tell it to grab available horizontal space. | resolved fixed | e1531b6 | ["bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/WebBrowserPreferencePage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-03T19:27:59Z | 2007-02-09T16:53:20Z |
185,500 | Bug 185500 [Common Navigator] DND allows to Drop Projects on Projects but shows error | Build ID: I20070323-1616 Steps To Reproduce: 1. Select a Project in Project Explorer 2. Drag & Drop it on another project 3. Error Dialog is shown: Error message "Problems occurred moving the selected resources: Path for project must have only one segment. Path for project must have only one segment." More information: The original problem is that this is not handled correctly by CopyFilesAndFoldersOperation (e.g. MoveFilesAndFoldersOperation) .validateDestination(..) It only shows in the Project Explorer, as it allows dragging of Projects (other project viewers don't so they don't run into this). I've created a patch for this that simply checks in method "validateDrop" if a project is dropped on another resource and returns Status.ERROR. | resolved fixed | acaaf17 | ["bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/plugin/WorkbenchNavigatorMessages.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/ResourceDropAdapterAssistant.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-03T18:22:51Z | 2007-05-04T09:13:20Z |
189,636 | Bug 189636 Custom rule template failing | Null poonter exception being thrown when trying to add a custom rule which is causing the rule cretion to fail. Also there is a minor typo in the rule template string. | closed fixed | 922e392 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-03T18:19:29Z | 2007-05-29T12:00:00Z |
186,344 | Bug 186344 [CommonNavigator] Project Explorer duplicates Working Set actions | M7 The Project Explorer sometimes creates duplicate Working Set related view menu items. This seems to be triggered by "Link with Editor" on startup where two instances of WorkingSetActionProvider are created and initialized. The following is a stack trace at the point where the WorkingSetActionProvider adds its actions. Note the recursion starting in NavigatorActionService.getActionProviderInstance() Thread [main] (Suspended (breakpoint at line 277 in WorkingSetActionProvider)) owns: HashMap<K,V> (id=142) owns: RunnableLock (id=143) WorkingSetActionProvider.fillActionBars(IActionBars) line: 277 NavigatorActionService.initialize(String, CommonActionProvider) line: 353 NavigatorActionService.getActionProviderInstance(CommonActionProviderDescriptor) line: 332 NavigatorActionService.fillActionBars(IActionBars) line: 236 CommonNavigatorManager.selectionChanged(SelectionChangedEvent) line: 217 Viewer$2.run() line: 162 SafeRunner.run(ISafeRunnable) line: 37 Platform.run(ISafeRunnable) line: 850 JFaceUtil$1.run(ISafeRunnable) line: 46 SafeRunnable.run(ISafeRunnable) line: 193 CommonViewer(Viewer).fireSelectionChanged(SelectionChangedEvent) line: 160 CommonViewer(StructuredViewer).updateSelection(ISelection) line: 2039 CommonViewer(StructuredViewer).handleInvalidSelection(ISelection, ISelection) line: 1102 CommonViewer(StructuredViewer).preservingSelection(Runnable, boolean) line: 1376 CommonViewer(TreeViewer).preservingSelection(Runnable, boolean) line: 377 CommonViewer(StructuredViewer).preservingSelection(Runnable) line: 1325 CommonViewer(AbstractTreeViewer).inputChanged(Object, Object) line: 1417 CommonViewer(ContentViewer).setInput(Object) line: 251 CommonViewer(StructuredViewer).setInput(Object) line: 1601 WorkingSetActionProvider.restoreState(IMemento) line: 237 NavigatorActionService.initialize(String, CommonActionProvider) line: 350 NavigatorActionService.getActionProviderInstance(CommonActionProviderDescriptor) line: 332 NavigatorActionService.fillActionBars(IActionBars) line: 236 CommonNavigatorManager.selectionChanged(SelectionChangedEvent) line: 217 Viewer$2.run() line: 162 SafeRunner.run(ISafeRunnable) line: 37 Platform.run(ISafeRunnable) line: 850 JFaceUtil$1.run(ISafeRunnable) line: 46 SafeRunnable.run(ISafeRunnable) line: 193 CommonViewer(Viewer).fireSelectionChanged(SelectionChangedEvent) line: 160 CommonViewer(StructuredViewer).updateSelection(ISelection) line: 2039 CommonViewer(StructuredViewer).setSelection(ISelection, boolean) line: 1636 CommonViewer(TreeViewer).setSelection(ISelection, boolean) line: 1031 CommonViewer.setSelection(ISelection, boolean) line: 325 CommonNavigator.selectReveal(ISelection) line: 313 LinkEditorAction$2.runInUIThread(IProgressMonitor) line: 91 UIJob$1.run() line: 94 [...] | resolved fixed | bd9be80 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/NavigatorActionService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-03T17:59:27Z | 2007-05-10T12:26:40Z |
191,147 | Bug 191147 [CommonNavigator] Problem with selection causes view to fail to load | null | resolved fixed | 60c0c6c | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-03T17:26:46Z | 2007-06-06T00:33:20Z |
190,360 | Bug 190360 [pde viz] Nodes appear on top of one another | When the pde view is opened the nodes appear on top of one another. | resolved fixed | c8dea59 | ["bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/CopyAction.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/PasteAction.java", "bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/plugin/WorkbenchNavigatorMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-03T17:17:01Z | 2007-05-31T22:20:00Z |
97,229 | Bug 97229 [Dialogs] ListSelectionDialog should be resizable by default | RC1 Open several editor and leave some dirty. Close all. The 'Save resources' dialog is not not resizable. I think it is always better to make dialogs resizable as this makes it easier for users with diffent font sizes or using very long names. -> make the ListSelectionDialog by default | verified fixed | 7346de0 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/SelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-07-02T21:54:54Z | 2005-05-30T13:33:20Z |
93,353 | Bug 93353 [Dialogs] InternalErrorDialog#buttonPressed should explicitly call super | null | verified fixed | b1a7c09 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/InternalErrorDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-30T16:32:27Z | 2005-04-30T19:40:00Z |
82,937 | Bug 82937 [Dialogs] There is no title in the dialog (FileDialog class) | Eclipse SDK 3.0.1 Linux GTK, Solaris Motif There is no title in the dialog. It confirms it by the following operations. 1) Select menu item: File > New > File 2) Click "Advanced>>" button 3) Check "Link to file in the file system" 4) Click "Browse..." button | verified fixed | d15d175 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-29T18:04:26Z | 2005-01-17T02:46:40Z |
184,423 | Bug 184423 [JFace] ColorRegistry.getRGB(String) can return null | I20070427-0010 ColorRegistry.getRGB(String) can return null but this is not speced in the Javadoc. | verified fixed | 6156e4b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/ColorRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T19:59:06Z | 2007-04-27T13:20:00Z |
188,448 | Bug 188448 Javadoc for PathEditorInput#getPath is ambiguous | 3.3 PathEditorInput#getPath can return an IPath or null but our API does not specify this. | verified fixed | 6db3f85 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/IURIEditorInput.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T19:49:54Z | 2007-05-22T18:53:20Z |
187,877 | Bug 187877 [EFS] Null pointer exception when getting path of FileEditorInput whose file does not exist | The problem occurs in my plugin when I call FileEditorInput.getPath for a file that has been deleted on disk. This happens when you have an editor open, and then delete its project and choose the option to delete the files on disk. The built-in Eclipse editors do not run into the problem because they present a dialog asking to save or close the file and do not allow any interaction with the file. The stack trace is: java.lang.NullPointerException at org.eclipse.core.internal.filesystem.InternalFileSystemCore.getStore(InternalFileSystemCore.java:104) at org.eclipse.core.filesystem.EFS.getStore(EFS.java:350) at org.eclipse.ui.part.FileEditorInput.getPath(FileEditorInput.java:175) In FileEditorInput.getPath, the code is: final URI locationURI = file.getLocationURI(); IFileStore store = EFS.getStore(locationURI); IResources.getLocationURI is documented to return null if no URI can be determined. I believe that the code above should check for (locationURI == null) and return null. This null pointer exception occurs with Eclipse 3.3M7, but not with 3.2. A workaround for this problem is to not call IEditorInput.getPath() if IEditorInput.exists() returns false. | verified fixed | 4237257 | ["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 | 2007-06-28T19:45:25Z | 2007-05-18T17:40:00Z |
185,892 | Bug 185892 [Import/Export] Unexpectedly cursor moving in import dialog. | Unexpectedly cursor moving in import dialog. To reproduce: 1. select "Import" from context menu. 2. Select "File System" and click "Next". 3. Click "Into Folder" text field and input/delete a character. Issues: The cursor moves to "From directory" text field unexpectedly. | verified fixed | 02eb422 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardFileSystemResourceImportPage1.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T19:22:44Z | 2007-05-08T04:53:20Z |
185,347 | Bug 185347 [Progress] Concatenate task and subtask with ": " in ProgressMonitorPart | null | verified fixed | 5aef8fd | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/ProgressMonitorPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T18:05:09Z | 2007-05-03T13:46:40Z |
98,467 | Bug 98467 [WorkbenchLauncher] [Preferences] Workspace path with comma | If a workspace is opened which has a comma in the path (eg "C:\docs\clients\surname, firstname"), when eclipse is closed then re-opened, the workspace does not open correctly. It instead creates a new folder of "C:\docs\clients\surname" and creates a new workspace there. Noticed that recent workspaces are kept in eclipse\configuration\.settings\org.eclipse.ui.ide.prefs and that the list is comma separated. Reccommend either making the delimiter a character not usable in filenames/paths (eg. pipe character '|') or enclosing paths in quote marks. | verified fixed | fde856b | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/ChooseWorkspaceData.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T16:01:06Z | 2005-06-06T03:53:20Z |
180,989 | Bug 180989 [Progress] Stale API field in IWorkbenchSiteProgressService | While viewing the API of IWorkbenchSiteProgressService, I noticed this API field: /** * The property that is sent with busy notifications. */ public static final String BUSY_PROPERTY = "SITE_BUSY"; //$NON-NLS-1$ I could find no references to this API in the SDK, which suggests to me it was never implemented. This should likely be deprecated with a message saying it has no effect. If it has some effect I'm not seeing, the javadoc should explain this more (the property is "sent" to whom? Is this intended for clients to fire this event or for clients to receive this event, what listener API does it correspond to, etc) | verified fixed | 553551e | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/IWorkbenchSiteProgressService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T15:47:31Z | 2007-04-04T15:20:00Z |
180,248 | Bug 180248 [Progress] NPE in JobTreeElement.compareTo(...) | Build 3.3M6 Self-hosting on my laptop, I resumed from standby mode, and had a session open; but was still offline. I still had pending outgoing changes in my CVS sync view. I triggered a compare action (had forgot being offline), and got the following stack trace. Note that I got many of them, and got prompted to exit workbench. !ENTRY org.eclipse.ui 4 0 2007-03-30 19:08:59.770 !MESSAGE Unhandled event loop exception !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3499) at org.eclipse.swt.SWT.error(SWT.java:3422) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:126) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3650) at org.eclipse.swt.widgets.Display.msgFilterProc(Display.java:3032) at org.eclipse.swt.internal.win32.OS.MessageBoxW(Native Method) at org.eclipse.swt.internal.win32.OS.MessageBox(OS.java:2662) at org.eclipse.swt.widgets.MessageBox.open(MessageBox.java:191) at org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler.handleException(IDEWorkbenchErrorHandler.java:137) at org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler$1.runInUIThread(IDEWorkbenchErrorHandler.java:90) 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:3650) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3287) at org.eclipse.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.ide.dialogs.InternalErrorDialog.open(InternalErrorDialog.java:78) at org.eclipse.ui.internal.ide.dialogs.InternalErrorDialog.openQuestion(InternalErrorDialog.java:185) at org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler.openQuestionDialog(IDEWorkbenchErrorHandler.java:220) at org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler.handleException(IDEWorkbenchErrorHandler.java:142) at org.eclipse.ui.internal.ide.IDEWorkbenchErrorHandler$1.runInUIThread(IDEWorkbenchErrorHandler.java:90) 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:3650) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3287) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2337) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2301) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2176) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:463) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:458) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:101) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:146) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:356) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:171) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java: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:476) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416) at org.eclipse.equinox.launcher.Main.run(Main.java:1141) at org.eclipse.equinox.launcher.Main.main(Main.java:1116) Caused by: java.lang.NullPointerException at org.eclipse.ui.internal.progress.JobTreeElement.compareTo(JobTreeElement.java:82) at org.eclipse.ui.internal.progress.JobInfo.compareTo(JobInfo.java:167) at org.eclipse.ui.internal.progress.ProgressManagerUtil$1.compare(ProgressManagerUtil.java:107) at org.eclipse.jface.viewers.ViewerComparator$1.compare(ViewerComparator.java:187) at java.util.Arrays.mergeSort(Arrays.java:1299) at java.util.Arrays.sort(Arrays.java:1238) at org.eclipse.jface.viewers.ViewerComparator.sort(ViewerComparator.java:185) at org.eclipse.ui.internal.progress.DetailedProgressViewer.add(DetailedProgressViewer.java:158) at org.eclipse.ui.internal.progress.DetailedProgressViewer.internalRefresh(DetailedProgressViewer.java:378) at org.eclipse.jface.viewers.StructuredViewer.internalRefresh(StructuredViewer.java:1221) at org.eclipse.jface.viewers.StructuredViewer$8.run(StructuredViewer.java:1478) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1333) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1476) at org.eclipse.ui.internal.progress.ProgressViewerContentProvider.refresh(ProgressViewerContentProvider.java:137) at org.eclipse.ui.internal.progress.ProgressViewerContentProvider$2.runInUIThread(ProgressViewerContentProvider.java:76) 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) ... 45 more | verified fixed | 70053a7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/JobTreeElement.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T14:22:18Z | 2007-03-30T18:40:00Z |
177,767 | Bug 177767 [Markers] In task preferences dialog, negative value results in internal error | Build ID: I20070313-1051 Steps To Reproduce: Open the Task View > Preferences... dialog. Enter a negative value for 'limit visible item per group to' Hit OK, Dialog pops up with... An internal error occured during: "Process resource updates". Entering a non-integer string will prevent the OK button from being hit. This should also happen when the number is outside the allowed range. | verified fixed | 644d16e | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerViewPreferenceDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2007-06-28T14:18:08Z | 2007-03-16T15:46:40Z |
174,228 | Bug 174228 [Preferences] PreferencePage javadoc needs tidying up | Build ID: I20061102-1715 Steps To Reproduce: comment for PreferencePage.setContainer() is /** (non-Javadoc) * Method declared on IPreferencePage. */ but should be /* (non-Javadoc) * Method declared on IPreferencePage. */ More information: | verified fixed | f47f6d8 | ["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 | 2007-06-28T14:01:59Z | 2007-02-14T21:53:20Z |
165,676 | Bug 165676 [JFace] Add javadoc to Window.close() to tell that no shellClosed event is sent | null | verified fixed | 5b29b7e | ["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 | 2007-06-28T13:48:50Z | 2006-11-23T16:40:00Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.