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] |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
148,674 | Bug 148674 [PropertyPages] Property pages extension point should also deprecate adaptable | 3.2 We deprecated the propertyPages extension point attribute objectClass in favour of enabledWhen. We should also deprecate the adaptable flag as it is used with objectClass. | verified fixed | 1d3429f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/PropertyPageContributorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PropertyPagesRegistryReader.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/dynamicplugins/DynamicTestType.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/dynamicplugins/PropertyPageTests.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/preferences/PreferencesTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/propertyPages/PropertyPageEnablementTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-28T19:23:36Z | 2006-06-26T16:40:00Z |
145,035 | Bug 145035 [IDE] ESC does not work as expected on renaming a resource | When I m in the team synchronizing perspective I press F2 to rename a resource. A dialog pops up and when I press cancel everything is fine. But when I press ESC (or use the "X" button") I m asked if I want to overwrite the existing resource. | resolved fixed | 1d9ef8d | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/RenameResourceAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-26T20:28:39Z | 2006-06-02T09:20:00Z |
148,551 | Bug 148551 [Import/Export] Import File System Problem | When going to import some files if you choose General, then Filesystem. As you browse to the folder where you want to import items from and select it, the option to "Select All" is not available until you either select the folder or a file in the folder. | verified fixed | 7553678 | ["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 | 2006-06-26T15:54:29Z | 2006-06-25T01:46:40Z |
24,143 | Bug 24143 [DND] Incorrect javadoc for NavigatorDragAdapter | Build 20020924 The javadoc that is generated for NavigatorDragAdapter (look in reference section of online help), looks like this: void dragFinished(DragSourceEvent event) This implementation of dragFinished does nothing. void dragSetData(DragSourceEvent event) This implementation of dragSetData does nothing. void dragStart(DragSourceEvent event) This implementation of dragStart permits the drag operation to This javadoc is incorrect. It has been copied from the generic superclass DragSourceAdapter. I guess we need to override the javadoc for API classes in cases where the implementation differs significantly from the superclass. There are probably many more examples of this throughout the UI. | verified fixed | 1ee6d1f | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/NavigatorDragAdapter.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-23T20:08:21Z | 2002-09-26T14:20:00Z |
88,325 | Bug 88325 [Progress] IProgressService document enhancements | The topmost comment on the IProgressService is speaking about IProgressManager and looks like a typo. it should say IProgressService Through testing the method of the IProgressService; busyCursorWhile run(boolean,boolean,IRunnableWithProgress) If the IProgressService is returned by IWorkbench, must both be called from the UI thread. I wonder if this means all thread running methods of the IProgressService returned by IWorkbench must be called from the UI thread. If so it would be nice if the workbench specified that on its getProgressService() method. | verified fixed | e5d7e39 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/progress/IProgressService.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-23T15:49:53Z | 2005-03-17T14:33:20Z |
145,378 | Bug 145378 [Coolbar]RCP appication loses Icons/actions with IDE Stable Builds RC6 and RC7 | When launching an RCP application from PDE icons/actions are lost. RC6 loses a general action from the toolbar even thou' it appears in the main menu. The action is added to the toolbar from the plugin manifest and is hooked in as follows using the ToolBarContributionItem. protected void fillCoolBar(ICoolBarManager cbManager) { cbManager.add(new GroupMarker("group.file")); { // File Group IToolBarManager fileToolBar = new ToolBarManager(cbManager.getStyle()); fileToolBar.add(new Separator(IWorkbenchActionConstants.NEW_GROUP)); fileToolBar.add(new GroupMarker(IWorkbenchActionConstants.OPEN_EXT)); fileToolBar.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS)); cbManager.add(new ToolBarContributionItem(fileToolBar,IWorkbenchActionConstants.TOOLBAR_FILE)); } cbManager.add(new GroupMarker(IWorkbenchActionConstants.MB_ADDITIONS)); cbManager.add(new GroupMarker(IWorkbenchActionConstants.GROUP_EDITOR)); } RC7 loses the above as well as the "run garbage collection" icon on the bottom right of the workbench window. The two mentioned problems work correctly in the Eclipse 3.1.2 final release. | verified fixed | 8a290f9 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/action/ToolBarContributionItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-23T13:08:27Z | 2006-06-05T17:53:20Z |
147,846 | Bug 147846 [OLE] OLE Error using Open With > In-Place Editor | 3.2 RC7 and latest 3.3 I-build (I20060614-0843) 1. select any file (text, html, java, ...) in the Navigator 2. Open With > In-Place Editor ==> error dialog appears, nothing in .log. Empty editor gets opened. | verified fixed | 915e091 | ["bundles/org.eclipse.ui.win32/src/org/eclipse/ui/internal/editorsupport/win32/OleEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-21T17:34:43Z | 2006-06-20T10:40:00Z |
142,785 | Bug 142785 NavigatorSaveablesServices NPEs on shutdown | On Build id: I20060505-1306: The following exception was encountered on shutdown, and encountered multiple times (about 20). I'm not sure I have a scenario that can reproduce this, but there were many more Navigator extensions than base platform (roughly 20). I think by the time this was reached, the Project Explorer had been disposed. !ENTRY org.eclipse.osgi 4 0 2006-05-19 11:21:38.993 !MESSAGE An unexpected runtime error has occurred. !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.computeSaveables(NavigatorSaveablesService.java:216) at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.recomputeSaveablesAndNotify(NavigatorSaveablesService.java:374) at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.handleBundleStopped(NavigatorSaveablesService.java:457) at org.eclipse.ui.internal.navigator.NavigatorSaveablesService.bundleChanged(NavigatorSaveablesService.java:100) at org.eclipse.ui.internal.navigator.NavigatorPlugin$1.bundleChanged(NavigatorPlugin.java:35) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent(BundleContextImpl.java:1206) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:189) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:291) 11 | verified fixed | 092b316 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-20T17:42:04Z | 2006-05-19T14:46:40Z |
92,738 | Bug 92738 [Progress] progress view flashes even when no visible update occurs | null | verified fixed | 8da017b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-20T14:10:36Z | 2005-04-26T07:20:00Z |
147,737 | Bug 147737 [Wizards] Delete dead multi step wizard code | null | verified fixed | 302948d | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateProjectStep.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateProjectWizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/MultiStepConfigureWizardPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/MultiStepReviewWizardPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/MultiStepWizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/MultiStepWizardDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/NewProjectWizard.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/WizardNewProjectNameAndLocationPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/WizardStep.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/WizardStepGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T19:40:17Z | 2006-06-19T15:13:20Z |
144,556 | Bug 144556 [Dialogs] TitleAreaDialog fails to properly recreate when an instance is reopened | When a TitleAreaDialog is created, opened, closed and opened again on the same instance the messageArea is not properly checked against disposal when it is accessed in setWarningMessage throwing an SWTException for disposed when the message area is updated the second time the dialog is opened. | verified fixed | 7012167 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/TitleAreaDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T18:35:22Z | 2006-05-30T20:13:20Z |
137,946 | Bug 137946 [Preferences] Mock 3.2 - Truncated strings in Preference - keys dialog | Instructions to recreate the bugs Go to Windows > Preferences. Expand General. Select Keys. "Edit" and "Export" strings are truncated. | verified fixed | 659087b | ["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 | 2006-06-19T15:35:55Z | 2006-04-21T14:33:20Z |
147,727 | Bug 147727 UI incorrectly prevents overlapping project locations on disk | null | verified fixed | 46c7552 | ["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/ProjectContentsLocationArea.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/WizardNewProjectNameAndLocationPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T15:09:19Z | 2006-06-19T15:13:20Z |
135,559 | Bug 135559 [Markers] Problem view sections collapse after manual build | 3.2 M6 The sections in the problem view collapse after a manual build For example: - set autobuild off - expand the errors section in the problem view - click on a problem - fix the problem - build - notice that the "error" section is now collapsed. | verified fixed | d584568 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T15:01:23Z | 2006-04-07T14:26:40Z |
135,316 | Bug 135316 [DataBinding] Unexpected behavior from BindSpec converter and validator setters | The set methods that accept one validator/converter don't behave as expected. For example if setValidators(...) was called with 2 validators and then setValidator(...) was called it would only change the first validator stored internally. The validator that previously was set at index 1 in the array is still maintained by BindSpec. Also the setValidator(...) method always assumes that an array with at least a length of 1 exists. If setValidators(...) is called with an array of length zero and then a call is made to setValidator(...) an IndexOutOfBoundsException is thrown. Same problems would occur with setting it to null except of course a NPE will be thrown. When I get some time I'll try to apply a patch for this. The changes that I'll make will be that when any set is called it removes all previous values. | verified fixed | 2f716b5 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/BindSpec.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindSpecTests.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 | 2006-06-19T14:26:51Z | 2006-04-06T16:13:20Z |
112,045 | Bug 112045 [CellEditors] ComboBoxCellEditor doesn't set items if creation of control is deferred | If the ComboBoxCellEditor is instantiated without creating the control the items are not set on the ComboBoxCellEditor on call to createControl(Composite parent). The following snippet displays the problem. public class ComboEditor { void run() { Display display = new Display(); Shell shell = new Shell(display); String[] items = new String[]{"Item 1", "Item 2", "Item 3"}; ComboBoxCellEditor editor = new ComboBoxCellEditor(); editor.setItems(items); editor.create(shell); //Uncomment to set items. // editor.setItems(items); editor.activate(); editor.getControl().setVisible(true); editor.getControl().setBounds(0, 0, 100, 20); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } public static void main(String[] args) { new ComboEditor().run(); } } | verified fixed | dfd144f | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ComboBoxCellEditor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T14:10:28Z | 2005-10-09T03:53:20Z |
137,425 | Bug 137425 [DataBinding] ValidationError javadoc makes references to ValidationResult | It looks like ValidationError used to be named ValidationResult as the javadoc makes references to types that are now a part of ValidationError. Attaching patch... | verified fixed | 55c2f96 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/validation/ValidationError.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T14:09:52Z | 2006-04-19T04:13:20Z |
44,861 | Bug 44861 [CellEditors] DialogCellEditor does not handle focusLost() | Make sure you have org.eclipse.ui.examples.propertysheet_2.1.0 and open any *.usr file. Select "Richard" from the outline view and select "eyecolor" from the properties view (notice the ... button). Now open the search dialog and notice the ... button is still there. If you select other text or combo properties, notice the editor has been deactivated. | verified fixed | bb3983d | ["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 | 2006-06-19T14:06:47Z | 2003-10-14T22:20:00Z |
139,407 | Bug 139407 [DataBinding] TestMasterDetail not updating when changing Person State | When running org.eclipse.jface.examples.databinding/src/org.eclipse.jface.examples.databinding.nestedselection.TestMasterDetail and editing a Person's State the master table isn't updated when the State's value changes. The reason for this is that the Person object isn't notifying listeners of changes. | verified fixed | 63e79c3 | ["examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/HelloWorld.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/model/SimpleModel.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/model/SimpleOrder.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/model/SimplePerson.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/nestedselection/Model.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/nestedselection/Order.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/nestedselection/Person.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/nestedselection/TestMasterDetail.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/examples/model/PersonTests.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T14:05:34Z | 2006-04-30T01:20:00Z |
146,435 | Bug 146435 [DataBinding] Mocks InvocationHandler throws an exception when returning primitive type | The InvocationHandler in the Mocks class attempts to return a new type via Class.newInstance for primitives which throws an InstantiationException. | verified fixed | fd070d1 | ["tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/util/Mocks.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/util/MocksTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-19T13:52:19Z | 2006-06-11T21:06:40Z |
147,545 | Bug 147545 [DataBinding] When attempting to fire a stale event AbstractObservable throws ClassCastException | The code in AbstractObservable for the firing of stale events appears to be incomplete. When listeners are added they're added as type IStaleListener but when retrieved they're cast to IChangeListener. I'm assuming that code was copied from the change listener code but not completed. Attaching patch... | verified fixed | 09ae5bf | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/AbstractObservable.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/list/AbstractObservableList.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/mapping/BaseObservableMapping.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/BindingTestSuite.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/ObservableTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/provisional/observable/AbstractObservableTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-17T12:50:51Z | 2006-06-16T23:20:00Z |
132,947 | Bug 132947 [DataBinding] small code style problems in AbstractObservable | I read new code for JFace data bindings and found couple code style problems in AbstractObservable. Nothing special, but looks not ideal, as it should be Eclipse code. :-) 1. In "addChangeListener". Collection listenerList; if (changeListeners instanceof IChangeListener) { IChangeListener l = (IChangeListener) changeListeners; listenerList = new ArrayList(); listenerList.add(l); } else { listenerList = (Collection) changeListeners; } if (listenerList.size() > 16) { HashSet listenerSet = new HashSet(); listenerSet.addAll(listenerList); changeListeners = listenerList; } Here listenerList declared as collection and initialized with ArrayList. But couple lines below listenerSet declared not as Collection or even Set, but directly as HashSet. 2. In "removeChangeListener". Collection listenerList = (Collection) changeListeners; listenerList.remove(listener); if (listenerList.size() == 0) { changeListeners = null; if (!hasListeners()) { lastListenerRemoved(); } } I think that it is better use "listenerList.isEmpty()" instead of "listenerList.size() == 0". Here I have also two sub-questions: 2.1. may be check that remove() returns "true"? In theory it is possible that collection does not contains passed listener (because of bug in user code?), so rest of code is not required. 2.2. I am not sure, but may be it is good to check for single element is listenerList and rollback to direct listener as changeListeners? Well, most probably no, but just idea... | verified fixed | df7d74b | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/viewers/StructuredViewerObservableCollectionWithLabels.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/AbstractObservable.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/list/AbstractObservableList.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/list/ObservableList.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/mapping/BaseObservableMapping.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/set/ObservableSet.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/value/AbstractObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/observable/value/AbstractVetoableValue.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-17T02:19:09Z | 2006-03-23T07:46:40Z |
137,877 | Bug 137877 [DataBinding] StructuredViewerObservableValue javadoc and code cleanup | I started looking at this class to see what it was doing and noticed a potential problem if anyone was to extend this class and this snowballed into adding javadoc, cleaning up the code a bit, and writing tests. Changes made: * documented doGetValue() and the constructor to warn of subclassing issues. see explanation below... * changed doGetValue() from public to protected. I'm assuming since this is a template method it is only meant for the eyes of subclasses and other package classes. * removed the 'attribute' parameter from the constructor because the constructor wouldn't allow but one value for attribute and would throw an IAE if it wasn't correct. Every method was then checking this variable for the same value and because it was only set at construction and only one value was allowed it seemed redundant. * removed 'attribute' from the class and from every method because of the removal of it from the constructor. * added validation for constructor parameters doGetValue() is public and if someone was to extend this class and override doGetValue() this method would get invoked before their subclass was fully initialized because their constructor would not have ran yet. Because this class extends from AbstractObservableValue and doGetValue() is declared as protected it didn't seem like much could be done about changing this so I ended up documenting it thoroughly in the constructor javadoc and the javadoc for doGetValue(). The constructor signature change and the validation the constructor parameter are both nonpassive changes. I also was wanting to rename the class to StructuredViewerSingleSelectionObservableValue but didn't do so in order to be able to provide a patch that allowed for the easy viewing of the changes made. Because of the constructor change I had to change ViewersObservableFactory as well when constructing the object. | verified fixed | 5dbe246 | ["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/viewers/SelectionProviderSingleSelectionObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/viewers/StructuredViewerObservableValue.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/provisional/viewers/ViewersObservableFactory.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/SelectionProviderSingleSelectionObservableValueTest.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/internal/databinding/provisional/viewers/ViewersObservableFactoryTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-16T03:05:19Z | 2006-04-21T06:13:20Z |
143,474 | Bug 143474 [FieldAssist] Info popup in ContentProposalAdapter shows obsolete information | This problem occurs when the info popup dialog is already up. When I scroll through a list of content proposals in the content proposal popup dialog, if the current selection has extra information to show, the associated info popup dialog comes up. Then if I scroll to another selection which does not have any extra information to show, the info popup dialog does not go away. Instead, it keeps showing the context information from my last selection. Shouldn't the info popup be closed if the new selection has no additional information to show? Thanks. | verified fixed | 6dd2e93 | ["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 | 2006-06-16T02:17:25Z | 2006-05-24T14:13:20Z |
147,377 | Bug 147377 [Field Assist] - open proposal popup should close when there are no valid proposals left | null | verified fixed | af27fa6 | ["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 | 2006-06-16T01:19:04Z | 2006-06-15T22:20:00Z |
144,522 | Bug 144522 [Field Assist] - should proposal popup ever open if empty? | null | verified fixed | 19894e0 | ["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 | 2006-06-15T22:09:11Z | 2006-05-30T20:13:20Z |
142,172 | Bug 142172 [Wizards] Small overhead in WizardDialog | Here is code of method WizardDialog.updateDescriptionMessage: private void updateDescriptionMessage() { pageDescription = currentPage.getDescription(); setMessage(currentPage.getDescription()); } As you can see, it access currentPage.getDescription() two times, but value of this method is already in field pageDescription. | resolved fixed | e047b60 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-15T20:58:28Z | 2006-05-17T10:00:00Z |
138,190 | Bug 138190 [Wizards] Save As doesn't check validity of location | Build id: N20060424-0010 1) Create project "P1" containing file "a.txt" 2) Open the editor on a.txt 3) File > Save As 4) In the "File name" field, enter "c:\temp\a.txt" (I was somehow thinking I could save the file in the file system from here). 5) Click Ok. It creates a file /P1/temp/a.txt I would have expected an error in the wizard as soon as I entered the ":" character, which is not a valid character in file names on windows. | resolved fixed | c53dac1 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/SaveAsDialog.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-15T19:52:17Z | 2006-04-24T14:46:40Z |
147,305 | Bug 147305 [Workbench] Fix detection of early event loop spinning in debug mode | Workbench.runUI uses currently checks for early spinning of the event loop if WorkbenchPlugin.DEBUG is true, but WorkbenchPlugin.DEBUG is only set to true later in the initialization of the Workbench. Should use WorkbenchPlugin.getDefault().isDebugging() instead. | resolved fixed | 37cad62 | ["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 | 2006-06-15T18:54:58Z | 2006-06-15T14:00:00Z |
130,915 | Bug 130915 [Progress] 'X' button on completed task shows "Cancel Task" as tooltip | 3.2 M5 In the Progress view, I had a completed sync job showing the gray X button, but its tooltip read "Cancel Task". I was expecting "Remove Task" or "Remove Completed Task". | verified fixed | f670f7f | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-15T15:31:44Z | 2006-03-08T15:00:00Z |
131,851 | Bug 131851 [Progress] 'User Operation is Waiting' progress dialog is not accessible | I20060217-1115 The 'User Operation is Waiting' progress dialog is not accessible. I found no way to give focus to the list of jobs nor to cancel a job. Tab and/or Up/Down keys should select jobs and Cancel and/or Delete should cancel the selected job. Steps to reproduce: Start checking out org.eclipse.swt from CVS. While the checkout progresses, select .classpath_win32 in the Package Explorer and press F2. | verified fixed | 35d15f7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorFocusJobDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-15T15:11:44Z | 2006-03-14T23:46:40Z |
144,527 | Bug 144527 [Wizards] WizardDialog should have the maxmize button | RC6 Many of our wizards show up quite scrunched initially in High Contrast mode. When they are expanded the size is quite good. We should set the maximize flag so that we get a maximize button on the dialog shell. | resolved fixed | 068e707 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-14T20:53:50Z | 2006-05-30T20:13:20Z |
139,542 | Bug 139542 [Progress] Infrastructure jobs should not be shown in System jobs mode | RC2 It turns out the more people show system jobs that originally thought. We should only show those for updating the problems view and the animation when an options file is set. | verified fixed | 0e7fbc2 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/misc/Policy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressMonitorJobsDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressViewUpdater.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-14T18:24:00Z | 2006-05-01T16:13:20Z |
129,755 | Bug 129755 [Decorators] CompositeImageDescriptor: Problem on overlay with transparent areas in PNG | null | verified fixed | e3dd797 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/resource/CompositeImageDescriptor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/decorators/DecoratorOverlayIcon.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-14T15:28:51Z | 2006-02-28T12:33:20Z |
146,265 | Bug 146265 [FieldAssist] Problems with vertical filled control | When using text with fill vertical, the text of the decorated field will not fill all the space. DecoratedField decoNormal = new DecoratedField(shell, SWT.BORDER, new TextControlCreator()); FieldDecoration fieldDeco = FieldDecorationRegistry.getDefault(). getFieldDecoration(FieldDecorationRegistry.DEC_CONTENT_PROPOSAL); decoNormal.addFieldDecoration(fieldDeco, SWT.TOP | SWT.LEFT, false); decoNormal.getLayoutControl().setLayoutData( new GridData(SWT.FILL, SWT.FILL, true, true) ); If i do this trick it will work but it is not a good practice i think : FormData fieldData = (FormData)decoVerticalFilled.getControl().getLayoutData(); fieldData.bottom = new FormAttachment(100, 0); decoVerticalFilled.getControl().setLayoutData(fieldData); Regards | verified fixed | 49690fc | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/DecoratedField.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-13T16:54:33Z | 2006-06-09T16:20:00Z |
146,750 | Bug 146750 [DataBinding][CompositeTable] Crash when dragging scroll bar | Run CompositeTableTest Drag scroll bar down Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: -1, Size: 6 at java.util.LinkedList.entry(LinkedList.java:360) at java.util.LinkedList.get(LinkedList.java:303) at org.eclipse.jface.examples.databinding.compositetable.InternalCompositeTable.currentRow(InternalCompositeTable.java:1671) at org.eclipse.jface.examples.databinding.compositetable.InternalCompositeTable.fireRowDepartEvent(InternalCompositeTable.java:1511) at org.eclipse.jface.examples.databinding.compositetable.InternalCompositeTable.setTopRow(InternalCompositeTable.java:732) at org.eclipse.jface.examples.databinding.compositetable.InternalCompositeTable$2.widgetSelected(InternalCompositeTable.java:1239) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3158) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2838) at org.eclipse.jface.examples.databinding.compositetable.test.CompositeTableTest.main(CompositeTableTest.java:167) | resolved fixed | 31bdf15 | ["examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/compositetable/InternalCompositeTable.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-13T04:12:21Z | 2006-06-13T03:40:00Z |
145,536 | Bug 145536 [Progress] TVT3.2:TCT861: DA: US date displayed in error msg | OS: RHEL 3.1 Must fix or not a must fix: YES Build date: 060406 Component name = DTP Blocking: NO Language: da Bitmap Location: V:\defects\da\21.001210.jpg Tester Name: Elsebeth Flarup Problem Description: From the menu bar, go to Window -> Show View -> Other... Expand Connectivity Select Data Source Explorer. Click Ok In the view that appears, you should see a list of available connection profile categories. Click the New Connection Profile button from the Data Source Explorer view menu In the wizard, select one of the available database types. For this test, select Derby Embedded Database. Click Next. On the ?Create connection profile? wizard page, you should be able to specify a name and description for your new Derby connection profile and determine if it should start automatically when it is created and the next time the Data Source Explorer opens. Put ?TVTDerby? in the Name field. Put ?TVTDerby description? in the Description field. Click Next Select the ??? button beside the driver combo box near the top of the wizard page. Select the ?Derby Embedded? driver category and click ?Add?? Choose one of the available driver templates for Derby (for example, Derby Embedded JDBC Driver for Derby 10.0) and click OK Select derby.jar reference in Driver File(s) list and click ?Edit Jar/Zip.? Using the ?Select the file? dialog, find the location of the derby.jar file on your system and click OK. The path in the Driver file(s) list should update.. At this point, your driver is set up. If you want to change where the new Derby database will be created, you can modify the Connection URL value in the Properties portion of the dialog. Click OK on the Edit Driver Entry dialog to save your changes. On the Driver Definitions dialog, select your new driver and click OK. You may need to change the directory to the Derby database in the URL field. Change it to a drive a Linux directory. Test your profile to see if it connects. Click the Test Connection button. At this point I get an error (problem with the driver), and the error message displays the date and time in US English format instead of Danish. Should be "man jun 5" (as displayed by the OS) or the format returned by the JDK for the da_DK locale. This article was reassigned from Category:''TVT/Testing''. | verified fixed | 17f14ad | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ErrorInfo.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-12T15:33:28Z | 2006-06-06T13:20:00Z |
145,931 | Bug 145931 [Dialogs] StatusDialog: when status is on same line as button bar, status is aggressively truncated | Version: 3.2.0 Build id: I20060602-1317 On my workstation, there remains plenty of space to expand the message. Don't know how easy it would be to get it to 'auto-adjust', but the result is a bit disappointing. [I'll attached a partial screen copy.] | verified fixed | ff31417 | ["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 | 2006-06-08T17:37:53Z | 2006-06-08T07:00:00Z |
144,241 | Bug 144241 [Wizards] Help icon showing up twice in the new wizard | RC6 We have 2 help icons showing up in the new dialog currently - one of which is disabled. | verified fixed | 0929fbb | ["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/NewWizardNewPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-07T19:17:06Z | 2006-05-29T13:40:00Z |
139,254 | Bug 139254 [Progress] Sleeping Jobs shown as running | 3.2 20060428 We are currently showing sleeping jobs as running as we are: 1) Not using thier icon 2) Using the finished string when it is sleeping. We should use the sleeping string | verified fixed | 9ff9222 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-07T14:53:59Z | 2006-04-28T18:46:40Z |
142,817 | Bug 142817 [Progress] No F1 help for progress view | Build: 3.2 RC5 Open the progress view. Press F1. There is no context help available. | verified fixed | 0575436 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-07T14:42:07Z | 2006-05-19T17:33:20Z |
139,769 | Bug 139769 [Progress] Builds show X instead of red square to cancel | RC2 Any reschedulable job (like the auto build) is showing up in the progress view as completed as it has the result from the previous build still. The condition to check if the job is completed should be if (infos[i].getJob().getState() != Job.NONE) not if (infos[i].getJob().getResult() == null) | verified fixed | 85f8d13 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-07T13:59:47Z | 2006-05-02T17:13:20Z |
140,861 | Bug 140861 [Workbench] TVT3.2:TCT319: TVT - zh: Shortcut key problems in the menu. | OS : RHEL 3.1 Must fix or not a must fix: YES Build date: 0507 Blocking: NO Language: zh Bitmap Location: V:\defects\zh Tester Name: Echo Zhou Problem Description: The memonics are underscored first Chinese characters, which looks appear as redundant memonics. Procedure: 1. Start Eclipse 2. Select Window > Open Perspective, in the submenu a lot of memonics are underscored first Chinese characters. Please help to investigate. Thanks in advance for your help! Echo Zhou Same for T.Chinese. Re-attaching screen capture to match TCT number... Hello, Same problem for Korean build. Please remove the extra mnemonic. If those menus are supposed to have mnemonic key, please update Enlgish source files by adding like '&', so that we recognize and properly translate them. Thanks, Junghan This article was reassigned from Category:''TVT/Testing''. | verified fixed | b299810 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/OpenPerspectiveAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowInAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowViewAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/NewWizardShortcutAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-06T19:52:08Z | 2006-05-09T18:40:00Z |
145,594 | Bug 145594 Typo in javadoc: ResourceSelectionDialog.java | In the Javadoc for org.eclipse.ui.dialogs.ResourceSelectionDialog, the example says: dialog.setInitialSelections(selectedResources)); note the extra ')'. I noticed when trying to paste this example into my own code. | resolved fixed | dd46faa | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-06T19:26:03Z | 2006-06-06T18:53:20Z |
144,979 | Bug 144979 Add entry to ISV What's New about TreeViewer | null | verified fixed | 60972fb | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ILazyTreeContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-02T01:00:41Z | 2006-06-01T19:26:40Z |
138,138 | Bug 138138 [WorkbenchLauncher] Improve documentation (Progressbar in splashscreen doesn't appear) | I made the product configuration and add a progressbar in the branding tab. The splashscreen appears, but without the progressbar. | verified fixed | 62827c7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-06-01T22:51:45Z | 2006-04-23T13:46:40Z |
126,061 | Bug 126061 [Viewers] Need to document that virtual tables and trees ignore sorters and filters | null | verified fixed | 1471083 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-30T20:15:06Z | 2006-02-01T18:53:20Z |
126,874 | Bug 126874 [Viewers] Apidoc for setting ITableColorProvider missing | I wanted to add some color to my table. First i found out about ITableColorProvider, but didnt know where to register it. After digging into the eclipse source code, i found out that org.eclipse.jface.viewers.TableViewer has a method named setLabelProvider with one argument IBaseLabelProvider. In the code, but not the javadoc, it says that you can also register ITableFontProvider and ITableColorProvider with it, assuming the instance implements these types, too. Please consider documentating this feature in the corresponding javadoc, as its part of the methods functionality and contract. | verified fixed | 440b76e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-30T19:55:24Z | 2006-02-08T09:13:20Z |
144,225 | Bug 144225 [FieldAssist] NullPointerException in ContentProposalAdapter$ContentProposalPopup.open() | I am using Eclipse 3.2RC6 and was playing around with the org.eclipse.jface.fieldassist package. I wanted to implement a simple auto-complete textfield with the ContentProposalAdapter class. But if the first letter which is entered in the textfield does not yield any proposals, the call to getSelectedProposal() in line 859 of ContentProposalAdapter.java returns null and therefore a NPE is thrown, rather than just not showing the popup at all. The following snippet shows this behaviour (just type any letter except "p"): import org.eclipse.jface.fieldassist.ContentProposalAdapter; import org.eclipse.jface.fieldassist.IContentProposal; import org.eclipse.jface.fieldassist.IContentProposalProvider; import org.eclipse.jface.fieldassist.TextContentAdapter; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Text; public class ExampleSnippet { public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new FillLayout()); Text text = new Text(shell, SWT.NONE); ContentProposalAdapter adapter = new ContentProposalAdapter(text, new TextContentAdapter(), new TextProposalProvider(), null, null); adapter.setProposalAcceptanceStyle(ContentProposalAdapter.PROPOSAL_REPLACE); shell.setSize(200, text.getSize().y); shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } class TextProposalProvider implements IContentProposalProvider { private String str = "Proposal"; public IContentProposal[] getProposals(String contents, int position) { IContentProposal[] proposals; if (str.toLowerCase().startsWith(contents.toLowerCase())) { proposals = new IContentProposal[1]; proposals[0] = new IContentProposal() { public String getContent() { return str; } public int getCursorPosition() { return str.length(); } public String getDescription() { return null; } public String getLabel() { return null; } }; } else { proposals = new IContentProposal[0]; } return proposals; } } | verified fixed | a324eda | ["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 | 2006-05-30T19:18:57Z | 2006-05-29T13:40:00Z |
144,207 | Bug 144207 next / prev not working anymore in search view | RC6 Seems to be a regression since RC4. - create a new Java file with content below - in the Java editor use 'Ctrl + .' and 'Ctrl + ,' (Next / Previous) to toggle through the 2 errors in the file - select 'args', Invoke 'Search > Occurrences In File > Indentifier' - set focus to the search view (3 matches) and try to use 'Ctrl + .' 'Ctrl + ,' to go through the search results. -> does nothing in the search view but still toggles highlighting in the editor - same problem with the prev / next toolbar buttons of the search view Using the global menu actions, this works. I verified that this bug was not yet in RC4 (I20060512-1600) ----- A.java package pack; import java.util.List; import java.util.List2; public class A implements List { /** * @param args */ public static void main(String[] args) { System.out.println(args[0]); } } | verified fixed | d132108 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/expressions/LegacyEditorActionBarExpression.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/expressions/LegacyEditorContributionExpression.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-30T19:07:07Z | 2006-05-29T10:53:20Z |
144,144 | Bug 144144 Javadoc errors in N20060528-0010 build | /builds/N200605280010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.jface/src/org/eclipse/jface/layout/GridDataFactory.java:136: warning - Tag @see: Class or Package not found: fillDefaults /builds/N200605280010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.jface/src/org/eclipse/jface/layout/GridDataFactory.java:173: warning - Tag @see: Class or Package not found: swtDefaults /builds/N200605280010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/ide/fileSystem/FileSystemContributor.java:27: warning - Tag @see: Class or Package not found: org.eclipse.ui.ide.filesystemSupport /builds/N200605280010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/ide/fileSystem/FileSystemContributor.java:27: warning - Tag @see: Class or Package not found: org.eclipse.core.filesystem.filesystem | verified fixed | 2cd037e | ["bundles/org.eclipse.jface/src/org/eclipse/jface/layout/GridDataFactory.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/fileSystem/FileSystemContributor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-29T13:47:15Z | 2006-05-29T02:33:20Z |
95,659 | Bug 95659 [Workbench] Workbench#isRunning returns true when the event loop is not yet running | isRunning() returns the value of the boolean field runEventLoop, which is initialized to true upon creation of the Workbench instance. Therefore, PlatformUI#isWorkbenchRunning will return true as soon as the Workbench instance is created. It should probably return true only after the Workbench has been restored and/or initialized properly. | resolved wontfix | adf20cc | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/PlatformUI.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-23T17:09:11Z | 2005-05-17T20:00:00Z |
92,564 | Bug 92564 [Viewers] (doc only) incorrect use of html in javadoc of BackgroundContentProvider | Version: 3.1.0 Build id: I20050419-1200 The section that is explaining the information flow is not correctly defining the ordered list. Each item should be wrapped in a 'li', not an 'ol'. Index: BackgroundContentProvider.java =================================================================== RCS file: /home/eclipse/org.eclipse.jface/src/org/eclipse/jface/viewers/deferred/BackgroundContentProvider.java,v retrieving revision 1.4 diff -u -r1.4 BackgroundContentProvider.java --- BackgroundContentProvider.java 28 Mar 2005 14:57:36 -0000 1.4 +++ BackgroundContentProvider.java 25 Apr 2005 11:13:00 -0000 @@ -38,12 +38,12 @@ * <p> * Information flow is like this: * </p> - * <ol>IConcurrentModel sends unordered elements to BackgroundContentProvider (in a background thread)</ol> - * <ol>BackgroundContentProvider sorts, filters, and sends element/index pairs to - * ConcurrentTableUpdator (in a background thread)</ol> - * <ol>ConcurrentTableUpdator batches the updates and sends them to an AbstractVirtualTable - * (in the UI thread)</ol> - * <li> + * <ol> + * <li>IConcurrentModel sends unordered elements to BackgroundContentProvider (in a background thread)</li> + * <li>BackgroundContentProvider sorts, filters, and sends element/index pairs to + * ConcurrentTableUpdator (in a background thread)</li> + * <li>ConcurrentTableUpdator batches the updates and sends them to an AbstractVirtualTable + * (in the UI thread)</li> * </ol> * * <p> | verified fixed | 51991ed | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/deferred/BackgroundContentProvider.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-23T16:56:32Z | 2005-04-25T11:53:20Z |
142,498 | Bug 142498 [WorkingSets] TVT3.2:TCT539: DA: Working Window Set in English | OS: RHEL 3.1 Must fix or not a must fix: YES Build date: 051606 Component name = EMFT Blocking: NO Language: da Bitmap Location: V:\defects\da Tester Name: Mette Djoerup (user ID: dantvt03) Problem Description: In the Package Explorer view, click the menu icon in the top right corner. A string is in English: Window Working Set. This string has been translated and is found in the eclipse\plugins\org.eclipse.ui.workbench\org\eclipse\ui\internal\messages.properties file. Mette (id dantvt03) If it has been translated and it was in the last build than it should be viewable to you. Ensure that you have added "-clean" when you start eclipse. To do this in linux (from your eclipse root directory): ./eclipse -clean Or if you are running from windows: Right click on your eclipse shortcut and add "-clean" to the end of your target path. Starting eclipse with the -clean option does not help. The string was probably never in the build. Mette The newest build is not ready but will be available later today. Check with the new driver then to see if the string is present. It not, please re-drop it with the rest of your files. Same in Norwegian version. Reopening to open a bug... it doesn't look like the string is externalized. This article was reassigned from Category:''TVT/Testing''. | closed fixed | b323468 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-23T15:55:11Z | 2006-05-18T13:46:40Z |
142,564 | Bug 142564 Eclipse hangs when deleting a "dirty" product file from a project | 1. Start a new instance of Eclipse (you won't be able to exit cleanly from this scenario so don't have any unsaved work) 2. In a plugin project, add a new *.product file (File->New->Other->Plugin Dev->Product Configuration) 3. In the wizard, name the file foo.product, and select to create a file with basic settings (first radio button). Finish. 4. In the editor, type something in the "Product Name" box, just to make the file dirty. 5. Without saving, select the file in the package explorer, then press "Delete" (or right-click->Delete) 6. Eclipse politely asks "Are you sure you want to delete...?". Of course you are, so click "Yes". 7. It does something, then asks: '...' has been modified. Save changes? No, we don't want to save changes. Click "No". Result: Eclipse is hanging so badly it has to be shot down using an Anti Eclipse Missile (AEM, aka kill -9). Actually, while writing this report I noticed the hang occurs even before you answer the last dialog. | verified fixed | d43c6b9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/SaveablesList.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-19T03:09:23Z | 2006-05-18T19:20:00Z |
137,091 | Bug 137091 [KeyBindings] Toggle Mark Occurrences shortcut is broken | As of some milestone after M3, SHIFT-ALT-O does not work at all. | resolved fixed | 45a0d45 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/SubActionBars.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorActionBars.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorReference.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSite.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/expressions/LegacyEditorActionBarExpression.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-18T17:34:26Z | 2006-04-17T21:40:00Z |
142,264 | Bug 142264 [Workbench] After closing all perspectives, Project Explorer will never show content | I closed all my perspective and then opened the Resource perspective. I then opened the Project Explorer but it was empty. Now, no matter what I do (i.e. restart, disable and reenable content), I cannot get the view to show any content. | verified fixed | 3672501 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/actions/OpenPerspectiveDialogAction.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-18T16:04:41Z | 2006-05-17T15:33:20Z |
136,724 | Bug 136724 [CommonNavigator] Compile error decorations remain until the element is selected | Found in I20060413-0010 Construct a workspace with multiple/related projects that compile without errors (I found this using the org.eclipse.jface.tests.databinding and org.eclipse.jface.examples.databinding projects but any set should do). Open the Project Explorer Expand one of the projects ("A") so you can see classes Close a project that "A" depends on...you should see error decorators as expected Re-open the project. The error decorators remain until the tree element is selected by clicking on it (multi-select won't do it). | verified fixed | 571712f | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceLabelProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentExtension.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-16T17:33:24Z | 2006-04-13T17:40:00Z |
141,612 | Bug 141612 IWorkbenchWidget has incorrect copyright info | 20060512 The copyright should say 2005,2006 and it is missing a since 3.2 tag | verified fixed | 843b0f1 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/menus/IWorkbenchWidget.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-15T03:56:39Z | 2006-05-12T18:53:20Z |
141,191 | Bug 141191 [WorkbenchParts] ISaveablePart2 prompting does not happen when closing a perspective | null | verified fixed | e4572a9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IWorkbenchPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-11T19:53:36Z | 2006-05-11T04:00:00Z |
141,193 | Bug 141193 [WorkbenchParts] Javadoc change: document limitations for implementers of ISaveablesSource | null | verified fixed | 8d19a73 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISaveablesSource.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-11T05:53:55Z | 2006-05-11T04:00:00Z |
141,192 | Bug 141192 [Viewers] Javadoc change about multiple equal elements in StructuredViewer and AbstractTreeViewer | null | verified fixed | 2bbdbff | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-11T05:18:15Z | 2006-05-11T04:00:00Z |
138,283 | Bug 138283 [KeyBindings] Action set with accelerator causes conflict | Build: 3.2 RC1a 1) Installed the attached plugin 2) Switch to the Java perspective 3) Type Ctrl+Shift+T -> Nothing happens. There is a conflict between the JDT's "Open Type" action, and the action set defined by the attached plugin. The conflict occurs even though the action set in question is not enabled in the Java perspective. Actions from a disabled action set should not be stealing key bindings from actions that do apply in that perspective. This occurs if you install the Eclipse Callisto release with JDT and BIRT. BIRT defines an action set with an action bound to Ctrl+Shift+T. This causes the JDT "Open Type" action to not be reachable by the Ctrl+Shift+T binding in the Java perspective. | verified fixed | 99903f7 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/BindingManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/BindingService.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/LegacyActionPersistence.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-10T20:19:33Z | 2006-04-24T23:06:40Z |
125,138 | Bug 125138 [LinkedResources] cannot extend variable | Using I20060118-0800 Using the contextual menu upon a project that has at least one linked source folder: - Build Path/Configure Build Path; - Source tab; - select a linked source folder, Edit; - Variables; - define CURRENT_WORKSPACE pointing to the current workspace root: - New; - Name: CURRENT_WORKSPACE; - Folder...: select the workspace root, then OK; - OK; - Extend: gets a 'No entries available'. I may miss a point here, but I believe this not correct. I would expect to be able to select a subdirectory of my current workspace. Pointing the variable to a Java project root doesn't seem to help. | verified fixed | d69681e | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/PathVariableSelectionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-10T19:51:30Z | 2006-01-25T09:06:40Z |
137,824 | Bug 137824 [WorkbenchParts] Return ISaveablePart2.CANCEL from promptToSaveOnClose still closes the EditorPart | I have a EditorPart that implements ISaveablePart2 as shown below. When I return ISaveablePart2.CANCEL the EditorPart is still closed. This may be the result of SaveablesList.preCloseParts return a non-null result (PostCloseInfo) which contains my part in the partsClosing array. public int promptToSaveOnClose() { if (isDirty()) { boolean answer = MessageDialog.openQuestion(_shell, "Close Virtual Terminal", "The terminal emulator is still active. Would you like to close the editor?"); if (!answer) { return ISaveablePart2.CANCEL; } } return ISaveablePart2.NO; } | closed fixed | 2501c47 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/SaveablesList.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-10T13:31:00Z | 2006-04-20T19:06:40Z |
134,727 | Bug 134727 [WorkbenchParts] Double save prompt with view that implements ISaveablePart | I have a view that implements ISaveablePart. Eclipse 3.1 prompted the user to save changes when closing the view. In 3.2M6, I get two prompts to save. In WorkbenchPage.hideView(IViewReference), persp.canCloseView(view) prompts the user to save changes. If the user clicks the No button, Perspective.canCloseView(IViewPart) returns true. Then, hideView gets the reference count (which is 1), gets the saveablesList, and calls savablesList.preCloseParts(...,true,...) which prompts the user to save a second time. | verified fixed | abe625b | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-10T02:59:58Z | 2006-04-04T11:26:40Z |
140,576 | Bug 140576 [JFace] dialog has no icon or clipped error icon | 1) for a Java Project select 'Configure Build Path' in context menu and goto tab 'Libraries' 2) edit Access Rules for a library (e.g. JRE System...) 3) see that the dialog and its children have no window icon | verified fixed | 04d295b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/StatusDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-09T19:39:53Z | 2006-05-08T14:53:20Z |
140,160 | Bug 140160 [Field Assist] - JAVADOC ONLY- FieldDecorationRegistry API should specify that null dec description is allowed | null | verified fixed | 40fcc21 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/FieldDecorationRegistry.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-08T20:12:23Z | 2006-05-04T13:40:00Z |
139,700 | Bug 139700 Long delay on package explorer selection changes in large workspace | Build: Eclipse 3.2 RC2 I created a workspace with every callisto project added (600 projects). Clicking around in the Navigator, I found a long delay responding to selection changes (2-3 seconds on a dual 3 Ghz machine with 1024 MB RAM). The culprit is CloseUnrelatedProjectsAction.getSelectedResources. The algorithm it uses for computing the set of "unrelated projects" is O(N^3) on the number of projects in the worst case (the worst case being where all N projects are tightly related to each other, as in the Callisto project case). This should be fixed for 3.2, either by improving the algorithm, or not updating the set of unrelated projects when the selection changes. It currently does this in order to update the enablement of the action (disabling the action when there are no open unrelated projects). | verified fixed | f3899e4 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/CloseUnrelatedProjectsAction.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/misc/DisjointSet.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-03T18:43:42Z | 2006-05-02T14:26:40Z |
139,511 | Bug 139511 [CommonNavigator] getParent() fails in certain cases | In the implementation of getParents(), clients can sometimes fail to return the correct parent with the override cases taken into account. The attached patch fixes these issues, but should be reviewed by the Team Team to ensure that it does not cause any regressions for their cases. | resolved fixed | 760f9bf | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceContentProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceLabelProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/LinkEditorAction.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptor.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptorManager.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/SafeDelegateTreeContentProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/StructuredViewerManager.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/filters/UpdateActiveExtensionsOperation.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-03T18:43:40Z | 2006-05-01T16:13:20Z |
133,749 | Bug 133749 [Contributions] Create WatchExpression action show up twice in Variables View | * Show logical structure is on. * Expand map until you see key and value. * Select from variable "map" to "value" field. You need to multi-select to reproduce this. * You will see the "Create Watch Expression" action twice if you bring up the context menu. Testcase: TreeMap map = new TreeMap(); map.put("abc", "abc"); map.put("cbc", "abc"); map.put("dbc", "abc"); | verified fixed | 1eb2c2a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ObjectContributorManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-03T17:28:17Z | 2006-03-28T23:53:20Z |
138,823 | Bug 138823 [MPE] Changes to MultiPageEditorPart causing endless loop | The following method was added in RC2... /** * If there is an adapter registered against the subclass of * MultiPageEditorPart return that. Otherwise, delegate to the internal * editor. * * @see org.eclipse.ui.part.WorkbenchPart#getAdapter(java.lang.Class) */ public Object getAdapter(Class adapter) { Object result = super.getAdapter(adapter); if (result == null && getActiveEditor() != null) { result = getActiveEditor().getAdapter(adapter); } return result; } We have subclasses that override this method and end up calling super.getAdapter(Class adapter). Problem is the activeEditor is one of our subclasses.... so an endless loop.... | resolved fixed | 7485dd9 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/part/MultiPageEditorPart.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-03T16:41:11Z | 2006-04-27T03:53:20Z |
138,759 | Bug 138759 [Dialogs] Compile errors against foundation 1.0: org.eclipse.jface | build n0426 I set org.eclipse.jface to compile against the Foundation 1.0 libraries and I got the following compile errors. They can be fixed by fully-qualifying the method reference. (either by "super" or "className.this") The method setImage is defined in an inherited type and an enclosing scope org.eclipse.jface/src/org/eclipse/jface/dialogs StatusDialog.java line 106 The method setImage is defined in an inherited type and an enclosing scope org.eclipse.jface/src/org/eclipse/jface/dialogs StatusDialog.java line 112 | verified fixed | c498296 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/StatusDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-03T15:27:46Z | 2006-04-26T22:20:00Z |
139,385 | Bug 139385 [Viewers] Viewer#setComparator(ViewerComparator) has no effect | Version: 3.2.0 Build id: I20060428-1315 Setting a Comparator in setComparator is actually not triggering any sorting in my viewer. It works when I call setComparator(ViewerSorter). Any ideas? Ben | verified fixed | d65c8bc | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.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/ComparatorModelChange.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/IComparatorModelListener.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ListViewerComparatorTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/SimpleVirtualLazyTreeViewerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/TableViewerComparatorTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/TreeViewerComparatorTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ViewerComparatorTest.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-02T20:14:23Z | 2006-04-29T08:40:00Z |
139,067 | Bug 139067 [IDE] Compile errors against Foundation 1.0: org.eclipse.ui.workbench | n0426 When compiling the org.eclipse.ui.workbench project against Foundation 1.0 class libraries we get the following compile errors due to use of JDK 1.4 APIs. There is also use of java.util.regrex classes. If this is appropriate, then the code which calls this should be guarded against running when the package is not available. The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus MenuElement.java line 305 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus MenuElement.java line 305 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus SActionSet.java line 235 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus SActionSet.java line 235 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus SActionSet.java line 312 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus SActionSet.java line 312 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus SGroup.java line 152 The method valueOf(String) in the type Boolean is not applicable for the arguments (boolean) org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus SGroup.java line 153 ------------------------------------------------------------- There are also several errors where method references and/or field access needs to be fully qualified to remove ambiguity. The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 213 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 214 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 215 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 216 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 219 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 379 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 380 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 382 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 382 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 383 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 384 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 387 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 490 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 491 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 492 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 492 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 493 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 494 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 497 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 648 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 649 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 650 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 650 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 651 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 652 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 655 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 747 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 748 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 749 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 750 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 753 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 837 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 838 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 839 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 839 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 840 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 841 The field hashCode is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal ActionExpression.java line 844 The field workbench is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs ExportWizard.java line 49 The method getPresentation is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal FastViewPane.java line 98 The method getPresentation is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal FastViewPane.java line 103 The method getPresentation is defined in an inherited type and an enclosing scope org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal FastViewPane.java line 147 | verified fixed | fbfdc1c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ActionExpression.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewPane.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ExportWizard.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/MenuElement.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/SActionSet.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/SGroup.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-02T15:49:25Z | 2006-04-27T20:33:20Z |
139,176 | Bug 139176 Javadoc problems in ExternalActionManager | Build id: I20060427-0800 I was looking at the generated javadoc for ExternalActionManager. The class javadoc has this line, which should be removed: * This API is still under flux, and is expected to change in 3.1. The javadoc for ExternalActionManager.CommandCallback.isActive(String) just says: * Calling this method with an undefined command id will generate a log message. | verified fixed | ad3437d | ["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 | 2006-05-01T13:43:48Z | 2006-04-28T13:13:20Z |
139,483 | Bug 139483 IDEIdleHelper should be a system job | RC2 The IDEIdleHelper is not a system job so you periodically get a "Collecting garbage" job showing up in the ProgressView. | verified fixed | 0790e75 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEIdleHelper.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-05-01T13:41:05Z | 2006-05-01T13:26:40Z |
138,785 | Bug 138785 [Workbench] ArrayIndexOutOfBounds in WorkbenchPage.ActivationList#bringToTop | I got this AIOOBE when running the UI test suites against HEAD. The problem is in this line: int newIndex = lastIndexOfContainer(targetContainer); if (ref == parts.get(newIndex)) { The method lastIndexOfContainer can return -1, in which case you'll get the AIIOBE on the next line. java.lang.ArrayIndexOutOfBoundsException at java.util.ArrayList.get(ArrayList.java:358) at org.eclipse.ui.internal.WorkbenchPage$ActivationList.bringToTop(WorkbenchPage.java:3814) at org.eclipse.ui.internal.WorkbenchPage.updateVisibility(WorkbenchPage.java:3300) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3222) at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:957) at org.eclipse.ui.internal.WorkbenchPage.access$12(WorkbenchPage.java:941) at org.eclipse.ui.internal.WorkbenchPage$12.run(WorkbenchPage.java:3340) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3338) at org.eclipse.ui.tests.api.IWorkbenchPageTest.testBug76285(IWorkbenchPageTest.java:2005) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:154) at junit.framework.TestCase.runBare(TestCase.java:127) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:118) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at junit.framework.TestSuite.runTest(TestSuite.java:208) at junit.framework.TestSuite.run(TestSuite.java:203) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:481) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:347) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:57) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:105) 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:3325) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2971) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.pde.internal.junit.runtime.UITestApplication.run(UITestApplication.java:45) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | 4f12eef | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-27T15:54:05Z | 2006-04-26T22:20:00Z |
138,404 | Bug 138404 [Problems] quick fix wizard opened with no options | null | verified fixed | da900e1 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/ActionResolveMarker.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-27T15:27:57Z | 2006-04-25T15:46:40Z |
138,824 | Bug 138824 [CommonNavigator] Remove obsolete API | null | verified fixed | b324196 | ["bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorSaveablesService.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/SaveablesSourceHelper.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorSaveablesProviderFactoryManager.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/INavigatorSaveablesService.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/ISaveablesSourceHelper.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/SaveablesProvider.java", "bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/SaveablesProviderFactory.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-27T14:26:03Z | 2006-04-27T03:53:20Z |
138,695 | Bug 138695 [Jobs] UI jobs with "serial" scheduling rule creates many threads | N20060426-0010 The debugger attempts to minimize thread creation by serializing jobs via scheduling rules, for jobs run within a viewer, etc. It seems that UI jobs with the scheduling rule cause many threads to be created, whereas non-UI jobs with the same rule do not. Example code will be attached - sample plug-in with a view and actions. * "Action 1" in the context menu of the "Sample view" schedules 400 UI jobs with the scheduling rule, and eventually creates 100's of threads * "Action 2" creates 400 non-ui jobs with the same/similar rule, but only ends up creating about 20 worker threads The "serial" rule looks like this: public class SerialPerObjectRule implements ISchedulingRule { private Object fObject = null; public SerialPerObjectRule(Object lock) { fObject = lock; } /* (non-Javadoc) * @see org.eclipse.core.runtime.jobs.ISchedulingRule#contains(org.eclipse.core.runtime.jobs.ISchedulingRule) */ public boolean contains(ISchedulingRule rule) { return rule == this; } /* (non-Javadoc) * @see org.eclipse.core.runtime.jobs.ISchedulingRule#isConflicting(org.eclipse.core.runtime.jobs.ISchedulingRule) */ public boolean isConflicting(ISchedulingRule rule) { if (rule instanceof SerialPerObjectRule) { SerialPerObjectRule vup = (SerialPerObjectRule) rule; return fObject == vup.fObject; } return false; } } | resolved fixed | 2994bab | ["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/concurrency/ConcurrencyTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/concurrency/TestBug138695.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-26T22:31:45Z | 2006-04-26T16:46:40Z |
97,565 | Bug 97565 [KeyBindings] preference page: AIOOBE trying to change key bindings | Steps to reproduce: 1) Go to General>Keys>Modify 2) Select Refactoring - Java for the category 3) Select "Move Member Type to New File" for the name 4) In the key sequence, select Tab 5) Type Ctrl + Shift + N 6) Change the name by selecting "Backspace" instead of Tab. 7) You should get the exception java.lang.ArrayIndexOutOfBoundsException at java.lang.System.arraycopy(Native Method) at org.eclipse.jface.bindings.keys.KeySequenceText.insertStrokeAt(KeySequenceText.java:754) at org.eclipse.jface.bindings.keys.KeySequenceText.insert(KeySequenceText.java:719) at org.eclipse.ui.internal.keys.KeysPreferencePage$8.widgetSelected(KeysPreferencePage.java:778) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2929) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2562) at org.eclipse.jface.window.Window.runEventLoop(Window.java:809) at org.eclipse.jface.window.Window.open(Window.java:787) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:66) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2929) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2562) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1694) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1658) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | verified fixed | d4aa612 | ["bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/keys/KeySequenceText.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-26T18:40:18Z | 2005-05-31T17:20:00Z |
138,400 | Bug 138400 [Workbench] Problem deleting a perspective descriptor created from restore state | I am running into an issue with perspectives within our product. The issue is that the perspectives are created "dynamically", meaning that an xml file is used to describe layout. The xml is parsed and associated with a perspective id, the perspectivefactory code then has a mthod call which builds the layout based on the xml. All fine and good. Works great. The issue is that whnever the xml file is changed, I need to be able to have the perspective rebuild itself to reflect the new layout in the xml. This always works as long as perspective states are not saved. However, we must support perspective states to be saved. So the issue is occuring in the use case where I start the client, the perspective is created, shown etc. Then I make a change to the xml file without changing the active perspective. The client is shut down, then restarts and reloads the new changed xml. However, instead of my perspective updating, it is the perspective that was saved in the perspective state. Calling reset perspective doesn't do anything. It is also important to note that the perspective is created using the new addContribution method. So the extension is created every time the client starts up since these "dynamic extensions" are currently not persisted. After debugging extensively, I noticed that it is using the custom definition which is saved in the workbench preferences. So my initial thought was to delete the custom definition and see what happens. I tried that, and what happens now is I get an error trying to open the perspective. The code path goes fine until it gets here: IPerspectiveFactory factory = null; try { factory = persp.createFactory(); } catch (CoreException e) { throw new WorkbenchException(NLS.bind(WorkbenchMessages.Perspective_unableToLoad, persp.getId() )); } createFactory is always returning null. I think this is because the perspective descriptor being used here is the perspective descriptor created from the custom definition, so the descriptor does not have the configElement reference. // otherwise try to create the executable extension if (configElement != null) try { return (IPerspectiveFactory) configElement .createExecutableExtension(IWorkbenchRegistryConstants.ATT_CLASS); } catch (CoreException e) { // do nothing } return null; The workaround I have found that works is if I change the isPreDefined method in the PerspectiveDescriptor class to the followng: public boolean isPredefined() { return (getClassName() != null && configElement != null); } I'm not sure if this is the proper way to handle this. When would a saved persepective have a config element when it is restored? It always has a class name because the class name is saved in the xml that gets written to the preferences file. | verified fixed | 78fbd41 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/registry/PerspectiveDescriptor.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-26T16:51:31Z | 2006-04-25T15:46:40Z |
132,550 | Bug 132550 [FastViews] BIDI:Fast Views become hidden when selected | Scenario: 1. Launch eclipse using -rtl attribute 2. Create a java file and java class and made some syntax error in purpose and save it. 3. Now select Window->Show view->problems Result: The problems view is displayed on the right side of workbench (on the navigator view). When trying to select some problem or to broaden the view width, the view is become hidden. Note: This bug occurs only in RTL orientation. | closed fixed | 7b92e63 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewPane.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-26T15:50:02Z | 2006-03-20T15:53:20Z |
138,645 | Bug 138645 QuickFix dialog has no wizard graphic or menu icon | 20060425 We need a wizard graphic and a menu icon for Quick fix | verified fixed | 7d6fbe8 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEInternalWorkbenchImages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchAdvisor.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/ActionResolveMarker.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerResolutionDialog.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-26T15:43:01Z | 2006-04-26T14:00:00Z |
138,378 | Bug 138378 [Trim] can't drag a trim bar at all | N20060425 - I am able to drag views around and re-order the main coolbar but unable to start a drag with any trim items. | verified fixed | 5e9597d | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/layout/TrimCommonUIHandle.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-26T14:35:01Z | 2006-04-25T15:46:40Z |
137,384 | Bug 137384 [Presentations] ClassCastException in org.eclipse.ui.internal.PartStack line 1305 | Our RCP application has a IPerspectiveFactory that creates 2 IFolderLayout's for other plugins to add views to. This was working in eclipse 3.1.0, when we tried to migrate to eclipse 3.2RC1 we received a ClassCastException on startup, even with a clean workspace. Eclipse 3.2RC1 org.eclipse.ui.internal.PartStack line 1305 The offending line of code looks like this: PartPane pane = (PartPane)part; The part variable is actually an instance of org.eclipse.ui.internal.ViewStack. That stack at this point: Thread [main] (Suspended (exception java.lang.ClassCastException)) org.eclipse.ui.internal.ViewStack(org.eclipse.ui.internal.PartStack).showPart(org.eclipse.ui.internal.LayoutPart, java.lang.Object, boolean) line: 1305 org.eclipse.ui.internal.ViewStack(org.eclipse.ui.internal.PartStack).createControl(org.eclipse.swt.widgets.Composite, org.eclipse.ui.presentations.StackPresentation) line: 603 org.eclipse.ui.internal.ViewStack(org.eclipse.ui.internal.PartStack).createControl(org.eclipse.swt.widgets.Composite) line: 531 org.eclipse.ui.internal.ViewSashContainer(org.eclipse.ui.internal.PartSashContainer).createControl(org.eclipse.swt.widgets.Composite) line: 562 org.eclipse.ui.internal.PerspectiveHelper.activate(org.eclipse.swt.widgets.Composite) line: 244 org.eclipse.ui.internal.Perspective.onActivate() line: 832 org.eclipse.ui.internal.WorkbenchPage.onActivate() line: 2378 org.eclipse.ui.internal.WorkbenchWindow$6.run() line: 2612 org.eclipse.swt.custom.BusyIndicator.showWhile(org.eclipse.swt.widgets.Display, java.lang.Runnable) line: 69 org.eclipse.ui.internal.WorkbenchWindow.setActivePage(org.eclipse.ui.IWorkbenchPage) line: 2593 org.eclipse.ui.internal.WorkbenchWindow.busyOpenPage(java.lang.String, org.eclipse.core.runtime.IAdaptable) line: 657 org.eclipse.ui.internal.Workbench.busyOpenWorkbenchWindow(java.lang.String, org.eclipse.core.runtime.IAdaptable) line: 795 org.eclipse.ui.internal.Workbench.doOpenFirstTimeWindow() line: 1437 | resolved fixed | 8d4070c | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PageLayout.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-25T15:42:04Z | 2006-04-18T22:40:00Z |
136,763 | Bug 136763 Performance improvements to BindingManager | Build id: I20060413-0010 One of our performance tests that still shows significant regression is opening editors. With profiling I found that 0.8% of that time is in Collections.unmodifiableMap(...) called by three methods in BindingManager. Another 0.15% is from instantiating new TrigerSequence[0] in three locations in BindingManager. In the first case, the creation of an immutable map is completely unnecessary - the methods are private, the maps are never exposed across API boundaries, and there is never any risk that the maps will be modified. The creation of empty TriggerSequence arrays can also be avoided with a singleton. I will attach a patch that collectively saves about 1% of the total editor startup time (elapsed time as measured by sampling profiler). These are very simple and safe fixes that I recommend considering for RC2. | verified fixed | 4c0ed9b | ["bundles/org.eclipse.jface/src/org/eclipse/jface/bindings/BindingManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-25T14:30:20Z | 2006-04-13T20:26:40Z |
138,253 | Bug 138253 [Trim] Extra space added by the Trim 'group' layout | Trim controls correctly designed to fit into the 'standard' status line height (22) don't fit because the Composite represetning the 'group' adds margin space. | verified fixed | 7e690d7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimBarManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-24T19:03:36Z | 2006-04-24T20:20:00Z |
131,105 | Bug 131105 [EFS] CopyFilesAndFoldersOperation does not handle null locations | Stumbled on this problem when copying/moving resources between local and remote filesystems. Copying or moving a file from a project on a remote filesystem to a project on a local filesystem results in a source does not exist error; vice-versa produces a destination does not exist; nonlocal to nonlocal produces a destination does not exist. Partial stacktrace: MoveFilesAndFoldersOperation(CopyFilesAndFoldersOperation).validateDestinationLocation(IContainer) line: 1428 MoveFilesAndFoldersOperation(CopyFilesAndFoldersOperation).validateDestination(IContainer, IResource[]) line: 1357 MoveFilesAndFoldersOperation.validateDestination(IContainer, IResource[]) line: 217 ResourceNavigatorMoveAction(CopyResourceAction).isValid(Object) line: 166 ... Remark that all destination validation in these UI classes use IResource.getLocation() which is only usable for resources on the local filesystem. Because of this, it is impossible to seamlessly integrate local and nonlocal resources. I am using org.eclipse.ui.ide_3.2.0.I20060216-1200.jar but according to public CVS nothing has yet changed in the use of getLocation(). | verified fixed | 8b63b30 | ["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-24T17:58:04Z | 2006-03-09T16:00:00Z |
137,527 | Bug 137527 [PresentationAPI] (regression) Implementors of StackPresentation now must implement save/restore state methods | In previous releases it was okay not to implement the save/restore state methods for subclasses of StackPresentation. In recent builds, unexpected errors occur when restoring a perpsective from a previous run. Without code that looks like the following, no views are ever added to the StackPresentation on a restore event. public void restoreState(IPresentationSerializer serializer, IMemento savedState) { IMemento[] parts = savedState.getChildren(IWorkbenchConstants.TAG_PART); for (int idx = 0; idx < parts.length; idx++) { String id = parts[idx].getString(IWorkbenchConstants.TAG_ID); if (id != null) { IPresentablePart part = serializer.getPart(id); if (part != null) { addPart(part, null); } } } } public void saveState(IPresentationSerializer context, IMemento { TabItem[] items = tabFolder.getItems(); ArrayList parts = new ArrayList(3); for (int i=0; i<items.length; i++) { parts.add(getPartForTab(items[i])); } Iterator iter = parts.iterator(); while (iter.hasNext()) { IPresentablePart next = (IPresentablePart) iter.next(); IMemento childMem = memento .createChild(IWorkbenchConstants.TAG_PART); childMem.putString(IWorkbenchConstants.TAG_ID, context.getId(next)); } } We are fine with this change in behavior, we will update our presentation, however we should probably update the Javadoc. | resolved fixed | cf82175 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartStack.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-24T15:02:15Z | 2006-04-19T15:20:00Z |
109,361 | Bug 109361 [Markers] Multiselection in problems view yields invalid status message | I20050906-1200 select multiple problems in the problems view -> the status message reads: "problem.statusSummarySelected" | verified fixed | d2418e9 | ["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/ProblemView.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-24T14:46:19Z | 2005-09-13T08:26:40Z |
137,977 | Bug 137977 Missing view toolbars | Build: N20060421-0010 I am getting missing view toolbars in this build. It occurs when I first switch to a view in a view stack that was previously hidden. I have seen it with the breakpoints view and the synchronize view so far. Will attach a screenshot. | resolved fixed | 30ef50a | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/ProxyControl.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-23T14:32:32Z | 2006-04-21T17:20:00Z |
136,981 | Bug 136981 [Trim] Failing trim gives multiple error dialogs | If a piece of contributed trim is failing during creation it will produce an error dialog during every subsequent call to 'fill'. Should 'wire off' bad trim once the failure has been detected once. | verified fixed | e6ed186 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/menus/TrimBarManager.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T20:06:11Z | 2006-04-17T13:20:00Z |
100,993 | Bug 100993 [EditorMgmt][Presentations] Regression: Editor tabs do not remember order or active tab after restarting Eclipse | Editor tab order is not restored after closing and reopening Eclipse. 1. Open a few editors such that all tabs are completely visible. 2. Drag tabs to put in a specific order. 3. Close and reopen Eclipse. 4. Note that tabs are not in the order they were in when you closed Eclipse. | resolved fixed | d3420d7 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/presentations/util/PresentablePartFolder.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T19:49:25Z | 2005-06-20T23:26:40Z |
137,767 | Bug 137767 [Progress] UISynchronizer must clear Interrupt Status of the UI thread | null | verified fixed | 56b2f58 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/UILockListener.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T19:02:51Z | 2006-04-20T16:20:00Z |
130,297 | Bug 130297 [Progress] dozens of "Scheduled refresh postponed due to conflicting operations" in Progress view | I20060301-0800 Eclipse suddenly got terribly slow, and tracing revealed that almost 100% of CPU time was burned in layouting the Progress view. Looking there, I found dozens of "Scheduled refresh postponed due to conflicting operations" jobs. I have scheduled a workspace sync every 1 hours. | verified fixed | 61a3852 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/FinishedJobs.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T16:03:37Z | 2006-03-03T10:00:00Z |
137,849 | Bug 137849 Unable to set comparator in StructuredViewer | null | verified fixed | 9b1458c | ["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T15:29:58Z | 2006-04-20T21:53:20Z |
137,341 | Bug 137341 [WorkbenchParts] WorkbenchPage.closeEditors calls IWorkbenchPart.getSaveables after disposing the part | This violates the contract on IWorkbenchPart.dispose, which states that it will be the last method called on the part. One observable effect is that WorkbenchPage leaks Saveable reference counts for any editor that cleans up its saveable references on disposal and is not capable of handling getSaveables() after dispose(). This means that the "save as" dialog is often omitted. Also, the Saveables are only closed after the CHANGE_EDITOR_CLOSE event is fired from the window... this violates the contract on the CHANGE_EDITOR_CLOSE event, which is supposed to be fired after the part has been completely closed (for example, a CHANGE_EDITOR_CLOSE listener that tried to close an additional editor on the same saveable would not get the correct reference counts. POSSIBLE FIX: I believe the fix is as follows (in WorkbenchPage.closeEditors(IEditorReference[], boolean)) // Fire pre-removal changes for (int i = 0; i < editorRefs.length; i++) { IEditorReference ref = editorRefs[i]; // Notify interested listeners before the close window.firePerspectiveChanged(this, getPerspective(), ref, CHANGE_EDITOR_CLOSE); } deferUpdates(true); try { // ADD THIS BLOCK if(modelManager!=null) { modelManager.postClose(postCloseInfo); } // END OF ADDITION // Close all editors. for (int i = 0; i < editorRefs.length; i++) { IEditorReference ref = editorRefs[i]; // Remove editor from the presentation editorPresentation.closeEditor(ref); partRemoved((WorkbenchPartReference)ref); } } finally { deferUpdates(false); } // Notify interested listeners after the close window.firePerspectiveChanged(this, getPerspective(), CHANGE_EDITOR_CLOSE); // REMOVE THIS BLOCK: //if(modelManager!=null) { //modelManager.postClose(postCloseInfo); //} // END OF REMOVAL | resolved fixed | 8546938 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchPage.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T15:27:06Z | 2006-04-18T19:53:20Z |
136,475 | Bug 136475 [Trim] Graphic is disposed error on shutdown | 20060412 I got the following exception on shutdown - I am not sure what caused it !ENTRY org.eclipse.ui.workbench 4 2 2006-04-12 16:54:17.359 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 org.eclipse.swt.SWTException: Graphic is disposed at org.eclipse.swt.SWT.error(SWT.java:3374) at org.eclipse.swt.SWT.error(SWT.java:3297) at org.eclipse.swt.SWT.error(SWT.java:3268) at org.eclipse.swt.graphics.Image.getBounds(Image.java:1105) at org.eclipse.swt.custom.CLabel.getTotalSize(CLabel.java:222) at org.eclipse.swt.custom.CLabel.computeSize(CLabel.java:154) at org.eclipse.jface.action.StatusLine$StatusLineLayout.computeSize(StatusLine.java:130) at org.eclipse.swt.widgets.Composite.computeSize(Composite.java:219) at org.eclipse.swt.widgets.Control.computeSize(Control.java:418) at org.eclipse.ui.internal.layout.TrimLayout.arrange(TrimLayout.java:552) at org.eclipse.ui.internal.layout.TrimLayout.layout(TrimLayout.java:475) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:989) at org.eclipse.swt.widgets.Composite.layout(Composite.java:531) at org.eclipse.swt.widgets.Composite.layout(Composite.java:496) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:43) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.PerspectiveBarManager.relayout(PerspectiveBarManager.java:183) at org.eclipse.jface.action.ToolBarManager.update(ToolBarManager.java:348) at org.eclipse.ui.internal.PerspectiveSwitcher.removePerspectiveShortcut(PerspectiveSwitcher.java:295) at org.eclipse.ui.internal.PerspectiveSwitcher.access$2(PerspectiveSwitcher.java:282) at org.eclipse.ui.internal.PerspectiveSwitcher$ChangeListener.perspectiveClosed(PerspectiveSwitcher.java:156) at org.eclipse.ui.internal.PerspectiveListenerList$6.run(PerspectiveListenerList.java:172) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:816) at org.eclipse.ui.internal.PerspectiveListenerList.fireEvent(PerspectiveListenerList.java:58) at org.eclipse.ui.internal.PerspectiveListenerList.firePerspectiveClosed(PerspectiveListenerList.java:170) at org.eclipse.ui.internal.WorkbenchWindow.firePerspectiveClosed(WorkbenchWindow.java:1281) at org.eclipse.ui.internal.WorkbenchPage.dispose(WorkbenchPage.java:1555) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages(WorkbenchWindow.java:745) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1482) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:621) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:597) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:710) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:708) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:712) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:709) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:639) at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:839) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:837) at org.eclipse.ui.internal.Workbench.close(Workbench.java:812) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:618) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:597) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:710) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:708) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:736) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:682) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:159) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:949) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:934) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:257) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1606) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3248) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4023) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1915) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:443) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4023) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1915) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:443) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4023) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1920) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2964) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) 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) !ENTRY org.eclipse.ui.workbench 4 2 2006-04-12 16:54:20.390 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 org.eclipse.swt.SWTException: Graphic is disposed at org.eclipse.swt.SWT.error(SWT.java:3374) at org.eclipse.swt.SWT.error(SWT.java:3297) at org.eclipse.swt.SWT.error(SWT.java:3268) at org.eclipse.swt.graphics.Image.getBounds(Image.java:1105) at org.eclipse.swt.custom.CLabel.getTotalSize(CLabel.java:222) at org.eclipse.swt.custom.CLabel.computeSize(CLabel.java:154) at org.eclipse.jface.action.StatusLine$StatusLineLayout.computeSize(StatusLine.java:130) at org.eclipse.swt.widgets.Composite.computeSize(Composite.java:219) at org.eclipse.swt.widgets.Control.computeSize(Control.java:418) at org.eclipse.ui.internal.layout.TrimLayout.arrange(TrimLayout.java:552) at org.eclipse.ui.internal.layout.TrimLayout.layout(TrimLayout.java:475) at org.eclipse.swt.widgets.Composite.updateLayout(Composite.java:989) at org.eclipse.swt.widgets.Composite.layout(Composite.java:531) at org.eclipse.swt.widgets.Composite.layout(Composite.java:496) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:43) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.layout.LayoutUtil.resize(LayoutUtil.java:47) at org.eclipse.ui.internal.PerspectiveBarManager.relayout(PerspectiveBarManager.java:183) at org.eclipse.jface.action.ToolBarManager.update(ToolBarManager.java:348) at org.eclipse.ui.internal.PerspectiveSwitcher.removePerspectiveShortcut(PerspectiveSwitcher.java:295) at org.eclipse.ui.internal.PerspectiveSwitcher.access$2(PerspectiveSwitcher.java:282) at org.eclipse.ui.internal.PerspectiveSwitcher$ChangeListener.perspectiveClosed(PerspectiveSwitcher.java:156) at org.eclipse.ui.internal.PerspectiveListenerList$6.run(PerspectiveListenerList.java:172) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:816) at org.eclipse.ui.internal.PerspectiveListenerList.fireEvent(PerspectiveListenerList.java:58) at org.eclipse.ui.internal.PerspectiveListenerList.firePerspectiveClosed(PerspectiveListenerList.java:170) at org.eclipse.ui.internal.WorkbenchWindow.firePerspectiveClosed(WorkbenchWindow.java:1281) at org.eclipse.ui.internal.WorkbenchPage.dispose(WorkbenchPage.java:1555) at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages(WorkbenchWindow.java:745) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1482) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:621) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:597) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:710) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:708) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:712) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:709) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:639) at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:839) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.Workbench.close(Workbench.java:837) at org.eclipse.ui.internal.Workbench.close(Workbench.java:812) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:618) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:597) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:710) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:708) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:736) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:682) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:159) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:949) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:934) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:257) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1606) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3248) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4023) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1915) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:443) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4023) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:1915) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:443) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1539) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4023) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1920) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2964) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1914) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1878) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) 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 | c0b0403 | ["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveSwitcher.java"] | Eclipse_Platform_UI | https://github.com/eclipse-platform/eclipse.platform.ui | eclipse-platform/eclipse.platform.ui | java | null | null | null | 2006-04-21T15:12:27Z | 2006-04-12T22:13:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.