id
int64
1
6.5k
bug_id
int64
2.03k
426k
summary
stringlengths
9
251
description
stringlengths
1
32.8k
report_time
stringlengths
19
19
report_timestamp
int64
1B
1.39B
status
stringclasses
6 values
commit
stringlengths
7
9
commit_timestamp
int64
1B
1.39B
files
stringlengths
25
32.8k
project_name
stringclasses
6 values
2,130
248,343
Bug 248343 [DataBinding] Snippet for ValidationStatusProvider implementation
A common usecase is for someone to be using databinding with some custom model. This custom model sometimes comes with its own validation story that can't be ported immediately to databinding or it does something more complicated that people don't like to touch. People like to take advantage of the databinding context ...
2008-09-23 16:51:36
1,222,200,000
verified fixed
c008196
1,232,860,000
examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet027ExternalValidator.java
Eclipse_Platform_UI
2,131
241,827
Bug 241827 [DataBinding] EMF + Databinding -> NullPointerException
The EMF model has 3 EClasseS: - Library; - Book(name:EString); - BookInfo(details:EString) The references are: Library -> (0..*, containment) Book; Book -> (0..1, containment) BookInfo; I want to display in a TableViewer (via EMF databinding) the following model information: - column 1: Book.name; - column 2: BookInfo:...
2008-07-23 11:28:28
1,216,830,000
verified fixed
ad8c646
1,232,850,000
bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/map/ComputedObservableMap.java bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/map/ComputedObservableMap.java
Eclipse_Platform_UI
2,132
261,018
Bug 261018 [CSS] NPE in CSSComputedStyleImpl
Both Kai and I have been seeing the following exception. I think its related to comman separated values in the selector and may be specifically related to use of ID in the selector. Requires further investigation. The traces have at the top: java.lang.NullPointerException at org.eclipse.e4.ui.css.core.impl.dom.CSSCompu...
2009-01-14 09:21:27
1,231,940,000
resolved fixed
0286b46
1,232,810,000
bundles/org.eclipse.e4.ui.css.core/src/org/eclipse/e4/ui/css/core/impl/dom/CSSStyleDeclarationImpl.java
Eclipse_Platform_UI
2,133
262,222
Bug 262222 [Workbench] Workbench.shutdown() doesn't complete due to exception
null
2009-01-23 14:10:02
1,232,740,000
resolved fixed
101899b
1,232,740,000
bundles/org.eclipse.jface/src/org/eclipse/jface/operation/ModalContext.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
2,134
261,852
Bug 261852 [context] Separate code into API / SPI / internal
null
2009-01-21 11:30:17
1,232,560,000
resolved fixed
70ba012
1,232,670,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/BackgroundRunnerValue.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/ProgressMonitorValue.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/SelectionServiceValue.java bundles/org.eclipse.e4.ui.workbench/...
Eclipse_Platform_UI
2,135
262,101
Bug 262101 [CommonNavigator] Make the GoIntoActionProvider API so JDT can use it
null
2009-01-22 18:06:59
1,232,670,000
resolved fixed
4fef14d
1,232,670,000
bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/GoIntoActionProvider.java bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/GoIntoActionProvider.java
Eclipse_Platform_UI
2,136
189,490
Bug 189490 [CommonNavigator] Go To->Resource won't enable
I0524 1. Open the Project Explorer in the Resource perspective 2. Create a vanilla project P 3. Create a folder F 4. Create a file resource R Open the Navigate->Go To file. "Resource..." will remain disabled.
2007-05-28 14:59:23
1,180,380,000
verified fixed
6f57b38
1,232,620,000
bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/GoIntoActionProvider.java bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/actions/GotoActionProvider.java bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/n...
Eclipse_Platform_UI
2,137
252,290
Bug 252290 [Databinding] Use int.class, ... instead of Integer.TYPE
It would be great of core-databinding could replace Integer.TYPE through int.class (which are as far as I can tell equal) because then it is easier to get it compile on GWT.
2008-10-27 20:39:05
1,225,150,000
resolved fixed
87dff2e
1,232,570,000
bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/UpdateStrategy.java
Eclipse_Platform_UI
2,138
256,422
Bug 256422 [DataBinding] doSetValue in WritableValue
I have redefined equals() and hashcode() method in my own Object. So two different instances (i1 and i2) can be equals. I create an WritableValue w initialize with i1. When I tried w.setValue(i2) and I get the value with w.getvalue(), i1 as returned instead of i2. DoSetValue in Writable value : public void doSetValue(O...
2008-11-25 07:06:01
1,227,610,000
verified fixed
350a247
1,232,570,000
bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/value/WritableValue.java bundles/org.eclipse.core.databinding/src/org/eclipse/core/databinding/observable/value/WritableValue.java
Eclipse_Platform_UI
2,139
256,889
Bug 256889 [Viewers] [table] IAE (Index out of bounds) after selecting rows in virtual TableViewer
Steps to reproduce: - Load the attached snippet - Press button "Select all elements" The button's selection listener first calls table.selectAll(); and then loads the current selection of the TableViewer via tableViewer.getSelection(); --> Exception: Exception in thread "main" java.lang.IllegalArgumentException: Index ...
2008-11-28 07:50:16
1,227,880,000
verified fixed
a9fc54f
1,232,570,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTableViewer.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/viewers/AllTests.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/viewers/Bug256889TableViewerTest.java
Eclipse_Platform_UI
2,140
258,736
Bug 258736 [Viewers] [JFace] setUseHashLookUp() and multiple occurrences of same domain object in TreeViewer
null
2008-12-13 12:35:08
1,229,190,000
verified fixed
e864639
1,232,570,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java
Eclipse_Platform_UI
2,141
188,380
Bug 188380 [EditorMgmt] Topmost editor not restored when editor area does not have focus on shutdown
3.3 RC1 The topmost editor is not restored when the editor area does not have focus on shutdown. Steps: - open a Java editor and set the caret somewhere inside the text - open a second Java editor and set the caret somewhere inside the text - select a view (e.g. Problems) - with the second editor tab on top and the edi...
2007-05-22 13:01:29
1,179,850,000
verified fixed
581d6e3
1,232,570,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/NavigationHistory.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
2,142
248,752
Bug 248752 [KeyBindings] provide general platform transform for sequence modifiers in org.eclipse.ui.bindings
null
2008-09-26 13:22:37
1,222,450,000
verified fixed
96bcf01
1,232,570,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/BindingPersistence.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/IWorkbenchRegistryConstants.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/keys/BindingPersistenceTest.java
Eclipse_Platform_UI
2,143
258,934
Bug 258934 [Viewers] Improve CheckboxTreeViewer coverage
Build ID: I20081211-1908 There are a number of methods in CheckboxTreeViewer which have no tests and could easily be tested.
2008-12-16 09:18:14
1,229,440,000
verified fixed
4c16179
1,232,560,000
tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/viewers/AllTests.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/viewers/CheckboxTableViewerTest.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/viewers/CheckboxTreeViewerTest.java tests/org.ec...
Eclipse_Platform_UI
2,144
256,764
Bug 256764 [Viewers] Does DecoratingStyledCellLabelProvider add/remove the correct listener to/from the decorator
Build ID: M20080911-1700 Steps To Reproduce: Add multiple ILabelProviderListeners to a DecoratingStyledCellLabelProvider and remove one of them. Now the decoration does not work anymore. More information: In the methods addListener and removeListener, the internal labelProviderListener is added/removed to/from the deco...
2008-11-27 07:09:24
1,227,790,000
verified fixed
1cf2752
1,232,560,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/DecoratingStyledCellLabelProvider.java
Eclipse_Platform_UI
2,145
238,299
Bug 238299 [Viewers] Collapse All before expanding class/array suppresses display of all but first child node
null
2008-06-24 13:47:35
1,214,330,000
verified fixed
e328f94
1,232,560,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java
Eclipse_Platform_UI
2,146
259,536
Bug 259536 [EditorMgmt] [Patch] Problems reloading a bundle
null
2008-12-22 19:12:13
1,229,990,000
verified fixed
8eb5da2
1,232,560,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/EditorRegistry.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/FileEditorMapping.java
Eclipse_Platform_UI
2,147
258,352
Bug 258352 [Progress] synchronization in ProgressManager too expensive
null
2008-12-10 15:15:42
1,228,940,000
verified fixed
67a5cf8
1,232,560,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressViewUpdater.java
Eclipse_Platform_UI
2,148
261,752
Bug 261752 [DataBinding] Test failure in recent N and I builds
exception should have been thrown junit.framework.AssertionFailedError: exception should have been thrown at org.eclipse.core.tests.databinding.conversion.StringToNumberConverterTest.testInvalidInteger(StringToNumberConverterTest.java:239) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.exten...
2009-01-20 23:09:24
1,232,510,000
verified fixed
61a9342
1,232,550,000
tests/org.eclipse.jface.tests.databinding/src/org/eclipse/core/tests/databinding/conversion/StringToNumberConverterTest.java
Eclipse_Platform_UI
2,149
261,827
Bug 261827 [Contexts] Cant remove context manager listener from ContextService
Build ID: I20070621-1340 Steps To Reproduce: On org.eclipse.ui.internal.contexts.ContextService, removeContextManagerListener wrongly ADD a ContextManagerListener instead of removing it from context manager. More information: Excerpt from org.eclipse.ui.internal.contexts.ContextService.java public final void removeCont...
2009-01-21 08:39:59
1,232,550,000
verified fixed
04bd91c
1,232,550,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextService.java
Eclipse_Platform_UI
2,150
255,076
Bug 255076 [EditorMgmt] File icon not updated when file changed (content change or move/rename)
M20081008-0800 File icons are not updated when a file is changed (content change or move/rename the file). Steps: - create file a.xml - paste this into the opened text editor: <?xml version="1.0" encoding="UTF-8"?> <project name="project" default="default"> <target name="default"> </target> </project> - save => expecte...
2008-11-12 12:03:31
1,226,510,000
verified fixed
55fbbdb
1,232,490,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/ContentTypeDecorator.java
Eclipse_Platform_UI
2,151
250,807
Bug 250807 [Markers] Delete handler in problems view should spawn a job
null
2008-10-14 12:27:21
1,224,000,000
verified fixed
d4531bf
1,232,490,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/DeleteHandler.java
Eclipse_Platform_UI
2,152
257,094
Bug 257094 [Markers] NPE in MarkerHelpRegistry
We've been analyzing user .log files to root out common problems and clean up unnecessary errors. Since this is done offline I have no further info on what the user(s) were doing at the time, but the following NPE was hit 77 times by our users during the month of October: !ENTRY org.eclipse.jface 4 2 !MESSAGE Problems ...
2008-12-01 11:44:47
1,228,150,000
verified fixed
d677a47
1,232,490,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/registry/MarkerHelpRegistry.java
Eclipse_Platform_UI
2,153
260,904
Bug 260904 API to capture the functionality of the new Customize Perspective Dialog
The new CPD allows users to hide menu items and toolbar items discreetly. We should also provide API access this this functionality (so that various products/RCP apps can define a set of initial values to the 'override' list. The most obvious place to provide declarative API would be an extension to the existing 'persp...
2009-01-13 13:44:02
1,231,870,000
verified fixed
fd1b1bd
1,232,480,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PageLayout.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Perspective.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/IWorkbenchRegistryConstants.java bundles/org.eclipse.ui.workbench/Eclipse ...
Eclipse_Platform_UI
2,154
261,398
Bug 261398 CocoaUIEnhancer NSME for standardWindowButton
Weird one. I'm not sure that I can reproduce what caused it initially as everything is fine and then I start seeing this in error log. I have it in the test IDE I just did for 261395 so perhaps you can reproduce it by following those steps. (And I just got a sementation fault as I was submitting this report..but I won'...
2009-01-16 17:02:19
1,232,140,000
resolved fixed
7105166
1,232,480,000
bundles/org.eclipse.ui.cocoa/src/org/eclipse/ui/internal/cocoa/CocoaUIEnhancer.java
Eclipse_Platform_UI
2,155
259,553
Bug 259553 [TabbedProperties] expensive refresh of text
I have absolutely no idea as to which component I should raise this bug against, took the general "platform ui" instead. We have an (GMF-based) application making heavy use of the tabbed properties view in order to display something more appealing than the classical table for our elements. All goes well except ... it c...
2008-12-23 06:01:25
1,230,030,000
verified fixed
f31a191
1,232,410,000
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java
Eclipse_Platform_UI
2,156
228,110
Bug 228110 [Markers] Problems view: Improve 'Warnings on Selection'
20080421 The problems view has a built-in configuration 'Warnings on Selection'. I wonder how useful this is. Wouldn't it be more useful to change this to 'Error/Warnings on Selection'? That's something I often use. Other useful configuration worthy to be built-in: 'Error/Warnings on Same Project'
2008-04-21 17:19:10
1,208,810,000
verified fixed
8efa054
1,232,380,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/ErrorsWarningsParameters.java
Eclipse_Platform_UI
2,157
231,627
Bug 231627 [Commands] Server view tool bar icons shows on welcome page
Build ID: 3.0 Steps To Reproduce: The server view tool bar icons sometime shows up in the welcome pages even though the welcome page does not contains the servers view. More information:
2008-05-12 14:41:02
1,210,620,000
verified fixed
866152c
1,232,380,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
2,158
259,821
Bug 259821 [Contributions] commandImages does not support 'platform:/plugin/' resource spec for icon
Build ID: I20080617-2000 Steps To Reproduce: 1. open org.eclipse.ui.examples.contributions 2. add a 'platform:/plugin/' spec for an icon in a plugin the example is dependent on, eg for menu contrubution 'org.eclipse.ui.file.refresh' add 'platform:/plugin/org.eclipse.ui/icons/full/eview16/outline_co.gif'. This will work...
2008-12-31 03:03:17
1,230,710,000
verified fixed
035acab
1,232,310,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandImagePersistence.java
Eclipse_Platform_UI
2,159
254,550
Bug 254550 [IDE] NPE in SaveAsDialog when IDE not running
Build ID: 3.4.1 GA Steps To Reproduce: 1. Launch attached RCP application 2. Ctrl+N (New wizard) 3. Select "Untitled Text File", press Finish 4. Add some text to the new "Untitled 1" text editor 5. Ctrl+S (Save) 6. "Saved Failed" java.lang.NullPointerException More information: SaveAsDialog uses an IDE internal image d...
2008-11-06 22:00:03
1,226,030,000
verified fixed
e4cd5d5
1,232,310,000
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/SaveAsDialog.java
Eclipse_Platform_UI
2,160
243,270
Bug 243270 Add support for specifying Unicode locale extensions
null
2008-08-06 03:59:34
1,218,010,000
verified fixed
642bd8f
1,232,300,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
2,161
259,219
Bug 259219 Double middle mouse click should not maximize
Build ID: M20080911-1700 Steps To Reproduce: 1. Open multiple tabs in a certain region while more regions are active (for instance, multiple editor screens in the center and the navigator to the left) 2. Try to close all tabs quickly with the middle mouse button 3. The editor region gets maximized, while the only inten...
2008-12-18 04:02:44
1,229,590,000
verified fixed
329bddf
1,232,130,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/presentations/util/AbstractTabFolder.java
Eclipse_Platform_UI
2,162
258,810
Bug 258810 [Markers] Markers for the entire workspace show up when working set empty
null
2008-12-15 08:58:57
1,229,350,000
verified fixed
9f75ba0
1,232,130,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerFieldFilterGroup.java
Eclipse_Platform_UI
2,163
240,159
Bug 240159 [Markers] Creation Time column should be a timestamp in Problems view
Build ID: I20080617-2000 Steps To Reproduce: 1. Display the Problems view 2. Show the Creation Time column Currently, the Creation Time contains numbers. I would like the Creation Time column to contain time / datestamps in human readable form.
2008-07-09 09:45:45
1,215,610,000
verified fixed
24f96ca
1,232,040,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerCreationTimeField.java
Eclipse_Platform_UI
2,164
256,561
Bug 256561 [WorkingSets] Possibly broken code in ModifyWorkingSetDelegate.getItems()
I20081125-0840 While doing the dead-code analysis I found this code in org.eclipse.ui.internal.actions.ModifyWorkingSetDelegate.getItems(): for (int k = 0; k < adaptables.length; k++) { if (existingElements.contains(adaptables[k])) visible = true; // show if any element // is present in removal break; } Looks like the ...
2008-11-26 04:01:09
1,227,690,000
verified fixed
e2d4753
1,232,040,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/ModifyWorkingSetDelegate.java
Eclipse_Platform_UI
2,165
220,557
Bug 220557 [StatusHandling] Handling of jobs statuses needs polishing
It is possible to pass StatusAdapters with such property (from IProgressConstants), but it is impossible to show those errors to the user (and user may want to see them). Currently it is possible to show those errors only using another StatusAdapter as a trigger.
2008-02-27 09:46:51
1,204,120,000
verified fixed
376cdaf
1,232,030,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchErrorHandlerProxy.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/AbstractStatusHandler.java bundles/org.eclipse.u...
Eclipse_Platform_UI
2,166
260,937
Bug 260937 NPE in WorkbenchStatusDialogManager.addStatusAdapter()
Our adopter product has support for users to anonymously send in their .log files for offline analysis. Over the past few months, there have been 350 reports of the following NPE. Since this is offline, I do not have steps to reproduce. !ENTRY org.eclipse.ui 4 0 !MESSAGE Error occurred during status handling !STACK 0 j...
2009-01-13 17:14:18
1,231,880,000
verified fixed
3b427cf
1,232,020,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java
Eclipse_Platform_UI
2,167
261,164
Bug 261164 [CommonNavigator] Add dynamic tracing for DnD
The options were put in, but the tracing was never actually hooked up.
2009-01-15 04:01:26
1,232,010,000
verified fixed
dc1106c
1,232,010,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonDragAdapter.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonDropAdapter.java
Eclipse_Platform_UI
2,168
204,837
Bug 204837 [CommonNavigator] commonWizard with no pages displays empty dialog
null
2007-09-27 13:25:53
1,190,910,000
resolved fixed
be808cb
1,232,010,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/wizards/WizardShortcutAction.java
Eclipse_Platform_UI
2,169
247,294
Bug 247294 [CommonNavigator] Project Explorer: ResourceDragAdapterAssistant always initiates drag of resources
null
2008-09-15 10:03:53
1,221,490,000
resolved fixed
51123e6
1,232,010,000
bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/ResourceDragAdapterAssistant.java
Eclipse_Platform_UI
2,170
250,198
Bug 250198 [CommonNavigator] Allow CommonNavigator to be subclassed
I believe CommonNavigator.java should be subclassable. I'm not sure why it is not intended to be subclassed. Many of the individual components ARE intended to be subclassed. I've read many many bugs where users are subclassing CommonNavigator anyway, to get around other bugs or deficiencies. I think this ability to sub...
2008-10-08 18:43:28
1,223,510,000
verified fixed
d9941ca
1,232,010,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorActionGroup.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorManager.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/LinkEditorAction.java bundles/org.eclip...
Eclipse_Platform_UI
2,171
261,147
Bug 261147 [CommonNavigator] Navigator label provider uses inconsistent methods to do the same thing
In NavigatorContentServiceLabelProvider some of the methods use findContentExtensionsWithPossibleChild and others use findRelevantLabelProvider. The latter is better and they should all use that one.
2009-01-15 02:07:24
1,232,000,000
resolved fixed
76ea0f6
1,232,000,000
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceLabelProvider.java
Eclipse_Platform_UI
2,172
260,572
Bug 260572 Request preference to always open intro on startup
null
2009-01-09 13:28:05
1,231,530,000
resolved wontfix
61a3df0
1,231,960,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/WorkbenchAdvisor.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/WorkbenchWindowAdvisor.java
Eclipse_Platform_UI
2,173
261,037
Bug 261037 bindWidget calls
null
2009-01-14 11:16:36
1,231,950,000
resolved fixed
60199a0
1,231,950,000
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/renderers/swt/CompositePartFactory.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/renderers/swt/ContributedPartFactory.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/renderers/swt/PartSashFactory.java...
Eclipse_Platform_UI
2,174
213,139
Bug 213139 [Markers] Forms in problems filtering configuration dialog doesn't grab vertical space
type list in marker filtering configuration dialog doesn't grab vertical space
2007-12-17 00:30:54
1,197,870,000
resolved fixed
af7909f
1,231,890,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersConfigurationDialog.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/TypesConfigurationArea.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/FilterConfigurationArea.java
Eclipse_Platform_UI
2,175
260,649
Bug 260649 DefaultTabFolder.updateColors() shouldn't be private
null
2009-01-11 20:28:41
1,231,720,000
verified fixed
02714d1
1,231,730,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/presentations/defaultpresentation/DefaultTabFolder.java
Eclipse_Platform_UI
2,176
259,179
Bug 259179 [TabbedProperties] TabbedPropertySheetPage extensibility option
null
2008-12-17 16:44:10
1,229,550,000
resolved fixed
0fc27ca
1,231,520,000
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/TabbedPropertySheetPage.java
Eclipse_Platform_UI
2,177
24,521
Bug 24521 [Viewers] TreeViewer.update() does not work correctly with filter
When I add an element which does not satisfy the filtering condition and then update it so that it does, call to update does not show the element. This is because[StructuredViewer.update]: public void update(Object element, String[] properties) { Assert.isNotNull(element); | Widget item = findItem(element); | if (item ...
2002-10-08 12:13:36
1,034,090,000
verified fixed
ad7c68d
1,231,260,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java
Eclipse_Platform_UI
2,178
257,820
Bug 257820 [FastView] FastView bar shows unpressed view icon after dragging active fastview to the oposite side of the screen
This happens the first time I open my RCP application, once I close it and I open again this problem doesn't happen, it seems to be related to the existence of workbench.xml and a tag about the fastview (info tag ?) I have the fastview bar in the bottom left showing some view icons, I click on one and the fast view is ...
2008-12-07 03:23:52
1,228,640,000
resolved fixed
ff8c0ba
1,229,960,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSashContainer.java
Eclipse_Platform_UI
2,179
257,956
Bug 257956 [Markers] Improvement requests to Problems View / Configure Contents dialog
Hello, I have two requests for the Configure Contents dialog of the Problems View: 1. Add 'rename' button to configuration dialog. For instance, I _never_ want "Warnings on Selection" as a configuration. I want "All on Selection". So I'd like to be able to just rename that configuration and then adjust the severity. 2....
2008-12-08 12:16:07
1,228,760,000
verified fixed
4ac9b66
1,229,960,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/FiltersConfigurationDialog.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerMessages.java
Eclipse_Platform_UI
2,180
254,936
Bug 254936 [Coolbar] Cannot switch perspective in a RCP application without Coolbars
Build ID: I20080617-2000 Steps To Reproduce: 1. Create a RCP application, in the ApplicationWorkbenchWindowAdvisor createWindowContents method, call getWindowConfigurer().createCoolbarControl(newShell); 2. Create an action to open perspective 3. Run the above RCP application. Everything works fine. 4. Remove the call t...
2008-11-11 14:12:00
1,226,430,000
verified fixed
a8efea6
1,229,960,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java
Eclipse_Platform_UI
2,181
259,477
Bug 259477 [statushandling] WEH#setStatusDialog is never used.
null
2008-12-22 05:34:00
1,229,940,000
verified fixed
2d68a87
1,229,940,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchErrorHandler.java
Eclipse_Platform_UI
2,182
211,350
Bug 211350 [ErrorHandling] Need better error handling in PerspectiveRegistry
Build ID: 3.2.2 In org.eclipse.ui.workbench plugin / org.eclipse.ui.internal.registry.PerspectiveRegistry, the loadCustom method has three problems : 1) If the xmlString is empty, as is happening in our product, reader = null, and the call to XMLMementor.createReadRoot(reader) fails because the reader = null 2) If the ...
2007-11-28 18:27:29
1,196,290,000
resolved fixed
b229965
1,229,690,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchMessages.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PerspectiveRegistry.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/dialogs/UIDialogs.java
Eclipse_Platform_UI
2,183
231,327
Bug 231327 Tabbing into table sets focus to first column regardless of its visibility
null
2008-05-09 11:41:34
1,210,350,000
resolved fixed
63c5ab3
1,229,550,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewerFocusCellManager.java
Eclipse_Platform_UI
2,184
255,229
Bug 255229 [Viewers] [3.5] NPE in ColumnViewerToolTipSupport
null
2008-11-13 12:13:57
1,226,600,000
resolved fixed
c9de041
1,229,550,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewerToolTipSupport.java bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerRow.java
Eclipse_Platform_UI
2,185
248,516
Bug 248516 [Browser] Update Window > Pref > General >Web Browsers UI
At a time when web development is more important than ever, Eclipse platform support for web browsers is weak. The preferences panel under Window > Preferences > General > Web Browser has some limitations: 1) The dialog that pops up has only a tiny window for parameters 2) The documentation seems to be limited to two l...
2008-09-24 20:20:17
1,222,300,000
resolved fixed
6abf9a4
1,229,540,000
bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/BrowserDescriptorDialog.java
Eclipse_Platform_UI
2,186
258,153
Bug 258153 Making a wizard visible in CPD does not make the New menu visible.
Build ID: I20081209-0100 Steps To Reproduce: 1. Open the CustomizePerspectiveDialog 2. Open the Menu Visibility tab. 3. Uncheck the "New" menu, under the "File" menu. 4. Expand the "New" menu, check "Java Project from Existing Ant Buildfile" 5. Click "Ok". The File > New menu is not visible. More information: It looks ...
2008-12-09 14:12:37
1,228,850,000
verified fixed
84757c4
1,229,440,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java
Eclipse_Platform_UI
2,187
258,832
Bug 258832 [WorkingSets] Test for BasicWorkingSetElementAdapter
This class needs tests.
2008-12-15 10:58:14
1,229,360,000
verified fixed
e52f84c
1,229,360,000
tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/ApiTestSuite.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/IWorkingSetElementAdapterTests.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/menus/ObjectContributionClasses.java
Eclipse_Platform_UI
2,188
258,833
Bug 258833 [Commands] RadioState doesn't work
null
2008-12-15 11:08:29
1,229,360,000
verified fixed
d7eeee7
1,229,360,000
bundles/org.eclipse.jface/src/org/eclipse/jface/commands/RadioState.java
Eclipse_Platform_UI
2,189
258,826
Bug 258826 [Commands] TextState cannot go back to its original state
TextState starts off as null, but cannot be reset to null (IllegalArgumentException). PW
2008-12-15 10:28:59
1,229,350,000
verified fixed
edeec49
1,229,360,000
bundles/org.eclipse.jface/src/org/eclipse/jface/menus/TextState.java
Eclipse_Platform_UI
2,190
100,799
Bug 100799 [ErrorHandling] 'Unable to create view' error page should link to error log view
I20050617-1618 I compiled a plug-in with a view against a 5.0 JRE. When I ran this plugin in a run-time eclipse with a 1.4 VM, startup passed without any error message. When I opened the view, I got a view with an embedded error dialog showing a ClassNotFoundException. This stacktrace was not really helpful in this con...
2005-06-20 08:40:40
1,119,270,000
verified fixed
345ab6e
1,229,350,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchMessages.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/StatusPart.java
Eclipse_Platform_UI
2,191
258,794
Bug 258794 [statushandling] NPE may occur in StatusDialogUtil#getTable
getListAreaComposite may return null, which is not checked
2008-12-15 06:10:12
1,229,340,000
resolved fixed
1a74205
1,229,340,000
tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusDialogUtil.java
Eclipse_Platform_UI
2,192
250,794
Bug 250794 [statushandling] JFace ErrorDialog should recommend using StatusManager in javadoc
null
2008-10-14 11:07:09
1,224,000,000
verified fixed
1551e7b
1,229,340,000
bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ErrorDialog.java
Eclipse_Platform_UI
2,193
238,738
Bug 238738 [StatusHandling] Still an NPE in WorkbenchStatusDialogManager.refreshSingleStatusArea(..)
null
2008-06-27 04:57:35
1,214,560,000
verified fixed
ea94a2f
1,229,330,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java
Eclipse_Platform_UI
2,194
257,752
Bug 257752 [Metadata] IWorkbenchBrowserSupport needs @noextend flag
org.eclipse.ui.browser.IWorkbenchBrowserSupport has a @noimplement flag. It should also have a @noextend flag since we may in the future want to add more constants and there does not seem to be a legitimate reason to extend this interface.
2008-12-05 13:49:31
1,228,500,000
resolved fixed
25b36d2
1,228,750,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/IWorkbenchBrowserSupport.java
Eclipse_Platform_UI
2,195
257,790
Bug 257790 [MPE] [regression] MultiPageEditorPart.pageChange(int) fires PageChangedEvent if selected page is null.
MultiPageEditorPart.pageChange(int) fires PageChangedEvent if selected page is null. The org.eclipse.ui.part.MultiPageEditorPart.pageChange(int) method has changed between Eclipse 3.4.2 and Eclipse 3.5 M3 so it throws a PageChangedEvent when the selected page is null (last line of the method): firePageChanged(new PageC...
2008-12-05 19:41:03
1,228,520,000
closed fixed
46e348c
1,228,750,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditorPart.java
Eclipse_Platform_UI
2,196
257,723
Bug 257723 [Mac] Menu items "About Eclipse SDk" and "Preferences" of Top menu "Eclipse" not disable after show the dialog of "About Eclipse SDK"
null
2008-12-05 10:49:37
1,228,490,000
verified fixed
373d218
1,228,490,000
bundles/org.eclipse.ui.cocoa/src/org/eclipse/ui/internal/cocoa/CocoaUIEnhancer.java
Eclipse_Platform_UI
2,197
257,324
Bug 257324 [Mac] Menu items "About Eclipse SDk" and "Preferences" of Top menu "Eclipse" not disable after show the dialog of "About Eclipse SDK"
Build ID: M20071023-1652 Steps To Reproduce: 1. Launch Eclipse on MAC, and open the dialog of "About Eclipse SDK" by [Eclipse]->[About Eclipse SDK] 2. Click the [Eclipse] top menu, open the [Eclipse] top menu 3. The menu items [About Eclipse SDK] and [Preferences] still enable click, them should be disable. More inform...
2008-12-03 02:13:12
1,228,290,000
verified fixed
aa73bf1
1,228,490,000
bundles/org.eclipse.ui.carbon/src/org/eclipse/ui/internal/carbon/CarbonUIEnhancer.java
Eclipse_Platform_UI
2,198
257,531
Bug 257531 [ErrorHandling] WorkbenchStatusDialogManager leaks two images in StatusTray
The StatusTray inner class appears to allocate two Images, 'normal' and 'hover', but never disposes them.
2008-12-04 08:59:11
1,228,400,000
verified fixed
a11b12c
1,228,480,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java
Eclipse_Platform_UI
2,199
256,556
Bug 256556 [Progress] Possibly broken code in DetailedProgressViewer.setFocus
I20081125-0840 While doing the dead-code analysis I found this code in org.eclipse.ui.internal.progress.DetailedProgressViewer.setFocus(): for (int i = 0; i < children.length; i++) { ProgressInfoItem item = (ProgressInfoItem) children[i]; item.setButtonFocus(); return; } Obviously the loop is useless as it will at most...
2008-11-26 03:45:59
1,227,690,000
verified fixed
20db242
1,228,410,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java
Eclipse_Platform_UI
2,200
243,758
Bug 243758 [Contributions] Accelerators in menus are not installed until menu shown
null
2008-08-11 10:46:47
1,218,470,000
verified fixed
6805c73
1,228,410,000
bundles/org.eclipse.jface/src/org/eclipse/jface/window/ApplicationWindow.java
Eclipse_Platform_UI
2,201
248,733
Bug 248733 Expression is not evaluated at startup
I bind an expression-based activity to a command and try to make it visible and unvisible at runtime with the help of a custom ISourceProvider. It works in principle fine, but the expression is not evaluated at startup. The wanted behavior appears first after the first ISourceProvider.fireSourceChanged(). Another way t...
2008-09-26 11:20:47
1,222,440,000
verified fixed
5c25486
1,228,400,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/ExpressionAuthority.java
Eclipse_Platform_UI
2,202
247,806
Bug 247806 [ErrorHandling] [plan item] configurable statushandlers
user should be able to select which statushandler should be used using command line. Currently only one status handler can be present in the application, and if there is more, random one is selected.
2008-09-18 06:41:56
1,221,730,000
verified fixed
d22e689
1,228,300,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StatusHandlerRegistry.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/statushandlers/FreeStatusHandler.java tests/org.eclips...
Eclipse_Platform_UI
2,203
257,179
Bug 257179 Window > Show View is gone
null
2008-12-02 06:55:05
1,228,220,000
verified fixed
81e226a
1,228,220,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java
Eclipse_Platform_UI
2,204
256,801
Bug 256801 [Browser] Closing internal browser causing ClassCastException
Build ID: 3.4 release Steps To Reproduce: I have created a menu item to launch the same web page using the web browser. The way that I launch the web browser is by calling: org.eclipse.ui.PlatformUI.getWorkbench().getBrowserSupport().createBrowser(id) to create the browser and then launch the url from there. I always p...
2008-11-27 11:05:09
1,227,800,000
resolved fixed
34ad4a5
1,228,170,000
bundles/org.eclipse.ui.browser/src/org/eclipse/ui/internal/browser/DefaultBrowserSupport.java
Eclipse_Platform_UI
2,205
141,690
Bug 141690 [Graphics] Improve Look and Feel of FilteredTree
I think the L&F of the FilteredTree is not yet optimal. I am using variants of it in my own projects, since the functionality is quite cool. For some ideas how the widget could be improved, see the attached screenshots. If there is a plan to adapt some of the ideas, I can contribute patches based on my own work. Ben
2006-05-14 06:08:02
1,147,600,000
resolved fixed
ddc6cb8
1,228,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredTree.java 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/FilteredPreferenceDialog.java
Eclipse_Platform_UI
2,206
49,316
Bug 49316 [Workbench] isStarting() public API of Workbench
During the Eclipse startup, it is very important for a plugin to get the workbench state since some actions can be done only after startup the Workbench. julien omondo
2003-12-23 12:39:07
1,072,200,000
resolved fixed
b0d304b
1,228,170,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java
Eclipse_Platform_UI
2,207
249,442
Bug 249442 [Contributions] VisibleWhen with checkedEnabled expression on menuContribution
null
2008-10-02 04:24:06
1,222,940,000
verified fixed
cce8ec2
1,228,160,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/CommandContributionItem.java
Eclipse_Platform_UI
2,208
238,397
Bug 238397 [Commands] Concurrent modification possible in DefaultOperationHistory
Build ID: 3.3.3.r33x_r20080129 Steps To Reproduce: This is kind of hard to reproduce, nevertheless the systematic gap can be seen directly within the coding. Please have a look into the coding of the method flushUndo(...) in org.eclipse.core.commands.operations.DefaultOperationHistory. The undoList.remove is triggered ...
2008-06-25 08:05:46
1,214,400,000
verified fixed
666c619
1,228,160,000
bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/DefaultOperationHistory.java
Eclipse_Platform_UI
2,209
2,035
Bug 2035 [Wizards] Previous location of project content area not remembered (1GDQUX8)
When I create a new project and set the content area to something other than the default, it would be good if the last choice was remembered so that when I go to create the next project, if I choose not to use the default area, that value is used as the initail setting for the file prompter. Users who want to create se...
2001-10-10 22:25:04
1,002,770,000
resolved fixed
fabe228
1,228,160,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ProjectContentsLocationArea.java
Eclipse_Platform_UI
2,210
250,651
Bug 250651 [Contributions] CommandContributionItemParameter's constructor javadoc needs correction
In the CommandContributionItemParameter(IServiceLocator, String, String, Map, ImageDescriptor, ImageDescriptor, ImageDescriptor, String, String, String, int, String, boolean) constructor, it says... Note: This method should not be called outside the framework. ...which needs to be changed from "method" to constructor"....
2008-10-13 10:42:15
1,223,910,000
verified fixed
0d67951
1,228,160,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/CommandContributionItemParameter.java
Eclipse_Platform_UI
2,211
256,830
Bug 256830 [Contributions] [regression] IElementUpdater.updateElement() - IWorkbenchPartSite service not in scope of provided UIElement
null
2008-11-27 14:51:58
1,227,820,000
verified fixed
0711a15
1,228,160,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/interna...
Eclipse_Platform_UI
2,212
182,714
Bug 182714 [Contributions] Improve toolbar configurability
null
2007-04-17 05:13:11
1,176,800,000
verified fixed
f1c0a87
1,228,140,000
bundles/org.eclipse.jface/src/org/eclipse/jface/action/ContributionManager.java bundles/org.eclipse.jface/src/org/eclipse/jface/action/CoolBarManager.java bundles/org.eclipse.jface/src/org/eclipse/jface/action/IContributionManagerOverrides.java bundles/org.eclipse.jface/src/org/eclipse/jface/action/MenuManager.java bun...
Eclipse_Platform_UI
2,213
175,069
Bug 175069 [Preferences] ResourceInfoPage is not setting dialog font on all widgets
3.3M5 The text file encoding widgets are not using the dialog font.
2007-02-21 21:04:07
1,172,110,000
verified fixed
bb6e8d0
1,228,040,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java
Eclipse_Platform_UI
2,214
181,308
Bug 181308 [Viewers] Add checked state provider to CheckBox*Viewer
It would be nice to have a provider (similar to the label or font or color providers) to determine the checked/grayed state of elements in a CheckBox*Viewer (either Table or Tree). This would generally simplify the programming model and give the developer better control over how the model objects are displayed in the v...
2007-04-05 16:20:20
1,175,800,000
resolved fixed
b35132a
1,227,940,000
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CheckboxTableViewer.java bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/CheckboxTreeViewer.java bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ICheckStateProvider.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/viewers...
Eclipse_Platform_UI
2,215
242,208
Bug 242208 [Markers] Filtering problems by working set doesn't take into account new files
Build ID: I20080617-2000 Steps To Reproduce: 1.Create a Java project 2.Create a working set that contains only a subset of source files 3.Create a filter in the problems view, whose scope is set to the working set 4.The filter works ok 5.Create a new source file that is included inside the working set 6.No errors are s...
2008-07-28 06:15:48
1,217,240,000
verified fixed
c4fb825
1,227,890,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerFieldFilterGroup.java
Eclipse_Platform_UI
2,216
249,647
Bug 249647 [ErrorHandling] Enable new ErrorDialog to open the SupportDialog by default
The behavior between a MessageDialog and an ErrorDialog is different the new errorDialog (the one with the bug icon) does not open the statusTray by default. We know we can 'write our own' Dialog, but we were thinking about extending the one already there (apparently the methods we need are private) or passing a proper...
2008-10-03 16:58:46
1,223,070,000
verified fixed
b606e6c
1,227,800,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchErrorHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java
Eclipse_Platform_UI
2,217
256,716
Bug 256716 [Viewers] FilteredTree job delay should be overridable
The FilteredTree is very useful, but there are cases where clients or subclasses know that the list will be very big and/or filtering will be expensive. In this case it would be useful to be able to override the filter job delay so that the user can get more typing in.
2008-11-26 19:38:53
1,227,750,000
verified fixed
188ae3f
1,227,750,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredTree.java
Eclipse_Platform_UI
2,218
245,155
Bug 245155 [TabbedProperties] IllegalArgumentException: Argument not valid
Steps to reproduce. 1. Open two editors that use the tabbed properties. I was using a WTP 3.1 driver (S-3.1M1-20080825023321) and opened up any two of the following editors: Web Page Editor, or DTD Editor, or WSDL Editor, or XML Schema Editor 2. Close one editor. You'll get the IllegalArgumentException. (See below). Af...
2008-08-25 13:29:48
1,219,690,000
closed fixed
7bc607b
1,227,740,000
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyList.java
Eclipse_Platform_UI
2,219
229,782
Bug 229782 Performance tests for ICU Collator
I20080501-0100 Now that we're using the collator again (see the dependant bug) we need to ensure that there are no performance regressions over the java.text implementation.
2008-05-01 10:05:06
1,209,650,000
verified fixed
9bee090
1,227,730,000
tests/org.eclipse.ui.tests.performance/src/org/eclipse/jface/tests/performance/CollatorPerformanceTest.java tests/org.eclipse.ui.tests.performance/src/org/eclipse/jface/tests/performance/JFacePerformanceSuite.java
Eclipse_Platform_UI
2,220
256,516
Bug 256516 [TabbedProperties] TabbedPropertySheetPage to allow some options
null
2008-11-25 17:38:49
1,227,650,000
resolved fixed
7b5d4b3
1,227,720,000
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/TabbedPropertySheetPage.java
Eclipse_Platform_UI
2,221
119,085
Bug 119085 [TabbedProperties] need getters and setters for the current Tab
We have some use cases where we need to remember the current active Tab and Section and later in the lifecycle we need to select those again. Currently there is no API for this functionality.
2005-12-02 14:28:49
1,133,550,000
resolved fixed
258412c
1,227,710,000
bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/internal/views/properties/tabbed/view/TabbedPropertyViewer.java bundles/org.eclipse.ui.views.properties.tabbed/src/org/eclipse/ui/views/properties/tabbed/TabbedPropertySheetPage.java tests/org.eclipse.ui.tests.views.properties.tabbed/src/org/eclipse/ui/t...
Eclipse_Platform_UI
2,222
254,492
Bug 254492 [Import/Export] ILeveledImportStructureProvider interface is not declared public
null
2008-11-06 13:50:52
1,226,000,000
verified fixed
acb66b8
1,227,630,000
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/ILeveledImportStructureProvider.java
Eclipse_Platform_UI
2,223
242,819
Bug 242819 [ErrorHandling] [statushandling] WorkbenchStatusDialogManager.setStatusListLabelProvider is inconsistent
setStatusListLabelProvider functions correctly if there is only one status displayed. If there is more, messages switch places, and custom label provider is used in different way. Configuring WSDM with custom label provider is too difficult.
2008-08-01 02:56:33
1,217,570,000
verified fixed
79e85e2
1,227,530,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java
Eclipse_Platform_UI
2,224
242,821
Bug 242821 [ErrorHandling] [statushandling ]Need a way to configure label providers on StatusDialog
null
2008-08-01 03:01:06
1,217,570,000
verified fixed
68a1bde
1,227,530,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java
Eclipse_Platform_UI
2,225
242,789
Bug 242789 [Markers]If you hit escape on the delete markers dialog it deletes them anyway
Right click on a problem marker in the problems view and select delete. You get the confirmation dialog. Hit escape. The marker is deleted anyway. The problem looks to be in org.eclipse.ui.internal.views.markers.DeleteHandler.execute(ExecutionEvent): if (dialog.open() == Window.CANCEL) { return view; } It should probab...
2008-07-31 17:07:37
1,217,540,000
resolved fixed
e298d9e
1,227,250,000
bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/DeleteHandler.java
Eclipse_Platform_UI
2,226
255,773
Bug 255773 [WorkingSets] Working set saving broken
I20081118-1720 Saving of working sets is broken in this week's I-builds. On startup, the following is written to the log when the Package Explorer is configured to show working sets as top level elements: !ENTRY org.eclipse.ui 4 4 2008-11-19 12:01:03.875 !MESSAGE Unable to restore working set - cannot instantiate worki...
2008-11-19 07:09:53
1,227,100,000
verified fixed
eaed272
1,227,100,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractWorkingSetManager.java
Eclipse_Platform_UI
2,227
254,673
Bug 254673 [JFace] Window javadoc hints at overriding createShell() when this is not possible
This is the javadoc of Window's createShell() method: /** * Creates and returns this window's shell. * <p> * The default implementation of this framework method creates * a new shell and configures it using <code/>configureShell</code>. Rather * than override this method, subclasses should instead override * <code/>con...
2008-11-08 01:56:18
1,226,130,000
verified fixed
9f392ef
1,226,970,000
bundles/org.eclipse.jface/src/org/eclipse/jface/window/Window.java
Eclipse_Platform_UI
2,228
74,298
Bug 74298 [Dialogs] no null check in WorkbenchEditorsDialog.
WorkbenchPage.getPerspective() can return null. The code in getImage() needs to check for null. see IPerspectiveDescriptor persp = p.getPerspective(); ImageDescriptor image = persp.getImageDescriptor();
2004-09-20 10:59:42
1,095,690,000
verified fixed
35b1b27
1,226,960,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchEditorsDialog.java
Eclipse_Platform_UI
2,229
254,547
Bug 254547 [DND] PluginDropAdapter does not accept multiple actions in an extension
Build ID: I20080617-2000 Steps To Reproduce: 1. Create two IDropActionDelegates and declare them in the same gov.nga.geocompass.ica.ea.ui.attributeDropAction extension. 2. Test that the second Drop delegate never gets called More information: In the PluginDropAdapter class the method getPluginAdapter never checks beyon...
2008-11-06 20:41:05
1,226,020,000
verified fixed
c090ec8
1,226,960,000
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PluginDropAdapter.java
Eclipse_Platform_UI