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]
77,014
Bug 77014 [Commands] request: Provide close view command and binding
In Eclipse 3.0.1, the key sequence CTRL+F4 will close an editor view. However, the same key sequence will not close a non-editor view. I think that CTRL+F4 should close the active view; editor view or non-editor view.
verified fixed
8d2b387
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/handlers/ClosePartHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-09T12:22:06Z
2004-10-26T14:13:20Z
161,025
Bug 161025 [WorkbenchParts] SelectionListener possible bug
I have a problem which may be RCP bug or just my bug. My setup is this: I have a EditorPart with table as selection provider. Then I have I ViewPart which is registered to listen to selection events. The problem I'm having is that my View doesn't get selection change events if I open the view part after I open the editor part. So is this only my problem or it is a RCP bug? I found out that public void addSelectionListener(String partId, ISelectionListener listener); has a bug. When I use this method the ViewPart doesn't get the events when opened after the EditorPart for the first time. As I can see the EditorPart doesn't still have a PagePartSelectionTracker. The second time the ViewPart is opened it works fine.
verified fixed
6c2d008
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/ISelectionService.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-08T19:46:21Z
2006-10-16T09:13:20Z
156,410
Bug 156410 [Workbench] [RCP] SaveAllEditors ArrayIndexOutofBoundsException
When attempting to programmatically close my RCP application via WorkBench.close(), I get an ArrayIndexOutofBoundsException. The relevent stack is: java.lang.ArrayIndexOutOfBoundsException at org.eclipse.ui.internal.Workbench$13.run(Workbench.java:769) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.saveAllEditors(Workbench.java:735) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:655) 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:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:837) at org.eclipse.ui.internal.Workbench.close(Workbench.java:812) The reason seems to be that by the time close gets called, there are no available workbench windows but line 769 in the workbench class does not check for this state.
verified fixed
57dd60c
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/EditorManager.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/SaveableHelper.java", "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-11-08T15:13:29Z
2006-09-06T19:13:20Z
163,474
Bug 163474 [Undo/Redo] Wrong Tooltips for Undo and Redo actions
I'm using the Undo and Redo actions created with ActionFactory.UNDO.create() and ActionFactory.REDO.create() in a toolbar. If I hover over them the tooltip says "&Undo action" and "&Redo action". Looks like they use the title messages instead of the tooltip messages for tooltips. I found this code in OperationHistoryActionHandler.update(): String text = getCommandString(); String tooltipText; if (enabled) { tooltipText = NLS.bind(WorkbenchMessages.Operations_undoRedoCommand, text, getOperation().getLabel()); So the tooltipText variable is filled with the string returned by getCommandString(). This one is defined in UndoActionHandler and RedoActionHandler and just returns the message resource "WorkbenchMessages.Workbench_undo" and "WorkbenchMessages.Workbench_redo". But for the tooltip "WorkbenchMessages.Workbench_undoToolTip" and "WorkbenchMessages.Workbench_redoToolTip" must be used instead.
verified fixed
74a6725
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/OperationHistoryActionHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/RedoActionHandler.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/UndoActionHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-08T01:09:40Z
2006-11-05T12:33:20Z
163,683
Bug 163683 [FieldAssist] - Javadoc warnings in I20061107-0800
/builds/I/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java:397: warning - Tag @see: can't find setDecoration(FieldDecoration) in org.eclipse.jface.fieldassist.ControlDecoration
verified fixed
73286c0
["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-07T19:54:57Z
2006-11-07T17:20:00Z
163,589
Bug 163589 [Undo] Tooltips for Undo and Redo have shortcuts but should not
When we use the Eclipse Undo and Redo feature, we see shortcuts: (u) and (R) for Japanese in the tooltips but not in other languages. Shortcuts are not useful for tooltips. I will provide screen shots.
verified fixed
2d40205
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/OperationHistoryActionHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-07T19:41:04Z
2006-11-06T19:06:40Z
163,662
Bug 163662 [Progress] ProgressManagerUtil javadoc incorrect
From revision 1.40 of ProgressManagerUtil (build I20060829-0800) there is /** * The ProgressUtil is a class that contains static utility methods used for the * progress API. */ /** * @since 3.2 * */ /** * @since 3.2 * */ /** * @since 3.2 * */
verified fixed
e0c05e2
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-07T17:41:22Z
2006-11-07T14:33:20Z
163,245
Bug 163245 [Progress] make the progress viewer virtual
We should make the progress viewer virtual as it takes a lot of time to update when flooded with jobs
verified fixed
4913461
["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/ProgressInfoItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/VirtualInfoItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/VirtualProgressView.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/progress/VirtualProgressViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-06T16:23:35Z
2006-11-02T17:53:20Z
162,421
Bug 162421 [FastView] 3.3. presentation: view locked after minimize - show - restore
N20061026-0010, was OK in I20061024-1200 3.3. presentation: view locked after minimize - show - restore: - minimize view (e.g. Declarations view that shows some code) - click on view icon to show view as a fast view => view behaves normally (e.g. can select text in Declarations view) - click Restore button => view is restored, but does not react on mouse clicks any more Note: only view interaction is locked, but redraw works; e.g. Declarations view is updated when another element is selected
verified fixed
0d98e07
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewBar.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/Perspective.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PerspectiveHelper.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ViewStack.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-06T03:27:58Z
2006-10-26T16:26:40Z
163,461
Bug 163461 [Field Assist] - API - ControlDecoration should work with image+text, not FieldDecoration
DecoratedField supported multiple decoration locations, so it was useful to expose a data structure that referred to a particular decoration. Hence FieldDecoration was defined. It is just an image+text data structure, but was useful for asking DecoratedField to "do things" to a particular decoration, such as hiding it, showing it, updating it, etc. The initial API for ControlDecoration also supported FieldDecoration, in an attempt to "explain itself" as being similar to DecoratedField. However, since a ControlDecoration only shows one decoration, there's not really a need for the image+text to have any kind of identity. It would be better if the ControlDecoration API worked in terms of having an image and a description text. Clients could still use FieldDecorations and the registry if desired, but the API shouldn't require it, since it's trivial to pull the image and text out of a decoration and feed it to ControlDecoration.
verified fixed
5d978da
["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/ControlDecorationTestDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-04T22:58:07Z
2006-11-04T22:40:00Z
162,655
Bug 162655 [Undo] [IDE] - Undoing a delete should check for existence of resources to be restored
N20061027. - I deleted two projects (along with their content). I read the warning that undo delete cannot restore the content and said "OK." - Then I checked out those same projects from HEAD. - Then I selected "Undo Delete Resources." This overwrote my code with empty projects. I think that "Undo Delete Resources" should become invalid if the resources exist again, because you'll end up replacing content without keeping a backup.
verified fixed
15b7ac7
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractCreateResourcesOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractResourcesOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/CopyResourcesOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/DeleteResourcesOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/UndoMessages.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/operations/WorkspaceOperationsTests.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-03T23:15:54Z
2006-10-27T23:00:00Z
163,096
Bug 163096 [Undo] WorkspaceUndoUtil#delete should not attempt to open project
Build: I20061030-0656 1) Create a new simple project 2) Shutdown Eclipse 3) Delete the project's directory on disk 4) Restart Eclipse 5) Try to delete the project from the Navigator view. -> The project cannot be deleted, because the deletion will attempt to reopen the project. The project cannot be opened because its project description is missing. Deletion should not attempt to reopen a closed project.
verified fixed
53f08cc
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/WorkspaceUndoUtil.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/ProjectDescription.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-03T23:08:13Z
2006-11-01T16:53:20Z
143,535
Bug 143535 [Field Assist] - example needs to vary placement of decorations
null
verified fixed
9e92db9
["examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/ControlDecorationTestDialog.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/DecoratedFieldTestDialog.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/ExampleDialog.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/ExampleDialog2.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/FieldAssistTestDialog.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/TaskAssistExampleMessages.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/actions/ShowDialogAction.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/actions/ShowDialogAction2.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/actions/TestDialogAction.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/preferences/FieldAssistPreferencePage.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/preferences/PreferenceConstants.java", "examples/org.eclipse.ui.examples.fieldassist/Eclipse", "UI", "Examples", "Field", "Assist/org/eclipse/ui/examples/fieldassist/preferences/PreferenceInitializer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-03T22:48:14Z
2006-05-24T17:00:00Z
163,360
Bug 163360 [Field Assist] - API - Provide ControlDecoration constructor without specifying decoration
Currently you can only create a ControlDecoration by specifying the control and the decoration in the constructor. This works nicely when the decoration is static (ie, always content assist). But there are use cases where the decoration changes depending on the state of the field, and at creation time, it's not clear which decoration will be set. Having a constructor that doesn't require a decoration would be nice.
verified fixed
d3ac1ed
["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-03T22:43:09Z
2006-11-03T18:53:20Z
148,357
Bug 148357 [Field Assist] - API - provide access for closing the proposal popup
I think that the field assist API needs more hooks to be customizable. For example : 1) There is no way to manually close/open the popup. Most of the times, this is the easier thing for a user to ask to implement his custom behaviour. 2) There is no way to intercept keystrokes/events directed to the field. 3) There is no way to control focus.
verified fixed
3c8429a
["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-11-03T22:32:22Z
2006-06-23T08:06:40Z
137,879
Bug 137879 Unable to specify resources in zip filesystem
How to repeat the problem: 1. Check out and compile the org.eclipse.ui.filesystem.examples plug-in. 2. Start runtime workspace. The following operations are in the runtime workspace. 3. Create a new project, e.g. TestZipFilesystem 4. Create a new file, in the wizard page, check "Link file to file system" and choose the file system as "Zip file". 5. Click on Browse... button and browse to a zip file in the local file system , choose OK. 6. Now, the file name field becomes "GettingStarted.zip", and the link to file system filed becomes "zip:/d:/Downloads/GettingStarted.zip". 7. On windows platform, an error message appeared ": is an invalid character in resource name zip:.". And the Finish button is grayed out. On linux platform, a warning message appear and say that the resource is not available in the workspace. The finish button works, though. =========== 8. In both cases, there is no way to choose a file in the zip as the linked resource. In other words, the UI does not treat the zip as a file system. The memory file system has similar problem, i.e. there is no real UI support for these file systems.
verified fixed
f21a158
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/NewFolderDialog.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-11-03T22:07:02Z
2006-04-21T06:13:20Z
162,915
Bug 162915 [Undo] Cause of error not reported on undo
Build: I20061031-0656 1) In the Navigator, delete a file 2) In the file system, recreate that file 3) Back in the Navigator, try to undo the deletion. -> Error occurs as expected, but the cause of the exception isn't surfaced in the dialog. I see Error while undoing the "Delete Resources" operation. Reason: Error while undoing the "Delete Resources" operation. Details: Error while undoing the "Delete Resources" operation. The duplication of the "reason" is caused by passing the exception message along with the exception to ErrorDialog.openError. If you don't have a different message, just pass null as the message and ErrorDialog won't show the reason section. However, the underlying problem is that the CoreException behind the failure isn't shown at all. In the log file I see: Caused by: org.eclipse.core.runtime.CoreException: A resource already exists on disk 'C:\eclipse\test3\aa\a\a.txt'. This is the message that should be appearing in either the reason or details section.
verified fixed
4791393
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/operations/OperationHistoryActionHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-31T20:43:00Z
2006-10-31T15:53:20Z
162,916
Bug 162916 [Undo] [IDE] Invalid thread access from new file wizard
Build: I20061031-0656 1) Create a simple project 2) In the file system, add file "a.txt" to the project 3) Back in Eclipse, do File > New > File, select the project and enter a name of "a.txt". An internal error occurs because it is trying to open an error dialog from a modal context thread: org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:3407) at org.eclipse.swt.SWT.error(SWT.java:3330) at org.eclipse.swt.SWT.error(SWT.java:3301) at org.eclipse.swt.widgets.Widget.error(Widget.java:432) at org.eclipse.swt.widgets.Shell.<init>(Shell.java:271) at org.eclipse.swt.widgets.Shell.<init>(Shell.java:357) at org.eclipse.jface.window.Window.createShell(Window.java:482) at org.eclipse.jface.window.Window.create(Window.java:425) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:1111) at org.eclipse.jface.window.Window.open(Window.java:785) at org.eclipse.jface.dialogs.ErrorDialog.open(ErrorDialog.java:296) at org.eclipse.jface.dialogs.ErrorDialog.openError(ErrorDialog.java:360) at org.eclipse.jface.dialogs.ErrorDialog.openError(ErrorDialog.java:325) at org.eclipse.ui.dialogs.WizardNewFileCreationPage$4.run(WizardNewFileCreationPage.java:343) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113)
verified fixed
6acf364
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-31T20:33:11Z
2006-10-31T15:53:20Z
162,668
Bug 162668 [FieldAssist] Javadoc warnings in N20061028-0010
/builds/N200610280010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java:691: warning - @param argument "decoration" is not a parameter name.
verified fixed
ff6fc9b
["bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-30T17:25:32Z
2006-10-28T12:53:20Z
161,805
Bug 161805 [Viewers] JFace TreeViewer collapses node when sibbling removed
3.2 1. Use the Eclipse Wizard to produce a plugin with a tree viewer view. 2. Paste the modified SampleView.java - this looks like the left part of the attached screenshot 3. Click on the top node Parent1 and type - 4. TreeViewer.remove is called to remove Parent 1. TreeViewer.refresh is called - this looks like the right part of the attached screenshot Wrong: node Parent 4 is now collapsed. Expectation Parent 4 is still expanded. Is there any workaround? Am I misusing your API? Note. The snippet is almost identical to the code generated by PDE for plugin / view / Tree Viewer. Here is the extra code in createPartControl: viewer.getTree().addKeyListener(new KeyListener() { public void keyReleased(KeyEvent e) { // TODO Auto-generated method stub } public void keyPressed(KeyEvent e) { if (e.character == '-') { TreeParent parent = (TreeParent) ((IStructuredSelection)viewer.getSelection()).toArray()[0]; parent.getParent().removeChild(parent); viewer.refresh(); } if (e.character == '+') { TreeParent parent = (TreeParent) ((IStructuredSelection)viewer.getSelection()).toArray()[0]; parent.addChild(new TreeParent(new Date().toString())); } } });
verified fixed
971c0f5
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-30T16:20:54Z
2006-10-20T21:33:20Z
162,443
Bug 162443 [Undo] DeleteResourcesOperation halts Bug99858Test on linux
I guess with the change to DeleteResourceAction to call the operation this now pops up a dialog and blocks the automated testing. PW
verified fixed
0b64de2
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/internal/Bug99858Test.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-26T18:24:48Z
2006-10-26T16:26:40Z
161,303
Bug 161303 [Commands] handlers: StackOverflowError in ActionHandler framework
java.lang.StackOverflowError at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByNameFromAction(ActionHandler.java:226) at org.eclipse.ui.commands.ActionHandler.getAttributeValuesByName(ActionHandler.java:208) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.isHandled(LegacyHandlerWrapper.java:130) at org.eclipse.core.commands.Command.isEnabled(Command.java:806) at org.eclipse.ui.internal.handlers.CommandLegacyActionWrapper.isEnabled(CommandLegacyActionWrapper.java:289) at org.eclipse.ui.commands.ActionHandler.getAttributeVa
verified fixed
ff49912
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/SubActionBars.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/KeyBindingService.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-26T17:48:57Z
2006-10-17T21:20:00Z
160,918
Bug 160918 [KeyBindings] Nullpointer exception in Win > Pref > General > Keys
If I define a new category of extension org.eclipse.ui.commands and dont put any commands in that category I get the following null pointer exception. Steps: 1. Launch IDE in Japanese OS (reproed on both Win32 and MacOSX) 2. Click on "Window" -> "Preferences" 3. In Preferences dailog, click on "Gerneral" -> "Keys" Actual: A pop-up warning saying Error occurs. Please check the error log for more details. If you look up the log file, you have an exception shown bottow Expected: No error. Note: Repro in Japanese-OS only. !ENTRY org.eclipse.jface 4 2 2006-10-07 06:20:35.393 !MESSAGE &#32349;&#21169;&#923;&#32359;&#65392;&#32359;&#65380;&#32349;&#65395; "org.eclipse.jface" &#32314;&#20061;&#65353;&#32314;&#65390;&#32359;&#65395;&#32349;&#65404;&#32349;&#23784;?&#65390;&#35149;&#65399;&#34573;&#36628;&#12306;&#34656;&#22478;&#65377; &#24460;&#8242;&#36875;&#65402;&#36885;&#28312;&#65312;&#32314;&#65406;&#32314;&#21169;&#9670;&#32306;? !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.keys.KeysPreferencePage.updateComboCommand(KeysPreferencePage.java:1933) at org.eclipse.ui.internal.keys.KeysPreferencePage.update(KeysPreferencePage.java:1900) at org.eclipse.ui.internal.keys.KeysPreferencePage.setVisible(KeysPreferencePage.java:1868) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java:1225) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage(FilteredPreferenceDialog.java:439) at org.eclipse.jface.preference.PreferenceDialog$8.selectionChanged(PreferenceDialog.java:661) at org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:839) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java:837) at org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1143) at org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1163) at org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:236) at org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:230) at org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:404) 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.jface.window.Window.runEventLoop(Window.java:820) at org.eclipse.jface.window.Window.open(Window.java:796) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:65) at org.eclipse.jface.action.Action.runWithEvent(Action.java:499) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:539) 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:928) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968) 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:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336) at org.eclipse.core.launcher.Main.basicRun(Main.java:280) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952)
verified fixed
030388c
["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-10-26T16:57:58Z
2006-10-13T20:06:40Z
162,425
Bug 162425 Javadoc warnings in N20061026-0010
/builds/N200610260010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java:36: warning - Tag @link: Class or Package not found: org.eclipse.swt.Composite /builds/N200610260010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java:36: warning - Tag @link: Class or Package not found: org.eclipse.swt.Composite /builds/N200610260010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java:36: warning - Tag @link: Class or Package not found: org.eclipse.swt.Composite /builds/N200610260010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java:36: warning - Tag @link: Class or Package not found: org.eclipse.swt.Composite
verified fixed
952d286
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-26T16:56:35Z
2006-10-26T16:26:40Z
162,216
Bug 162216 [JFace] org.eclipse.jface.snippets doesn't work on linux
I picked up platform-ui and platform-ui-test today from HEAD and got org.eclipse.jface.snippets ... which won't compile with an error. Severity and Description Path Resource Location Creation Time Id The project was not built since the source file /org.eclipse.jface.snippets/Eclipse JFace Snippets/org/eclipse/jface/snippets/viewers/Snippet010OwnerDraw.java could not be read org.eclipse.jface.snippets Unknown 1161784128418 7238 I looks like it was checked into HEAD using some strange encoding, and eclipse won't open it using eclipse-linux standard UTF-8 PW
verified fixed
a0d255b
["examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/Snippet010OwnerDraw.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-25T18:30:34Z
2006-10-25T15:26:40Z
161,902
Bug 161902 [JFace] Enhancements to GridLayoutFactory.margins
This enhancement requests the following: 1. Rename the new GridLayoutFactory.margins(int,int,int,int) to GridLayoutFactory.extendedMargins(int,int,int,int) 2. Add a GridLayoutFactory.extendedMargins(Rectangle) method that accepts a difference rectangle. 3. Add static methods to Geometry in order to easily construct difference rectangles. Why? 1. We should not use overloaded methods in GridLayoutFactory unless they really do set the same thing. Since the four-argument margins(...) method and the two-argument margins(...) method set independent values, we should give them different names or clients will expect a call to margins(int, int, int, int) to overwrite a previous call to margins(int, int). 2. All methods on GridLayoutFactory and GridDataFactory should have vector initializers, so that clients can store and reuse standard margin settings in a single variable. 3. Vector initializers are only a convenience if there is a convenient way to construct the vector.
verified fixed
2251d37
["bundles/org.eclipse.jface/src/org/eclipse/jface/layout/GridLayoutFactory.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/util/Geometry.java", "examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/layout/Snippet013GridLayoutFactory.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/layout/AllTests.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/layout/GeometryTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-25T15:20:16Z
2006-10-23T05:06:40Z
161,000
Bug 161000 [Metadata] org.eclipse.ui.workbench MANIFEST.MF is polluted
The MANIFEST.MF for org.eclipse.ui.workbench declares 'org.eclipse.ui.testing' as an x-friend of the org.eclipse.ui.internal package. The MANIFEST.MF of an SDK plug-in must not be polluted with references to test plug-ins. 'org.eclipse.ui.testing' must be removed from the x-friends list.
resolved fixed
c363d7d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PartSite.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/testing/WorkbenchPartTestable.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/ApiTestSuite.java", "tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/IWorkbenchPartTestableTests.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-25T14:52:06Z
2006-10-16T06:26:40Z
162,095
Bug 162095 [Workbench] Add default icons to Quick Access
Add default icons to Quick Access for nodes and elements. Aaron
verified fixed
041ca8a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IWorkbenchGraphicConstants.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchImages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-24T18:21:40Z
2006-10-24T14:26:40Z
161,401
Bug 161401 [Viewers] Tweak ColumnViewer-API
- Rename getRowPart(Point point) => getViewerRow() - Rename getCell(Point point) => getViewerCell() - Rename setViewerColumn(final int columnIndex, ViewerColumn viewer) => setupEditingSupport - Make setupEditingSupport() private no one from external needs to use this API to set the EditingSupport for an ViewerColumn
verified fixed
b98c19a
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/EditingSupport.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ToolTipSupport.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerColumn.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-24T13:50:37Z
2006-10-18T14:00:00Z
156,883
Bug 156883 [Viewers] enhancements to ILazyTreeContentProvider
null
verified fixed
859901e
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ILazyTreePathContentProvider.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-10-24T02:40:27Z
2006-09-11T15:53:20Z
161,983
Bug 161983 Add functionality to Quick Access to remember selection for entered text value
Add functionality to Quick Access associating a selection to the entered string. If the string is entered in the text field, focus is moved to the previously chosen element. Aaron
resolved fixed
76fc49d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-23T20:55:37Z
2006-10-23T16:13:20Z
161,897
Bug 161897 [Undo] Javadoc warnings in N20061022-0010
/builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java:396: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.CopyFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation /builds/N200610220010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java:71: warning - Tag @link: can't find performCopy(IResource[], IPath, IProgressMonitor) in org.eclipse.ui.actions.MoveFilesAndFoldersOperation
verified fixed
654f007
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/MoveFilesAndFoldersOperation.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-23T17:43:38Z
2006-10-23T02:20:00Z
161,894
Bug 161894 [Undo] Warning in N20061022-0010
1. WARNING in /Eclipse UI Tests/org/eclipse/ui/tests/operations/WorkspaceOperationsTests.java (at line 1024) ProjectSnapshot snap = new ProjectSnapshot(testProject); The local variable snap is never read
verified fixed
112a74a
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/operations/WorkspaceOperationsTests.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-23T17:19:54Z
2006-10-23T02:20:00Z
161,254
Bug 161254 [IDE][WorkbenchLauncher] workspace MRU should be shown in the menu
3.3M2 I've been using the Switch Workspaces option a LOT lately and I've been finding it quite frustrating. I usually only switch between two workspaces and to do this requires a trip to the File menu, then navigating a combo in a dialog, and finally hitting OK. It'd be nice if the MRU list contained in dialog combo was also shown as children of the Switch Workspaces menu item. I have a patch that accomplishes this if you're interested.
verified fixed
5af4b1c
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/actions/OpenWorkspaceAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-23T13:37:02Z
2006-10-17T15:46:40Z
161,828
Bug 161828 [Undo] - second undo on folder move/copy merge restores old snapshot
Project A folder file1 file2 file3 file4 subfolder file1 file2 file3 file4 Move the "folder" to this existing project: Project B folder file1 file2 file3 file4 file5 file6 subfolder file1 file2 file3 file4 The move operation correctly replaces the content of file1, file2, file3, file4 in the ProjectB folder and the content of file1, file2, file3, file4 in the subfolder. Undo the move. The files return to their original location in ProjectA, and the content of the files in ProjectB have reverted to their content before the move. Redo the move. Everything still fine. Undo the move. Now the files have returned to their original location in ProjectA, but the content of the files in ProjectB still have the content from the ProjectA files.
verified fixed
d6b164f
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/WorkspaceUndoUtil.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/ContainerDescription.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/FileDescription.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/ResourceDescription.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-22T06:03:07Z
2006-10-21T08:40:00Z
161,433
Bug 161433 Quick access in dialogs broken
Build: I20061017 1) Open a dialog 2) Invoke Quick Access (Ctrl+e) -> The quick access shell is parted off the workbench window rather than the active shell (the dialog). Therefore, it does not obtain focus and cannot be used.
resolved fixed
5756660
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-20T21:01:18Z
2006-10-18T16:46:40Z
161,786
Bug 161786 [Undo] - operations with multiple, matching contexts not disposed properly
Found this problem running the workspace operations automated tests. In that suite, a marker operation that changes a bookmark and a task is performed. The operation is therefore assigned two undo contexts "bookmark" and "task". These two undo contexts are set up to "match" against the workspace context. This is done so that only task ops show up in the task list undo history, only bookmark ops show up in the bookmark view undo history, but all of the marker ops show up in the workspace undo history. The problem occurs when I attempt to dispose the workspace context. In theory, this marker operation should be disposed, since both contexts match the workspace context. In practice it doesn't happen and I get this operation "stuck" in the undo history.
verified fixed
8efe97e
["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/DefaultOperationHistory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-20T20:46:33Z
2006-10-20T18:46:40Z
161,738
Bug 161738 [Undo] - API - promote ability to quietly compute status to operations API
null
verified fixed
914b2ba
["bundles/org.eclipse.core.commands/src/org/eclipse/core/commands/operations/IAdvancedUndoableOperation2.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/AbstractWorkspaceOperation.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/WorkspaceUndoMonitor.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-20T18:56:59Z
2006-10-20T16:00:00Z
161,616
Bug 161616 [Undo] - AdvancedValidationUserApprover should allow suppression of prompts during testing
AdvancedValidationUserApprover is installed by the workbench to validate undo/redo operations and report problems to the user. We need automated tests that check for invalid conditions found by the approver, but we do not want any user prompting to occur. So we need a flag akin to ErrorDialog.AUTOMATED_MODE that suppresses UI when we are doing automated testing.
verified fixed
eff901e
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/operations/AdvancedValidationUserApprover.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-20T00:09:25Z
2006-10-19T17:46:40Z
161,464
Bug 161464 Workspace.run reports null task name in beginTask
3.2 Noticed that Workspace.run uses beginTask(null, ...), which is contrary to the spec of IProgressMonitor. Saw this while tracking down an NPE in org.eclipse.jface.action.StatusLine.subTask due to a null subtask name. Recommend checking all senders of beginTask, setTaskName and subTask in core. Might want to change StatusLine to accept nulls for these as well (it already does for some).
resolved fixed
2f3030e
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/model/WorkingSetResourceMapping.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-18T20:59:13Z
2006-10-18T19:33:20Z
161,114
Bug 161114 [Presentations] Close all perspectives leaves empty editor area behind
[I20061010-0800] Closed all perspectives. Will attach screenshot.
verified fixed
af289dc
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/ShowFastViewContribution.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-17T22:25:59Z
2006-10-16T20:20:00Z
161,263
Bug 161263 Broken fast view bars
Build: I20061017-0800 1) Maximized a view 2) Double-clicked the view tab to restore it. -> Now I'm in a state where all other parts remain as fast views and I have just the restored view and the editor area available. The fast view bars cannot be restored (restore button does nothing). There is no context menu on the FVB so I cannot restore or close individual views. The only way to get views back into the workbench window is to expand the fast view, close the view, reopen the view, and hope it doesn't reappear in the broken fast view stack.
verified fixed
5e259d5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewBar.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-17T18:28:38Z
2006-10-17T15:46:40Z
156,676
Bug 156676 QuickAccess popup should include dirty indicator
I20060906-1200 The QuickAccess popup (Ctrl+E) should include a dirty indicator (*) like the 'Window > Navigation > Quick Switch Editor' action does.
resolved fixed
d252125
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/FilteringInfoPopup.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-17T15:27:12Z
2006-09-08T10:06:40Z
161,037
Bug 161037 Compile warnings in N20061014-0010/compilelogs/platform.doc.isv.javadoc.txt
/builds/N200610140010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java:1346: warning - @return tag has no arguments. /builds/N200610140010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java:1339: warning - @return tag has no arguments.
verified fixed
e90511b
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T20:24:52Z
2006-10-16T12:00:00Z
159,918
Bug 159918 [Viewers] TreeViewer.setChildCount(...) should preserve selection
Since changing the child count of an element in a tree can effectively remove children, the #setChildCount(...) method should preserve selection. This way if a selected item is disposed, the selection change will fire with the new <empty selection>.
verified fixed
583e71a
["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-10-16T18:31:24Z
2006-10-05T17:40:00Z
158,778
Bug 158778 [Viewers] request for remove(parent, index) API on tree viewer
3.3 It would be helpful to have a 'remove(Object parent, int index)' method on the tree viewer to complement that 'replace(...)' and 'setChildCount(...)' APIs. The debug platform requires such a method to implement filtering in virtual tree views. Rather than performing a 'replace/remove' based on elements, the content provider can make one atomic call to remove an element at a specific index.
verified fixed
c72717a
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/SimpleVirtualLazyTreeViewerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T18:24:34Z
2006-09-26T14:13:20Z
156,678
Bug 156678 QuickAccess items are unordered
I20060906-1200 Most items in the QuickAccess popup (Ctrl+E) are in no apparent order. Editors, Views, Perspectives, and New should be sorted alphabetically (like Commands already is). Menus and Preferences would probably be easier to understand if they were arranged hierarchically as they appear in the workbench window or the preferences dialog (e.g. there are 4 nodes under Preferences that start with "Editor").
resolved fixed
d198555
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/IncubatorMessages.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T16:50:03Z
2006-09-08T10:06:40Z
159,600
Bug 159600 [Viewers] Tooltips not working on TreeViewer
TooltipSupport does not map receiver-relative coordinates to display-relative coordinates => TreeViewer#getItem(int x, int y) returns wrong item.
verified fixed
1eab90f
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ToolTipSupport.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T16:40:50Z
2006-10-03T15:40:00Z
159,597
Bug 159597 [Viewers] getRowPart(Point) behaves differently on Table than on Tree
getRowPart(Point) is reacting different between on TableViewer and TreeViewer: TableViewer: ------------ protected Item getItem(int x, int y) { return table.getItem(new Point(x, y)); } TreeViewer: ----------- protected Item getItem(int x, int y) { return getTree().getItem(getTree().toControl(new Point(x, y))); }
verified fixed
4adbdc8
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T16:38:21Z
2006-10-03T15:40:00Z
161,086
Bug 161086 [Viewers] performance problem in AbstractTreeViewer.internalExpandToLevel
If you expand to ALL_LEVELS, internalExpandToLevel will call createChildren even if the element has no children, i.e. it does not check if the element is expandable. Found this while experimenting with the Quick Access feature (enter "con", then delete all three characters one at a time).
verified fixed
9b73a19
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractTreeViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T16:15:08Z
2006-10-16T14:46:40Z
157,646
Bug 157646 [Import/Export] "Import Existing Project" from zip locks file - prevents deletion
Build: M20060629-1905 Even though I cancel the Import Existing Project wizard without completing it, the zip file selected becomes (and remains) locked and cannot be deleted until the workbench is closed. Steps: File > Import > Existing Projects Into Workspace Select a zip file that does not contain any projects Cancel the wizard, but leave the workbench running Attempt to delete the zipfile Result: On Windows XP, this will result in system error stating: "Cannot delete <filename>: It is being used by another person or program." This problem will continue until the workbench is closed.
resolved fixed
e415216
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/WizardProjectsImportPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ExternalProjectImportWizard.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-16T15:56:49Z
2006-09-18T14:33:20Z
160,543
Bug 160543 [FastViews] View Menu button needs accessible name
null
verified fixed
9bfe7e7
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/FastViewBar.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-13T15:03:43Z
2006-10-11T20:53:20Z
160,746
Bug 160746 [Workbench] Dangerous use of getActiveShell in the workbench
null
verified fixed
aee6d98
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/ActivityCategoryPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/activities/WorkbenchTriggerPointAdvisor.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/IntroAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/PluginAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/ContentTypesPreferencePage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/keys/WorkbenchKeyboard.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/util/Util.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-13T14:45:50Z
2006-10-12T19:06:40Z
111,887
Bug 111887 [EFS] Provide IFileStoreEditorInput (+ impl) for new IFileStore
null
verified fixed
be19b74
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/FileStoreEditorInput.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDE.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/IURIEditorInput.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-13T14:27:54Z
2005-10-07T13:00:00Z
160,153
Bug 160153 [Viewers] tableViewer.setUseHashlookup causes wrong selections
I've got a table viewer with a virtual table. In the snippet below in removeSelected() I remove an item from my model, then I refresh the view and set the selected item with tableViewer.setSelection(new StructuredSelection(input.get(nextSelectedIndex)), true); If I use tableViewer.setUseHashlookup(true) and I delete the item before the last one, the setSelection above doesn't work and the selection is lost (I can't select the last one item). No problems deleting the other items. If I use tableViewer.setUseHashlookup(false) all works (with 'false' I have another case where setSelection doesn't work, but I can't produce a short code sample to post). package net.quarella.views; import java.util.ArrayList; import org.eclipse.jface.action.Action; import org.eclipse.jface.action.IMenuListener; import org.eclipse.jface.action.IMenuManager; import org.eclipse.jface.action.IToolBarManager; import org.eclipse.jface.action.MenuManager; import org.eclipse.jface.action.Separator; import org.eclipse.jface.viewers.DoubleClickEvent; import org.eclipse.jface.viewers.IDoubleClickListener; import org.eclipse.jface.viewers.ILazyContentProvider; import org.eclipse.jface.viewers.ITableLabelProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.jface.viewers.TableViewer; import org.eclipse.jface.viewers.Viewer; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Menu; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.eclipse.ui.IActionBars; import org.eclipse.ui.IWorkbenchActionConstants; import org.eclipse.ui.actions.ActionFactory; import org.eclipse.ui.part.ViewPart; public abstract class TestTableView extends ViewPart { public final String ID; private TableViewer tableViewer; private Label statusLabel; private Action deleteAction; private Action addAction; private Action editAction; private Action refreshAction; private ArrayList<String> input=new ArrayList<String>(); class ViewContentProvider implements ILazyContentProvider { public void inputChanged(Viewer v, Object oldInput, Object newInput) { } public void dispose() { } public void updateElement(int index) { tableViewer.replace(input.get(index), index); } } class ViewLabelProvider extends LabelProvider implements ITableLabelProvider { public String getColumnText(Object element, int columnIndex) { return element.toString(); } public Image getColumnImage(Object element, int columnIndex) { return null; } } public TestTableView(String id) { ID = id; } public void createPartControl(Composite parent) { GridLayout layout = new GridLayout(); layout.numColumns = 1; layout.marginWidth = 0; layout.marginHeight = 0; layout.verticalSpacing = 2; parent.setLayout(layout); tableViewer = new TableViewer(parent, SWT.MULTI | SWT.FULL_SELECTION | SWT.H_SCROLL | SWT.V_SCROLL | SWT.VIRTUAL | SWT.BORDER); tableViewer.setContentProvider(new ViewContentProvider()); tableViewer.setLabelProvider(new ViewLabelProvider()); //TODO se true problemi di selezione nella cancellazione //se false nel cambio ordinamento tableViewer.setUseHashlookup(true); setColumns(); tableViewer.getTable().setLinesVisible(true); int i; for(i=0; i<7; i++) input.add(new String("Item " + i)); tableViewer.setInput(input); tableViewer.setItemCount(i); GridData layoutData = new GridData(); layoutData.grabExcessHorizontalSpace = true; layoutData.grabExcessVerticalSpace = true; layoutData.horizontalAlignment = GridData.FILL; layoutData.verticalAlignment = GridData.FILL; tableViewer.getTable().setLayoutData(layoutData); statusLabel = new Label(parent, SWT.NONE); layoutData = new GridData(); layoutData.grabExcessHorizontalSpace = true; layoutData.horizontalAlignment = GridData.FILL; layoutData.horizontalIndent = 6; statusLabel.setLayoutData(layoutData); makeActions(); hookContextMenu(); hookDoubleClickAction(); contributeToActionBars(); } private void hookContextMenu() { MenuManager menuMgr = new MenuManager("#PopupMenu"); menuMgr.setRemoveAllWhenShown(true); menuMgr.addMenuListener(new IMenuListener() { public void menuAboutToShow(IMenuManager manager) { TestTableView.this.fillContextMenu(manager); } }); Menu menu = menuMgr.createContextMenu(tableViewer.getControl()); tableViewer.getControl().setMenu(menu); getSite().registerContextMenu(menuMgr, tableViewer); } private void contributeToActionBars() { IActionBars bars = getViewSite().getActionBars(); fillLocalPullDown(bars.getMenuManager()); fillLocalToolBar(bars.getToolBarManager()); } private void fillLocalPullDown(IMenuManager manager) { manager.add(addAction); manager.add(deleteAction); manager.add(refreshAction); manager.add(new Separator()); } private void fillContextMenu(IMenuManager manager) { manager.add(addAction); manager.add(deleteAction); manager.add(refreshAction); // Other plug-ins can contribute there actions here manager.add(new Separator(IWorkbenchActionConstants.MB_ADDITIONS)); } private void fillLocalToolBar(IToolBarManager manager) { manager.add(addAction); manager.add(deleteAction); manager.add(refreshAction); } private void makeActions() { addAction = new Action() { public void run() { } }; addAction.setText("New"); addAction.setToolTipText("New"); addAction.setImageDescriptor(Activator.getImageDescriptor("icons/elcl16/add.gif")); addAction.setDisabledImageDescriptor(Activator.getImageDescriptor("icons/dlcl16/add.gif")); deleteAction = new Action() { public void run() { removeSelected(); } }; deleteAction.setText("Delete"); deleteAction.setToolTipText("Delete selected items"); deleteAction.setImageDescriptor(Activator.getImageDescriptor("icons/elcl16/delete.gif")); deleteAction.setDisabledImageDescriptor(Activator.getImageDescriptor("icons/dlcl16/delete.gif")); editAction = new Action() { public void run() { // TODO considerare anche l'editing delle righe della tabella } }; refreshAction = new Action() { public void run() { } }; refreshAction.setText("Refresh"); refreshAction.setToolTipText("Refresh table"); refreshAction.setImageDescriptor(Activator.getImageDescriptor("icons/elcl16/refresh.gif")); refreshAction.setDisabledImageDescriptor(Activator.getImageDescriptor("icons/dlcl16/refresh.gif")); getViewSite().getActionBars().setGlobalActionHandler( ActionFactory.DELETE.getId(), deleteAction); } private void hookDoubleClickAction() { tableViewer.addDoubleClickListener(new IDoubleClickListener() { public void doubleClick(DoubleClickEvent event) { editAction.run(); } }); } /** * Passing the focus request to the tableViewer's control. */ public void setFocus() { tableViewer.getControl().setFocus(); } private void setColumns() { Table table = tableViewer.getTable(); table.setRedraw(false); while (table.getColumnCount() > 0) { int lastOne = table.getColumnCount() - 1; table.getColumn(lastOne).dispose(); } String[] columnHeaders = { "Item" }; for (int i = 0; i < columnHeaders.length; i++) { TableColumn column = new TableColumn(table, SWT.RIGHT); column.setText(columnHeaders[i]); column.setWidth(120); column.setMoveable(true); column.addListener(SWT.Selection, sortListener); } table.setRedraw(true); table.setHeaderVisible(true); } private void removeSelected() { if (tableViewer.getSelection().isEmpty()) return; int[] indices = tableViewer.getTable().getSelectionIndices(); int nextSelectedIndex = 0; for (int i = 0; i < indices.length; i++) { if (nextSelectedIndex < indices[i]) nextSelectedIndex = indices[i]; } int itemCount = tableViewer.getTable().getItemCount(); for (int i = 0; i < indices.length; i++) { input.remove(indices[i]); itemCount--; nextSelectedIndex--; } nextSelectedIndex++; tableViewer.setItemCount(itemCount); tableViewer.refresh(); if (nextSelectedIndex >= itemCount) nextSelectedIndex = itemCount - 1; if (itemCount > 0) tableViewer.setSelection(new StructuredSelection( input.get(nextSelectedIndex)), true); } private Listener sortListener = new Listener() { public void handleEvent(Event e) { Table table = tableViewer.getTable(); TableColumn sortColumn = table.getSortColumn(); TableColumn currentColumn = (TableColumn) e.widget; int dir = table.getSortDirection(); if (sortColumn == currentColumn) { dir = dir == SWT.UP ? SWT.DOWN : SWT.UP; } else { table.setSortColumn(currentColumn); dir = SWT.UP; } table.setSortDirection(dir); } }; }
verified fixed
471f5c5
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableViewer.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/VirtualLazyTableViewerTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/VirtualTableViewerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-13T14:00:20Z
2006-10-08T17:53:20Z
160,700
Bug 160700 [Viewers] Editing backwards compatility
null
verified fixed
da94c20
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ColumnViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-12T18:51:29Z
2006-10-12T16:20:00Z
160,720
Bug 160720 [Undo] - need tracing options to monitor workspace undo history validation
Any automatic flushing of the workspace undo history should include tracing options so that we can monitor how often this happens, when it happens, etc.
verified fixed
b78f2dc
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/Policy.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-12T18:20:43Z
2006-10-12T19:06:40Z
91,449
Bug 91449 [DnD] [Perspectives] Dragging a perspective button should not be overloaded to open a new window
3.1M6 - when dragging a perspective button in the perspective bar to rearrange its order, I moved it slightly out of bounds of the perspective bar - the result was not a rearrangement of the perspectives, but a new window - this was unexpected - also, it's not really detaching the perspective, but rather opening a new window with a fresh perspective of the same kind This is equivalent to doing Window > New Window. The DnD support seems to be causing more confusion than benefit. I suggest we back out of it for 3.1.
closed fixed
266b820
["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-10-12T17:53:03Z
2005-04-14T20:20:00Z
160,659
Bug 160659 CCE in ResourceNavigator
16 failures in the org.eclipse.ui.tests java.lang.ClassCastException at org.eclipse.ui.tests.navigator.ResourceNavigatorTest.testSelectReveal(ResourceNavigatorTest.java:133) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:327) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:201) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:188) 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:3182) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2884) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1916) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1880) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95) at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:131) at org.eclipse.test.UITestApplication.run(UITestApplication.java:58) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962)
resolved fixed
62f983c
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceNavigator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-12T12:27:50Z
2006-10-12T13:33:20Z
160,545
Bug 160545 IResourceNavigator javadoc errors in build N200610110010
Constructing Javadoc information... /builds/N200610110010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java:60: warning - Tag @link: can't find setComparator() in org.eclipse.ui.views.navigator.IResourceNavigator /builds/N200610110010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java:60: warning - Tag @link: can't find setComparator() in org.eclipse.ui.views.navigator.IResourceNavigator /builds/N200610110010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java:60: warning - Tag @link: can't find setComparator() in org.eclipse.ui.views.navigator.IResourceNavigator /builds/N200610110010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java:60: warning - Tag @link: can't find setComparator() in org.eclipse.ui.views.navigator.IResourceNavigator /builds/N200610110010/src/plugins/org.eclipse.platform.doc.isv/../org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java:60: warning - Tag @link: can't find setComparator() in org.eclipse.ui.views.navigator.IResourceNavigator 5 warnings
verified fixed
072103f
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-11T20:15:14Z
2006-10-11T20:53:20Z
159,190
Bug 159190 [Viewers] multiple dispose listeners for elements in VIRTUAL tree viewer
3.3 Each time an element is mapped in a VIRTUAL tree viewer, a dispose listener is hooked to its item to properly unmap it. However, elements are mapped to the same item more than once (each time it is updated via doUpdateItem(Widget widget, Object element, boolean fullMap)). This results in many dispose listeners for each element to unmap it, which is a potential performance issue. The debugger subclasses the tree viewer and updates (clears) filtered children when an element is unmapped. It ends up doing the operation many times (once for each dispose callback), instead of once.
verified fixed
b8b9555
["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-10-11T13:59:06Z
2006-09-28T19:00:00Z
93,611
Bug 93611 [Viewers] Please refactor TableLayout to behave like standard layout
null
resolved fixed
70f8155
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/propertyPages/TableResizePropertyPage.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-10T16:52:18Z
2005-05-04T04:13:20Z
157,495
Bug 157495 [Viewers] public subclasses of ViewerSorter should be changed to ViewerComparator
The following 3 classes in the ui should be changed to be subclasses of ViewerComparator: ResourceSorter WorkbenchViewerSorter FileViewerSorter This will involve deprecating old classes and methods, and adding new classes and methods for each of these classes and to classes that reference these sorter classes in their API.
verified fixed
68c41e3
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/FileSelectionDialog.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardResourceImportPage.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/FileFolderSelectionDialog.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/IResourceNavigator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceComparator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceNavigator.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/ResourceSorter.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/SortAndFilterActionGroup.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/SortViewAction.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/CheckedTreeSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/ElementTreeSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardListSelectionPage.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/dialogs/WorkingSetSelectionDialog.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/model/WorkbenchViewerComparator.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/model/WorkbenchViewerSorter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-10T14:16:38Z
2006-09-15T17:06:40Z
157,604
Bug 157604 [Jobs] The following rule does not apply: Don't swallow InterruptedException. Call Thread.currentThread().interrupt()
null
resolved fixed
d41d6f3
["examples/org.eclipse.ui.examples.job/src/org/eclipse/ui/examples/jobs/BusyShowWhileDialog.java", "examples/org.eclipse.ui.examples.job/src/org/eclipse/ui/examples/jobs/TestJob.java", "examples/org.eclipse.ui.examples.job/src/org/eclipse/ui/examples/jobs/UITestJob.java", "examples/org.eclipse.ui.examples.job/src/org/eclipse/ui/examples/jobs/actions/CreateJobsAction.java", "examples/org.eclipse.ui.examples.job/src/org/eclipse/ui/examples/jobs/actions/JobAction.java", "examples/org.eclipse.ui.examples.job/src/org/eclipse/ui/examples/jobs/views/JobsView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-06T16:07:11Z
2006-09-18T03:26:40Z
159,626
Bug 159626 [Snippets] Snippet to demonstrate ImageButtons in dialogs
null
verified fixed
836ab2b
["examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/dialogs/Snippet012DialogWithImageButtons.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-06T14:22:24Z
2006-10-03T18:26:40Z
159,940
Bug 159940 [DataBinding] DataBindingContext shouldn't expose the bindings list as a mutable list
Currently in DataBindingContext getBindings() exposes the bindings observable list as a mutable observable list. I think we need to make this an unmodifiable list and also add a removeBinding(Binding binding) method to the API of DataBindingContext so that the DBC can remove itself from the binding when removed from the DBC. I'll create a patch soon.
verified fixed
3c21ed7
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/DataBindingContext.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/DatabindingContextTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-06T14:11:19Z
2006-10-05T20:26:40Z
159,998
Bug 159998 NPE in TableViewerTests
N20061006 java.lang.NullPointerException at org.eclipse.jface.dialogs.TitleAreaDialog.setTitleImage(TitleAreaDialog.java:583) at org.eclipse.jface.tests.dialogs.TitleAreaDialogTest.testSetTitleImageNull(TitleAreaDialogTest.java:47) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:327) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:201) at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35) at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962)
verified fixed
656e8d7
["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-10-06T13:43:03Z
2006-10-06T13:06:40Z
159,930
Bug 159930 [Dialogs] Remove the ControlAnimator from the Preferences and TitleArea dialog
M2 We have decided to remove the control animations. We are also going to remove the background colors from the error message and keep them as the same as the plain message background.
verified fixed
da161fa
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/AnimatorFactory.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/TitleAreaDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceDialog.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/preference/PreferenceMessageArea.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/util/Policy.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/JFaceUtil.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchAnimatorFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkbenchControlAnimator.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-05T20:11:35Z
2006-10-05T20:26:40Z
159,890
Bug 159890 [Markers] Bug75909Test failing in N20061005 build
null
verified fixed
bdc28b6
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/markers/Bug75909Test.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-05T15:27:18Z
2006-10-05T14:53:20Z
159,538
Bug 159538 [Trim] 6 test failures in the test suite with examples loaded
[N20061002-0010] When you run the test suites with all UI plugins including tests and examples, there are six failures in TrimLayoutTest, they all look similar to the one below. Fixing this would give me that "warm fuzzy feeling" when I do the build submissions that everything is green. junit.framework.AssertionFailedError: Number of trim items don't match expected:<4> but was:<5> at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.failNotEquals(Assert.java:282) at junit.framework.Assert.assertEquals(Assert.java:64) at junit.framework.Assert.assertEquals(Assert.java:201) at org.eclipse.ui.tests.api.TrimLayoutTest.validatePositions(TrimLayoutTest.java:373) at org.eclipse.ui.tests.api.TrimLayoutTest.testTrimInformation(TrimLayoutTest.java:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at 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.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:58) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java: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:3378) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3023) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1916) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1880) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:419) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) 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:104) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:74) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:348) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:165) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:341) at org.eclipse.core.launcher.Main.basicRun(Main.java:285) at org.eclipse.core.launcher.Main.run(Main.java:987) at org.eclipse.core.launcher.Main.main(Main.java:962)
verified fixed
09abd6c
["tests/org.eclipse.ui.tests/Eclipse", "UI", "Tests/org/eclipse/ui/tests/api/TrimLayoutTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-05T14:04:30Z
2006-10-03T01:46:40Z
158,065
Bug 158065 [DataBinding] ValidationError observables need a nudge to hook themselves up
See attached patch.
resolved fixed
92d74a0
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/observable/value/ComputedValue.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-05T14:01:52Z
2006-09-20T19:20:00Z
140,644
Bug 140644 [DataBinding] Binding to ValidationError of DataBindingContext is broken
Hello, I wanted to bind the ValidationError Observable to a Widget, and it doesn't seem to work. I tested with Jface Databinding sample and in TestMasterDetails.java example, instead of binding the simple date error to a label, I bound the ValidationError of DBC to the Label (with a simple converter). dbc.bind(validationError, dbc.getValidationError(), new BindSpec().setUpdateModel(false).setModelToTargetConverter(new IConverter() { public Object convert(Object fromObject) { // TODO Auto-generated method stub if (fromObject == null) return null; return ((ValidationError) fromObject).message; } public Object getFromType() { // TODO Auto-generated method stub return Object.class; } public Object getToType() { // TODO Auto-generated method stub return String.class; } })); After investigating, I saw the ValidationError is a computed value (very interesting concept and useful) on the ValidationErrorList. 1. The ComputedValue mechanism seems to use the StateListener to the Object, but I don't see any management of staleness in ValidationErrorList (or ObservableList). 2. When one of the field gets an error, I debug and saw the ChangedListener on my binding was null (whereas the ValidationErrorList registers listeners on them). At the beginning, it's registered, the removed and not added again when needed. I have not enough time to go deeper in the mechanism, could you help me to understand what I'm doing wrong with this simple binding (With previous releases I was already binding with that mechanism and it worked). Is there an other way to do this? (My workaround is a listener on DBC, but I would prefer to use ValidationError Computed value). Thanks in advance
resolved fixed
58f56c4
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/DataBindingContext.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/snippets/Snippet004DataBindingContextErrorLabel.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/DatabindingContextTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-05T13:15:07Z
2006-05-08T20:26:40Z
16,179
Bug 16179 [Wizards] Wizard API: confusion over notifying of pages being entered, left
Its not clear what a wizard writer is supposed to do to for notification of page transition. This is important for complex wizards which have to compute expensive information based on a previous page, or where it must compute something expensive for availability of the next page. The goal is optimal delaying of computing information and of setting page control state (e.g. setting input on a tree). This may just be a javadoc/doc issue, or may be an API improvement issue. I would understand if we were hesitant to change any API here since there are already a lot of wizards written against the current API. At present the writer can do one of two things: 1. supplement DialogPage.setVisible(boolean) - Although the javadoc says you can supplement it, it feels like a hack to do so (I assumed it was wrong until I saw the javadoc and spoke with Randy). Perhaps its just because it looks more like a setter than a notification of visibility. I have a bit of concern that the framework may wish to distinguish notification from setting of a field state. It would be clearer to have methods like: entering() leaving() which are more clearly there solely for notification. 2. The other trick is to override getNextPage(). There are two problems here: - the API isn't clear that its ok to compute information for the next page by overriding this method. Its also not clear that you could dynimally compute the next page using this. The javadoc comment in the method in IWizardPage isn't clear, and the class javadoc for WizardPage doesn't list it in the section titled " * Subclasses may override these methods if required:" - this method gets called a lot (e.g. to determine if Next> should be enabled). Optimal use would involve overriding other methods which by default send it. The javadoc should at least say that if you override it to do real work, you need to override other methods as well. This is indicative of a problem in the framework though. For example, if the method was called computeNextPage(), it would be clear that senders should minimize their use and that implementors can rely on that.
verified fixed
342bd37
["bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/IPageTransitionListener.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/IPageTransitionProvider.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/PageTransitionEvent.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/Wizard.java", "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-10-04T14:32:18Z
2002-05-16T17:26:40Z
159,625
Bug 159625 [Snippets] Update Snippet011CustomTooltips to reflect new API
Method names not changed with API
verified fixed
ab714ac
["examples/org.eclipse.jface.snippets/Eclipse", "JFace", "Snippets/org/eclipse/jface/snippets/viewers/Snippet011CustomTooltips.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-03T19:40:50Z
2006-10-03T18:26:40Z
159,009
Bug 159009 Errors opening resource
build i0926-0935 I commonly use ctrl-shift-r to open a resource in my workspace. with this build I frequently get an error and the following stack track in my log file. !ENTRY org.eclipse.core.jobs 4 2 2006-09-27 13:47:30.164 !MESSAGE An internal error occurred during: "Searching for all". !STACK 0 java.util.ConcurrentModificationException at java.util.LinkedHashMap$LinkedHashIterator.nextEntry(LinkedHashMap.java:365) at java.util.LinkedHashMap$ValueIterator.next(LinkedHashMap.java:380) at org.eclipse.ui.dialogs.ResourceSearcher$ResourceHistory.getMatchedElements(ResourceSearcher.java:497) at org.eclipse.ui.dialogs.ResourceSearcher$ResourceSearchEngineJob.getFilteredHistory(ResourceSearcher.java:306) at org.eclipse.ui.dialogs.AbstractSearcher$AbstractSearchJob.internalRun(AbstractSearcher.java:395) at org.eclipse.ui.dialogs.AbstractSearcher$AbstractSearchJob.doRun(AbstractSearcher.java:371) at org.eclipse.ui.dialogs.AbstractSearcher$AbstractJob.run(AbstractSearcher.java:337) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
verified fixed
ea0718e
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceSearcher.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/utils/ResourceSearchItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearchItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearcher.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/CharOperation.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/SearchPattern.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-03T19:15:38Z
2006-09-27T18:00:00Z
158,658
Bug 158658 Eclipse 3.3 presentation: Minimize too slow on Windows
3.3M2, 3.3 presentation enabled The animation is cute but it's currently too slow to be useful on my machine (WinXP SP2, dual 3.2Ghz, 2G memory, Nvidia GeForce 6200, 3 monitors). There's a noticeable pause (2-3 sec?) when it captures the screen before it starts scaling it down. javaw.exe (jdk1.5.0_06) takes close to 50% of the CPU during this period, i.e., close to 100% of a single CPU.
resolved fixed
ecddb77
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/RectangleAnimation.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-03T18:07:24Z
2006-09-25T21:33:20Z
159,550
Bug 159550 [Viewers] Deprecate TableTreeViewer
The underlying SWT-controls of TableTreeViewer (TableTree,TableTreeItem,TableTreeEditor) are deprecated and so should TableTreeViewer I think.
verified fixed
b5de2e7
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TableTreeViewer.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-03T15:35:24Z
2006-10-03T07:20:00Z
159,539
Bug 159539 [DataBinding] Create a static initializer to create DBC with support for java primitives
It seems like in most scenarios default support for converters and validators for java's primitive types would be desired when creating a DataBindingContext. Attaching patch...
verified fixed
78c84f6
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/DataBindingContext.java", "examples/org.eclipse.jface.examples.databinding/src/org/eclipse/jface/examples/databinding/HelloWorld.java", "tests/org.eclipse.jface.tests.databinding/src/org/eclipse/jface/tests/databinding/DatabindingContextTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-03T15:31:25Z
2006-10-03T04:33:20Z
159,425
Bug 159425 Fix for javadoc warnings in latest nightly builds
Fix for the javadoc warning in the org.eclipse.ui.dialogs.FilteredTree class.
verified fixed
c5b18b4
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/FilteredTree.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-03T14:10:16Z
2006-10-02T03:33:20Z
158,876
Bug 158876 [OpenModes] Synchronizer execs OpenStrategy Runnable mulitple times for one selection
So for the OpenStrategy I'm seeing mixed results for the call to display.asyncExec, where the SWT widgets Synchonizer will execute the runnable multiple times, although passed to asyncExec only once. See below code sample and debug output - any thoughts on why the synchronizer would execute the same runnable again and again? For context of the situation, this is in a TableViewer, with a content provider going against a server, leading to delays in scrolling when holding down the arrow key. Here's the code in OpenStrategy(for the places where the System.out.printlns are called to relate to the output listed below): System.out.println("Open Strategy Handling Event..."); ... ... display.asyncExec(new Runnable() { public void run() { if (arrowKeyDown) { System.out.println("Starting job: "+count[0]); display.timerExec(TIME, new Runnable() { int id = count[0]; public void run() { System.out.println("Trying to run job: "+id); if (id == count[0]) { System.out.println("Firing post selection: After 500 ms delay"); firePostSelectionEvent(new SelectionEvent( e)); if ((CURRENT_METHOD & ARROW_KEYS_OPEN) != 0) { System.out.println("Firing Open Event: After 500 ms delay"); fireOpenEvent(new SelectionEvent( e)); } } } }); } else { System.out.println("Firing post selection: Immediately "); firePostSelectionEvent(new SelectionEvent(e)); } } }); Then here's the output Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Trying to run job: 807 Trying to run job: 806 Trying to run job: 805 Trying to run job: 805 Trying to run job: 805 Trying to run job: 805 Trying to run job: 805 Trying to run job: 800 Trying to run job: 799 Trying to run job: 799 Trying to run job: 799 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Starting job: 818 Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Open Strategy Handling Event... Keydown handled from widget Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Open Strategy Handling Event... Keydown handled from widget Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent Trying to run job: 818 Firing post selection: After 500 ms delay selectionChangedEvent
verified fixed
975970a
["bundles/org.eclipse.jface/src/org/eclipse/jface/util/OpenStrategy.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-02T17:25:45Z
2006-09-26T22:33:20Z
158,569
Bug 158569 [FastViews] Fast view opened with button disappears on focus loss
I20060922-0010 (3.3 M2) - new workspace, default presentation - close Welcome - click Fast View button in lower-left corner, choose Other... - open 'CVS Repositories' - click somewhere to make the fast view go away (e.g. click Outline view) => 'CVS Repositories' is not available in the fast view bar any more.
verified fixed
52c410a
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/handlers/ShowViewHandler.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-02T17:19:43Z
2006-09-25T16:00:00Z
67,133
Bug 67133 [WorkingSets] Navigator VS Package Explorer: working set menu items are inconsistent
I am using 3.0RC2 on Mac and on Windows. The list of working sets in the Navigator view does not provide an icon for its label, while the Package Explorer's list does. Is that intentional? The menus for both views are consistent except for the working set's label provider.
verified fixed
8894a1d
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/WorkingSetMenuContributionItem.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-10-02T12:34:35Z
2004-06-14T21:53:20Z
94,667
Bug 94667 [KeyBindings] preference page: Export writes bad CSV file
null
resolved fixed
648cada
["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-10-02T11:40:21Z
2005-05-11T14:00:00Z
159,205
Bug 159205 [DataBinding] ClassCastException in StructuredContentProviderTest
Running StructuredContentProviderTest from head on 060928 Click "add" then click one of the radio buttons in the center. Throws one of these: (I have a hunch that MappedSet's iterator is returning an internal object rather than an element from the set... but it's just a hunch) Thread [main] (Suspended (exception ClassCastException)) StructuredContentProviderTest$3.calculate() line: 222 ComputedValue$PrivateInterface.run() line: 78 ObservableTracker.runAndMonitor(Runnable, IChangeListener, IStaleListener) line: 101 StructuredContentProviderTest$3(ComputedValue).doGetValue() line: 103 StructuredContentProviderTest$3(AbstractObservableValue).getValue() line: 74 StructuredContentProviderTest$1.updateControl() line: 160 ControlUpdater$1.run() line: 106 ObservableTracker.runAndMonitor(Runnable, IChangeListener, IStaleListener) line: 101 StructuredContentProviderTest$1(ControlUpdater).updateIfNecessary() line: 130 ControlUpdater.access$0(ControlUpdater) line: 128 ControlUpdater$PrivateInterface.run() line: 92 WorkQueue.doUpdate() line: 71 WorkQueue.access$0(WorkQueue) line: 60 WorkQueue$2.handleEvent(Event) line: 49 EventTable.sendEvent(Event) line: 66 Display.filterEvent(Event) line: 1380 List(Widget).sendEvent(Event) line: 1084 List(Widget).sendEvent(int, Event, boolean) line: 1109 List(Widget).sendEvent(int, Event) line: 1094 List(Control).gtk_expose_event(int, int) line: 2062 List(Widget).windowProc(int, int, int) line: 1460 Display.windowProc(int, int, int) line: 3835 OS._gtk_main_do_event(int) line: not available [native method] OS.gtk_main_do_event(int) line: 5436 Display.eventProc(int, int) line: 1149 OS._g_main_context_iteration(int, boolean) line: not available [native method] OS.g_main_context_iteration(int, boolean) line: 1465 Display.readAndDispatch() line: 2877 StructuredContentProviderTest.main(String[]) line: 383
verified fixed
a01e42d
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/observable/set/MappedSet.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-29T18:50:08Z
2006-09-28T21:46:40Z
158,118
Bug 158118 Change ViewerSorter.getComparator?
20060920 We have an API class JavaElementSorter that extends ViewerSorter. I can't change that as it would be API breaking but I was hoping that that I could still be used as both a ViewerSorter and a ViewerComparator as ViewerSorter extends ViewerComparator . Internally I changed our code to only use getComparator when comparing elements, to avoid any use of getCollator. The APi is still there, but just for API compability Unfortunatly ViewerSorter reimplements getComparator and replaces it with getCollator. This blocks all accesses to the comparator instance in the ViewerComparator. One possibility I see is: Change ViewerSorter(Collator c) to call super(c), so no overriding of getComparator is required. In our case we would call ViewerSorter(null) and overwrite getComparator and getCollator to lazy create the collator (see other bug).
verified fixed
c8ad4c7
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ViewerSorter.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-29T14:55:44Z
2006-09-21T09:13:20Z
159,159
Bug 159159 [Undo] - redundant/awkward warning message when rename causes overwrite
When renaming a resource and an overwrite will occur, the warning message dialog says "Operation Warning: Xxx will be overwritten. Proceed with "Rename" anyway? The title of the dialog is Operation Warning. Having it in the message text in addition to the title makes it harder to parse what's going on.
verified fixed
92067e5
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/operations/AdvancedValidationUserApprover.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-28T18:03:19Z
2006-09-28T19:00:00Z
158,973
Bug 158973 [Markers] All labels in tasks and breakpoints views are bold
I20060926 We are applying the bold font to everything in the tasks and breakpoints view
verified fixed
d3c7948
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/MarkerViewLabelProvider.java", "bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/internal/TableView.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-27T19:22:44Z
2006-09-27T15:13:20Z
158,791
Bug 158791 [EditorMgmt] NPE in NavigationHistoryAction.update
null
verified fixed
c5e4d49
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/NavigationHistory.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-27T14:05:31Z
2006-09-26T17:00:00Z
158,959
Bug 158959 [Viewers] testRefreshBug141435 and testNoSelectionRefresh failing on N20060927-0010
null
verified fixed
8aed502
["tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ListViewerRefreshTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ListViewerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-27T13:36:10Z
2006-09-27T12:26:40Z
156,674
Bug 156674 QuickAccess popup: remembering size and position does not work
I20060906-1200 QuickAccess (Ctrl+E) popup: remembering size and position does not work. - The state of the menu 'Remember Size an Postion' is always checked when the dialog comes up, even after I've switched it off - The position and size of the dialog is not remembered
verified fixed
3ef06ba
["bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/incubator/CtrlEAction.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-26T19:54:13Z
2006-09-08T10:06:40Z
156,672
Bug 156672 QuickAccess command should appear in menu Window > Navigation
I20060906-1200 The new QuickAccess command (Ctrl+E, 'Window > QuickAccess' on Keys preference page) should appear in the menu 'Window > Navigation'. Furthermore, it's rather uncommon in Eclipse to use CamelCase command names. I would suggest to rename the command to 'Quick Access'.
verified fixed
416853f
["bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/actions/ActionFactory.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/internal/QuickAccessMenu.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-09-26T19:45:05Z
2006-09-08T10:06:40Z
109,528
Bug 109528 [RCP] [Workbench] Eclipse automatically attempts to save modified files when OutOfMemoryException occurs
We need a way to know if the workbench is closing because of an exception (such as OutOfMemoryError), since we want to change our save behaviour in that case to *not* save over the original file (Eclipse's default 'emergency close' behaviour), but to save to a temporary file instead. It seems that all access points to IWorkbenchConfigurer are blocked off (default/private access).
verified fixed
640889c
["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-09-26T19:24:40Z
2005-09-14T17:46:40Z
158,016
Bug 158016 [Perspectives] GDI leak: Each time you create a perspective switcher an image is leaked
To recreate. Open a new perspective and close it. Notice your GDIs increase by 1 each time you do this. The PerspectiveSwitcher creates a PerspectiveBarManager but doesn't dispose it. The PerspectiveBarNewContributionItem does implement a dispose() method that does the right thing, but the method is never called. The following patch disposes the PerspectiveBarManager when the PerspectiveSwitcher is disposed.
resolved fixed
f4d79be
["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-09-26T18:39:00Z
2006-09-20T16:33:20Z
141,435
Bug 141435 [Viewers] ListViewer without a selection loses scrolled state when refreshed
When the ListViewer does not contain a selection and is refreshed it loses its vertically scrolled to position. This is because AbstractListViewer removes all items and adds them back (it has to) when a refresh occurs. This is remedied in the use cases where there is a selection because the selected item is revealed after the refresh occurs. Without a selection no reveal can occur therefore it loses its position.
resolved fixed
266b326
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/AbstractListViewer.java", "bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ListViewer.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/ListViewerRefreshTest.java", "tests/org.eclipse.ui.tests/Eclipse", "JFace", "Tests/org/eclipse/jface/tests/viewers/ListViewerTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-26T16:25:38Z
2006-05-11T20:40:00Z
137,435
Bug 137435 [DataBinding] IdentityWrapper violates requirements for equals
null
resolved fixed
fbc1c53
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/IdentityWrapper.java", "bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/beans/ListenerSupport.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-26T16:06:56Z
2006-04-19T07:00:00Z
134,856
Bug 134856 [DataBinding] ValueDiff overrides Object.equals(Object) but not Object.hashCode()
The javadoc for Object.hashCode() states: "If two objects are equal according to the <tt>equals(Object)</tt> method, then calling the <code>hashCode</code> method on each of the two objects must produce the same integer result." The other IDiff implementations don't override Object.equals(Object) so I assume ValueDiff shouldn't either.
resolved fixed
387e1e2
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/observable/value/ValueDiff.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-26T15:57:26Z
2006-04-04T19:46:40Z
152,543
Bug 152543 [DataBinding] ValueBinding NPE when update target from model is false
When a ValueBinding is constructed and instructed not to update the target from the model via the BindSpec a NPE is thrown when it tries to access the modelToTargetConverter. Exception in thread "main" java.lang.NullPointerException at org.eclipse.jface.internal.databinding.internal.ValueBinding.doUpdateTargetFromModel(ValueBinding.java:268) at org.eclipse.jface.internal.databinding.internal.ValueBinding.updateTargetFromModel(ValueBinding.java:250) at org.eclipse.jface.internal.databinding.internal.ValueBinding.<init>(ValueBinding.java:112) at Snippet.main(Snippet.java:32) Attaching patch...
resolved fixed
4b0d1ff
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/internal/databinding/internal/ValueBinding.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/ValueBindingTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-26T13:45:32Z
2006-08-02T03:40:00Z
158,687
Bug 158687 [Databinding] WritableValue throws ValueChange events when a change has not occurred
WritableValue currently throws a ValueChange event anytime the value is set rather than just when the value changes. Attaching patch...
verified fixed
c3b9e14
["bundles/org.eclipse.jface.databinding/src/org/eclipse/jface/databinding/observable/value/WritableValue.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/observable/value/WritableValueTest.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-26T13:36:17Z
2006-09-26T03:06:40Z
158,606
Bug 158606 make BaseLabelProvider public
null
verified fixed
856023a
["bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/BaseLabelProvider.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-25T18:10:18Z
2006-09-25T16:00:00Z
90,170
Bug 90170 [Dialogs] CamelCase search on OpenResource/OpenType
null
verified fixed
ae3d354
["bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/ResourceSearcher.java", "bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/utils/ResourceSearchItem.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/AbstractSearcher.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/CharOperation.java", "bundles/org.eclipse.ui.workbench/Eclipse", "UI/org/eclipse/ui/dialogs/SearchPattern.java"]
Eclipse_Platform_UI
https://github.com/eclipse-platform/eclipse.platform.ui
eclipse-platform/eclipse.platform.ui
java
null
null
null
2006-09-25T17:02:20Z
2005-04-04T15:53:20Z