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
unknown | report_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
217,819 | Bug 217819 [breadcrumb] filter list must be fully on screen | I20080205-0010 With long parent chains, it can happen that the filter list for the last (empty) breadcrumb item appears partly out of screen. | resolved fixed | 299d883 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-15T10:41:49Z" | "2008-02-05T11:13:20Z" |
218,730 | Bug 218730 [breadcrumb] selection in drop down not correctly revealed | Build ID: I20080207-1530 Steps To Reproduce: When there is not enough vertical space in the selector popup list to show all the entries, it has a vertical scroll bar. If the currently selected entry is closer to the end of the list, the list is scrolled to reveal that entry. However, the entry is shown last (in the viewport), instead of being somewhere in the middle to provide better context of entries above and below it. More information: | resolved fixed | 1e598f7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-14T16:57:35Z" | "2008-02-13T02:33:20Z" |
218,339 | Bug 218339 [breadcrumb] ClassCastException if JavaEditor is nested within a GridLayout | Build ID: I20080122-0800 Steps To Reproduce: I am using the v20080122-8000 version of org.eclipse.jdt.ui. I have a JavaEditor instance embedded within in a GridLayout in a custom view. Due to the recent additions to the JavaEditor to handle breadcrumbs I am experiencing a ClassCastException which has rendered my view unusable. The exception is happening for the following reasons... 1. In the createSourceViewer method of org.eclipse.jdt.internal.ui.javaeditor.JavaEditor you set the top level composite to have a layout data of type GridData. Composite composite= new Composite(parent, SWT.NONE); composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); In my case, and I believe when you just open the Java Editor normally, the parent composite has a FillLayout, so applying a GridData has no real impact and can lead to a ClassCastException. 2. The ClassCastException comes about when FillLayout attempts to compute its size. In the method computeChildSize in org.eclipse.swt.layout.FillLayout there is the following line of code: FillData data = (FillData)control.getLayoutData (); At this point the control(the JavaEditor composite), which has its layout data set as a GridData object, will cause a ClassCastException. This exception does not pop up during the standard case of just opening the JavaEditor because there is no top level GridLayout which has to compute the size of its children. In my case I have the JavaEditor embedded in a top level GridLayout so it has to compute the size of its children in order to lay itself out. This takes it down the code path which leads to the ClassCastException. More information: I was able fix this problem by doing a quick check in the JavaEditor class. In the createSourceViewer method of org.eclipse.jdt.internal.ui.javaeditor.JavaEditor I modified the code... From: Composite composite= new Composite(parent, SWT.NONE); composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); To: Composite composite= new Composite(parent, SWT.NONE); if(parent.getLayout() != null && parent.getLayout() instanceof GridLayout) { composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); } An if statement to check that the parent layout is in fact a GridLayout before a GridData is applied to it. Another option would be to just not set the layout data if the parent is always going to be a FillLayout. Please let me know if you require any additional information. | resolved fixed | 52afcb3 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-14T16:46:55Z" | "2008-02-08T17:00:00Z" |
216,125 | Bug 216125 [breadcrumb] start filtering when user types * | I20080115-1740.from20080122_1152 Breadcrumbs start filtering when I type an alphanumeric character. Should also work when I type a *. | resolved fixed | 120598b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDetails.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-14T16:39:01Z" | "2008-01-22T11:06:40Z" |
218,665 | Bug 218665 [breadcrumb] single click to open by default | Build ID: I20080207-1530 Steps To Reproduce: By default, Eclipse is configured to use double-click to open items. This makes the breadcrumb bar navigation (via popup selector lists) too slow as compared to the native breadcrumb bar in Windows Vista Explorer. The General -> Open Mode can be set to single click, but that will affect all the views and not only the breadcrumb bar. More information: | resolved fixed | 60bc828 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-14T16:32:57Z" | "2008-02-12T18:13:20Z" |
215,996 | Bug 215996 Leak framework: improve failure trace | We had a leak where we got a quite generic failure trace from the failing test: junit.framework.AssertionFailedError: Expected: 0, actual: 1 Element 0 org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor org.eclipse.ui.texteditor.TextEditorAction#fTextEditor java.lang.Object[9] <== PROBLEM HERE org.eclipse.core.runtime.ListenerList#listeners org.eclipse.core.commands.common.EventManager#listenerList org.eclipse.ui.plugin.AbstractUIPlugin#preferenceStore org.eclipse.osgi.framework.internal.core.BundleContextImpl#activator org.eclipse.osgi.framework.internal.core.BundleHost#context org.eclipse.osgi.framework.internal.core.BundleLoaderProxy#bundle org.eclipse.osgi.framework.internal.core.BundleLoaderProxy[10] org.eclipse.osgi.framework.internal.core.BundleLoader#requiredBundles org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader#delegate org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader ... When I looked at the problem in a profiler I quickly found out that this is caused by the ToggleBreadcrumbAction. When I then looked at the leak framework I found that along with the ReferenceInfo that prints "java.lang.Object[9]" the interesting info (instance of ToggleBreadcrumbAction) was stored in ReferenceInfo.BacklinkNode.fValue but not printed out. Maybe the failure trace can be improved? Test Case: 1. from CVS load BasicJavaEditorActionContributor rev 1.41 2. run JavaLeakTest.testJavaEditorClose() | verified fixed | 2816130 | ["org.eclipse.jdt.ui.tests/leaks/org/eclipse/jdt/ui/leaktest/ReferenceInfo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-14T16:22:11Z" | "2008-01-21T15:40:00Z" |
218,331 | Bug 218331 [key bindings][content assist] Ctrl (not Command) should toggle insert/overwrite | I20080207-1530, Mac OS X 10.5.1 Content Assist: Ctrl should toggle insert/overwrite not Command. The preferences page is correct, but only the Command key actually toggles the mode. | resolved fixed | c1ee81b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AbstractJavaCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-14T11:00:52Z" | "2008-02-08T17:00:00Z" |
102,236 | Bug 102236 [JUnit] display execution time next to each test | null | resolved fixed | 8a1fa53 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/IXMLTags.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunHandler.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunSessionSerializer.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestSuiteElement.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/junit/model/ITestElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/IXMLTags.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestRunHandler.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestRunSessionSerializer.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestSuiteElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestSessionLabelProvider.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestViewer.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/model/ITestElement.java", "org.eclipse.jdt.ui.tests/testresources/JUnitWorkspace/JUnit4Tests/src/pack/ATestCase.java", "org.eclipse.jdt.ui.tests/testresources/JUnitWorkspace/JUnitTests/src/pack/ATestCase.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/AbstractTestRunSessionSerializationTests.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-13T18:34:13Z" | "2005-06-30T00:06:40Z" |
218,459 | Bug 218459 [breadcrumb] Improve name compression algorithm | Occaisionally the project name disappears in the editor breadcrumbs. It usually reappears if I switch selected elements (cursor to a different method), so it's not a huge issue. Breadcrumb drop-down remains selectable even while name is hidden. Attaching screenshot to illustrate. | resolved wontfix | 151344e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItem.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDetails.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-12T09:44:44Z" | "2008-02-11T00:33:20Z" |
218,542 | Bug 218542 [clean up] sort members sorts fields by visibility even if field sorting is disabled | Sort-members-but-ignore-fields fails to prevent sorting by member access, which results in field reordering that causes compiler error. (1) In Preferences, (a) In Java, editor, save action, enable "Code Organizing" tab, "Members" section, "Sort members" checkbox and "Ignore fields and enum constants" radio button (b) In Java, appearance, Members Sort Order, enable checkbox "Sort members in same category by visibility" (2) Create the following class: package main; public class Main { static final Object b = "a"; public static final Object a = b; } (3) Edit (add spaces) and save RESULT: a re-ordered before b, causing compile-time error True in 3.4M5 and 3.3.1.1. Workaround: disable (1)(a) or (b). This means we can't use save actions to enforce code formatting for our team. We do want methods sorted. | verified fixed | 8cadd08 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/SortMembersOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-12T09:21:28Z" | "2008-02-11T20:00:00Z" |
218,346 | Bug 218346 [package explorer] Performance problem during refresh | null | resolved fixed | 39f60b0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-11T15:40:52Z" | "2008-02-08T17:00:00Z" |
217,667 | Bug 217667 [render] convert colored labels to SimpleStyledCellLabelProvider | null | resolved fixed | 3ee10b5 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestViewer.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchResultPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/MembersView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/PackagesViewTableViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/PackagesViewTreeViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/ProjectsView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/TypesView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesSearchResultPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaOutlineInformationControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyInformationControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoredString.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoredViewersManager.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoringLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/OwnerDrawSupport.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-07T18:08:59Z" | "2008-02-04T13:00:00Z" |
217,806 | Bug 217806 [extract local] NPE when trying to extract local variable | null | resolved fixed | 06a34ae | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/cannotExtract/A_testFail38.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractTempTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-07T16:17:57Z" | "2008-02-05T11:13:20Z" |
217,982 | Bug 217982 [breadcrumb] Opening types drop down does execute filter job | null | verified fixed | a66bce6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/FilteredTable.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-07T10:59:03Z" | "2008-02-06T12:13:20Z" |
217,815 | Bug 217815 [hovering] Enriched source hover changes size | I20080204-0800 1. Open org.eclipse.jdt.internal.ui.packageview.PackageFragmentRootContainer 2. Shift-Hover over IWorkbenchAdapter 3. Enrich hover (doesn't matter which strategy) Is: The size of the hover changes: It's now much smaller. Should: Size should not change This is on xp, I can not reproduce on Vista | verified fixed | 87daa66 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/SourceViewerInformationControl.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-06T15:17:11Z" | "2008-02-05T11:13:20Z" |
217,790 | Bug 217790 [breadcrumb] Remove left/right arrows | null | verified fixed | a230afd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/FilteredTable.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-06T14:07:03Z" | "2008-02-05T08:26:40Z" |
217,896 | Bug 217896 [build path] New Java Project - JRE group's radio buttons are misbehaving | null | verified fixed | 84b49bc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewJavaProjectWizardPageOne.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-06T12:09:27Z" | "2008-02-05T19:33:20Z" |
217,805 | Bug 217805 [breadcrumb] Widget disposed exception when opening type | I20071213-1700 (on vista and XP) 1. Open 'charsets.jar' in roots drop down 2. Open 'sun.io' in packages drop down 3. Quickly open some type from this package Is: Caused by: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.SWT.error(SWT.java:3605) at org.eclipse.swt.widgets.Widget.error(Widget.java:441) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:334) at org.eclipse.swt.widgets.Table.setRedraw(Table.java:4212) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.FilteredTable$3.runInUIThread(FilteredTable.java:365) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java:94) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) ... 24 more | verified fixed | d5b8152 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/FilteredTable.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-06T11:52:47Z" | "2008-02-05T11:13:20Z" |
217,973 | Bug 217973 [breadcrumb] Widget disposed when shut down eclipse with open drop down | I20080129-1400 1. Open a drop down 2. shut down eclipse Is: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.SWT.error(SWT.java:3605) at org.eclipse.swt.widgets.Widget.error(Widget.java:438) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:376) at org.eclipse.swt.widgets.Shell.close(Shell.java:537) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown$7.handleEvent(BreadcrumbItemDropDown.java:310) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1393) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1112) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1137) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1118) at org.eclipse.swt.widgets.Control.sendFocusEvent(Control.java:3239) at org.eclipse.swt.widgets.Control.gtk_event_after(Control.java:2639) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1493) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4468) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4026) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:5710) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1163) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1504) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2980) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:165) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:360) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:499) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:396) at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:313) at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2715) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:925) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:842) at org.eclipse.ui.internal.Workbench$22.run(Workbench.java:1086) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1084) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1056) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:693) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:672) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:787) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:785) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:741) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:687) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1113) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1137) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1122) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:542) at org.eclipse.swt.widgets.Shell.gtk_delete_event(Shell.java:976) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1490) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4468) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4026) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:5710) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1163) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1504) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2980) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:564) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1251) at org.eclipse.equinox.launcher.Main.main(Main.java:1227) This on linux and osx | verified fixed | 3467a03 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-06T11:22:34Z" | "2008-02-06T09:26:40Z" |
217,800 | Bug 217800 [breadcrumb] Exception when selecting entry from dropdown | I20080502-0010 - open a Java editor - enable the breadcrumb view - click on an the arrow next to the package - doubleclick a different package from the list org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.SWT.error(SWT.java:3605) at org.eclipse.swt.widgets.Widget.error(Widget.java:443) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:381) at org.eclipse.swt.widgets.Control.setFocus(Control.java:3599) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown.showMenu(BreadcrumbItemDropDown.java:281) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItem.openDropDownMenu(BreadcrumbItem.java:249) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.EditorBreadcrumb.doRevealOrOpen(EditorBreadcrumb.java:303) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.EditorBreadcrumb.access$8(EditorBreadcrumb.java:283) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.EditorBreadcrumb$3.open(EditorBreadcrumb.java:240) at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:820) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199) at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:818) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbViewer.fireOpen(BreadcrumbViewer.java:430) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbViewer.fireMenuSelection(BreadcrumbViewer.java:442) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown$6.mouseDoubleClick(BreadcrumbItemDropDown.java:262) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:182) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1145) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3335) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2982) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) | verified fixed | f8c86dd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-06T10:43:22Z" | "2008-02-05T11:13:20Z" |
217,874 | Bug 217874 [preferences] avoid formatter profile version increment | null | verified fixed | c0336fd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ProfileVersioner.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-05T18:12:26Z" | "2008-02-05T16:46:40Z" |
211,447 | Bug 211447 [hovering] AbstractInformationControlManager computes size constraints based on wrong font | HEAD AbstractInformationControlManager computes size constraints based on the subject control's font. This makes e.g. the size of Javadoc hovers dependent on the editor font size, although the Javadoc hover use the dialog font. On the other hand, using the dialog font for the size calculation would be wrong for the source hover (which uses the editor font). To make it correct for all cases, I guess we need an IInformationControlExtension5: A Font getFont() method would just solve this problem, but a Point convertSizeConstraint(int widthInChars, int heightInChars) method would be more flexible and also allow to allocate enough space for more complex information controls with bigger trims (e.g. for additional buttons, ...). | resolved fixed | 1d3c106 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaInformationProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaTypeHover.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/SourceViewerInformationControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-02-04T11:52:32Z" | "2007-11-29T12:40:00Z" |
217,011 | Bug 217011 No error when running JUnit4 on a project using JRE 1.4 | null | resolved fixed | 6fc14cc | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/util/JUnitStubUtility.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-31T16:26:59Z" | "2008-01-29T23:40:00Z" |
160,480 | Bug 160480 [model] Synchronize shows duplicate entries for resources in default package | When synchronizing with our CVS repository, files in a default package are shown twice: - Project [server] - | resolved fixed | 436f7fe | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/model/JavaSynchronizationContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-30T14:34:09Z" | "2006-10-11T15:20:00Z" |
214,693 | Bug 214693 [api] NewJavaProjectWizardPageTwo can't be used if not last page | null | resolved fixed | ee2a0f1 | ["org.eclipse.jdt.ui.tests/examples/org/eclipse/jdt/ui/examples/MyProjectCreationWizard2.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewJavaProjectWizardPageTwo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-29T10:49:38Z" | "2008-01-08T22:06:40Z" |
216,122 | Bug 216122 [breadcrumb] Handle IPackageDeclaration and IImportDeclaration | I20080115-1740.from20080122_0924 Breadcrumbs should work with IPackageDeclaration and IImportDeclaration. - I cannot select these elements when they are shown in the breadcrumbs bar. - When I select these elements in the editor and then press Alt+Shift+B three times, the selection in the editor jumps to the first type declaration in the file. | resolved fixed | 1a77dfc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-25T13:11:35Z" | "2008-01-22T11:06:40Z" |
216,314 | Bug 216314 [breadcrumb] Drop downs should use table viewer instead of tree viewer | I20080122-1600 Drop downs should use a table. We're using the FilteredTree from platform at the moment. | resolved fixed | a2313aa | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItem.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDetails.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/FilteredTable.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/PatternFilter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-25T10:32:55Z" | "2008-01-23T17:40:00Z" |
215,971 | Bug 215971 [content assist] package-info.java Javadoc should use fully qualified names | null | resolved fixed | 8b0ac9a | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaTypeCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-24T16:15:03Z" | "2008-01-21T12:53:20Z" |
216,233 | Bug 216233 [preferences] Surface new compiler option unusedDeclaredThrownExceptionIncludeUncheckedExceptions | null | verified fixed | f33e15d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-23T11:48:49Z" | "2008-01-23T06:33:20Z" |
216,118 | Bug 216118 [breadcrumb] looks strange for file inside IFolder | null | resolved fixed | cf2d691 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-23T10:48:42Z" | "2008-01-22T11:06:40Z" |
216,248 | Bug 216248 [breadcrumb] Not updated anymore when switching from drop down to editor | I20080122-1600 1. Go to breadcrumb 2. Open a drop down 3. click into editor Is: from now on the breadcrumb is not updated anymore when setting the cursor Should: show element at cursor location Reason is that the breadcrumb thinks he's still active. | verified fixed | 1d4735d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-23T10:18:17Z" | "2008-01-23T09:20:00Z" |
216,116 | Bug 216116 [breadcrumb] No tooltip for 'External Plug-in Libraries' project | HEAD The breadcrumbs bar does not show a tooltip for the 'External Plug-in Libraries' project (e.g. add the org.eclipse.equinox.registry plug-in to Java Search and open type IExtension). | resolved fixed | c3e6b8e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDetails.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-23T09:39:46Z" | "2008-01-22T11:06:40Z" |
216,243 | Bug 216243 [breadcrumb] Open action does not work | I20080122-1600 1. In the breadcrumb select another type 2. Press F3 Is: Can not open selection Should: Open the type | resolved fixed | 165cfe5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumbActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-23T09:27:48Z" | "2008-01-23T09:20:00Z" |
216,136 | Bug 216136 [breadcrumb] NPE when closing editor | I20080115-1740 1. Open Java Editor 2. Disable Breadcrumb 3. Close Editor 4. Open Editor 5. Close Editor Is: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorBreadcrumb.dispose(JavaEditorBreadcrumb.java:402) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.dispose(JavaEditor.java:2571) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.dispose(CompilationUnitEditor.java:1445) at org.eclipse.ui.internal.WorkbenchPartReference.doDisposePart(WorkbenchPartReference.java:730) at org.eclipse.ui.internal.EditorReference.doDisposePart(EditorReference.java:302) at org.eclipse.ui.internal.WorkbenchPartReference.dispose(WorkbenchPartReference.java:681) at org.eclipse.ui.internal.WorkbenchPage.disposePart(WorkbenchPage.java:1586) at org.eclipse.ui.internal.WorkbenchPage.handleDeferredEvents(WorkbenchPage.java:1345) at org.eclipse.ui.internal.WorkbenchPage.deferUpdates(WorkbenchPage.java:1329) at org.eclipse.ui.internal.WorkbenchPage.closeEditors(WorkbenchPage.java:1303) at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:1358) at org.eclipse.ui.internal.EditorPane.doHide(EditorPane.java:61) at org.eclipse.ui.internal.PartStack.close(PartStack.java:543) at org.eclipse.ui.internal.EditorStack.close(EditorStack.java:206) at org.eclipse.ui.internal.PartStack$1.close(PartStack.java:122) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:83) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:276) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.access$1(DefaultTabFolder.java:1) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder$1.closeButtonPressed(DefaultTabFolder.java:67) at org.eclipse.ui.internal.presentations.PaneFolder.notifyCloseListeners(PaneFolder.java:628) at org.eclipse.ui.internal.presentations.PaneFolder$3.close(PaneFolder.java:207) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:2165) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:320) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3758) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3369) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:564) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1251) at org.eclipse.equinox.launcher.Main.main(Main.java:1227) at org.eclipse.core.launcher.Main.main(Main.java:30) !ENTRY org.eclipse.ui.workbench 4 2 2008-01-22 15:17:52.314 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.SWT.error(SWT.java:3605) at org.eclipse.swt.widgets.Widget.error(Widget.java:441) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:334) at org.eclipse.swt.widgets.Composite.getChildren(Composite.java:410) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.showBreadcrumb(JavaEditor.java:1853) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.handlePreferenceStoreChanged(JavaEditor.java:2755) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.handlePreferenceStoreChanged(CompilationUnitEditor.java:1567) at org.eclipse.ui.texteditor.AbstractTextEditor$PropertyChangeListener.propertyChange(AbstractTextEditor.java:664) at org.eclipse.ui.texteditor.ChainedPreferenceStore.firePropertyChangeEvent(ChainedPreferenceStore.java:164) at org.eclipse.ui.texteditor.ChainedPreferenceStore.handlePropertyChangeEvent(ChainedPreferenceStore.java:431) at org.eclipse.ui.texteditor.ChainedPreferenceStore.access$0(ChainedPreferenceStore.java:408) at org.eclipse.ui.texteditor.ChainedPreferenceStore$PropertyChangeListener.propertyChange(ChainedPreferenceStore.java:69) at org.eclipse.ui.preferences.ScopedPreferenceStore$3.run(ScopedPreferenceStore.java:376) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.preferences.ScopedPreferenceStore.firePropertyChangeEvent(ScopedPreferenceStore.java:373) at org.eclipse.ui.preferences.ScopedPreferenceStore.setValue(ScopedPreferenceStore.java:819) at org.eclipse.jdt.internal.ui.javaeditor.ToggleBreadcrumbAction.run(ToggleBreadcrumbAction.java:51) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:229) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:234) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3758) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3369) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:564) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1251) at org.eclipse.equinox.launcher.Main.main(Main.java:1227) at org.eclipse.core.launcher.Main.main(Main.java:30) 5. Enable breadcrumb Is: Error dialog with: org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3716) at org.eclipse.swt.SWT.error(SWT.java:3634) at org.eclipse.swt.SWT.error(SWT.java:3605) at org.eclipse.swt.widgets.Widget.error(Widget.java:441) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:334) at org.eclipse.swt.widgets.Composite.getChildren(Composite.java:410) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.showBreadcrumb(JavaEditor.java:1853) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.handlePreferenceStoreChanged(JavaEditor.java:2755) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.handlePreferenceStoreChanged(CompilationUnitEditor.java:1567) at org.eclipse.ui.texteditor.AbstractTextEditor$PropertyChangeListener.propertyChange(AbstractTextEditor.java:664) at org.eclipse.ui.texteditor.ChainedPreferenceStore.firePropertyChangeEvent(ChainedPreferenceStore.java:164) at org.eclipse.ui.texteditor.ChainedPreferenceStore.handlePropertyChangeEvent(ChainedPreferenceStore.java:431) at org.eclipse.ui.texteditor.ChainedPreferenceStore.access$0(ChainedPreferenceStore.java:408) at org.eclipse.ui.texteditor.ChainedPreferenceStore$PropertyChangeListener.propertyChange(ChainedPreferenceStore.java:69) at org.eclipse.ui.preferences.ScopedPreferenceStore$3.run(ScopedPreferenceStore.java:376) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.preferences.ScopedPreferenceStore.firePropertyChangeEvent(ScopedPreferenceStore.java:373) at org.eclipse.ui.preferences.ScopedPreferenceStore.setValue(ScopedPreferenceStore.java:819) at org.eclipse.jdt.internal.ui.javaeditor.ToggleBreadcrumbAction.run(ToggleBreadcrumbAction.java:51) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:229) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:234) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3758) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3369) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:564) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1251) at org.eclipse.equinox.launcher.Main.main(Main.java:1227) at org.eclipse.core.launcher.Main.main(Main.java:30) | verified fixed | f4ecc65 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-22T14:36:45Z" | "2008-01-22T13:53:20Z" |
216,107 | Bug 216107 [breadcrumb] Breadcrumb should be deactivated if element opened in other editor | I20080115-1740 1. Open another CU through the breadcrumb 2. In the new editor open a member from the CU you came from Is: the member is not shown in the breadcrumb, the breadcrumb is still active Should: the member should be selected, the breadcrumb shows the member and the focus is in the text editor | resolved fixed | 8d09414 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-22T10:14:30Z" | "2008-01-22T11:06:40Z" |
215,831 | Bug 215831 [breadcrumb][preferences] add preference to Java > Editor page | We need to add a preference to Java > Editor page which allows to toggle the state (similar to show segmented mode). This allows users to find it in case they have the action set disabled. We also need to add 'breadcrumb' pref keyword. | resolved fixed | 01c4c5f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-22T09:44:00Z" | "2008-01-18T15:26:40Z" |
216,095 | Bug 216095 [breadcrumb] Must not set focus into text widget on reveal element | I20080115-1740 1. Select a package in the breadcrumb 2. press right arrow until you reach a leaf Is: when moving from parent of leaf to leaf actions in the toolbar flicker, it also takes a while move to leaf Should: not flicker, be faster Reason is that the leaf is revealed and while doing so the focus is set into to text widget resulting in retargeting all the actions. | resolved fixed | 74e784e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-22T09:35:01Z" | "2008-01-22T08:20:00Z" |
215,810 | Bug 215810 [breadcrumb] Allow to move back to editor via key binding | We should reuse the 'Show in Breadcrumb' action / key binding for this (but with different label). | resolved fixed | 1f5de7b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicJavaEditorActionContributor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumbActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ShowInBreadcrumbAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T16:01:06Z" | "2008-01-18T15:26:40Z" |
215,898 | Bug 215898 [breadcrumb] Method signature should be truncated | I think the breadcrumbs should treat method signatures like how the 'Outline' view treats it by only showing the parameter types and both the parameter types and the parameter names. | resolved fixed | 6b4bb47 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T14:32:46Z" | "2008-01-20T00:46:40Z" |
215,958 | Bug 215958 [breadcrumb] editor sets input while breadcrumb is active | I20080115-1740 1. Open a CU 2. In the breadcrumb select .project file Is: .project file shows up, then the input for the breadcrumb is set to the editors selection and the selected .project file is gone Should: not change the input 3. Select .project file again Is: now it stays strange | resolved fixed | f3c445b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T12:14:41Z" | "2008-01-21T10:06:40Z" |
215,965 | Bug 215965 [breadcrumb] Activating editor should set focus into breadcrumb if it was the focus component | I20080115-1740 1. Set focus into breadcrumb 2. Switch to another view 3. Switch back to editor Is: Focus is in text widget Should: Focus is in breadcrumb | resolved fixed | c9d2459 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OccurrencesSearchMenuAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/SurroundWithTemplateMenuAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditorActionContributor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ShowInBreadcrumbAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/IBreadcrumb.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/RefactorActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T12:04:11Z" | "2008-01-21T10:06:40Z" |
215,448 | Bug 215448 New working set doesn't appear in Working Set List | Newly created working set doesn't appear in Working Set List. To see it you must reopen Select Working Set dialog. | resolved fixed | 0f8e506 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/AbstractWorkingSetWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T10:26:15Z" | "2008-01-16T05:06:40Z" |
215,651 | Bug 215651 [breadcrumb] strange behavior when a resource is selected | I like the fact that I can select a resource. However, currently I see strange behavior like missing twisties. | resolved fixed | 8b80765 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T09:52:11Z" | "2008-01-17T14:26:40Z" |
215,655 | Bug 215655 [breadcrumb] don't open last element automatically | The current strategy to open the last element automatically is confusing for the user (me ;-). | resolved fixed | 25ca086 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-21T09:18:10Z" | "2008-01-17T14:26:40Z" |
215,656 | Bug 215656 [breadcrumb] border not good on WindowsXP classic | The border of the list viewers don't look good on WindowsXP classic | resolved fixed | 228bfd8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-18T16:51:00Z" | "2008-01-17T14:26:40Z" |
215,185 | Bug 215185 [content assist] Enum: Auto-generated constructor has wrong visibility | Build ID: I20071213-1700 Steps To Reproduce: 1. Create new Enum 2. Use Auto-Completion to create a default constructor 3. The Constructor will be marked as a "Illegal modifier for the enum constructor; only private is permitted" More information: | resolved fixed | 7510ad6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodDeclarationCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-14T11:31:01Z" | "2008-01-14T11:26:40Z" |
212,635 | Bug 212635 support "Link with Editor" command | null | resolved fixed | 8ad1eac | ["org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/AbstractToggleLinkingAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesSearchResultPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-11T12:09:01Z" | "2007-12-11T19:06:40Z" |
214,854 | Bug 214854 [implementation] Streams not being closed in Javadoc views | null | resolved fixed | 485c289 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractJavaEditorTextHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-10T10:47:55Z" | "2008-01-10T04:40:00Z" |
213,272 | Bug 213272 JUnit result comparison does not use compare text font | null | resolved fixed | 33c1782 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/CompareResultDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-08T14:04:37Z" | "2007-12-18T06:40:00Z" |
213,488 | Bug 213488 [inline] Inlining outer method into anonymous class breaks control flow. | Build ID: M20070921-1145 Steps To Reproduce: Inlining method foo() should introduce braces around the else clause, but wrongly doesn't. ----------------------- Bug.java ------------------ class Bug { Object field=new Object(){ { if(0<hashCode()) ; else foo(); } }; void foo(){ toString(); toString(); } } | resolved fixed | f1fbf77 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestFieldInitializerAnonymous.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_out/TestFieldInitializerAnonymous.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-08T09:52:36Z" | "2007-12-19T16:00:00Z" |
214,340 | Bug 214340 [clean up] Bad enhanced for-loop for arrays which are fields | Build ID: M20071023-1652 Steps To Reproduce: 1. Create new class Foo as: class Foo { int[] array = new int[3]; boolean same(Foo that) { for ( int i = 0; i < array.length; i++ ) { if ( this.array[i] != that.array[i] ) return false; } return true; } static boolean same(Foo one, Foo two) { for ( int i = 0; i < one.array.length; i++ ) { if ( one.array[i] != two.array[i] ) return false; } return true; } } 2. Applying Clean Up action "Convert for loops to enhanced" produces the following code: class Foo { int[] array = new int[3]; boolean same(Foo that) { for ( int element : array ) { if ( element != element ) return false; } return true; } static boolean same(Foo one, Foo two) { for ( int element : one.array ) { if ( element != element ) return false; } return true; } } 3. This is clearly wrong as the comparison between different objects turns into self-comparison. More information: | verified fixed | 639d4f4 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertForLoopQuickFixTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-08T09:27:24Z" | "2008-01-04T12:33:20Z" |
213,995 | Bug 213995 [clean up] Clean up not adding final to inner class method parameters | Build ID: 3.3.1.1 Steps To Reproduce: 1.Run clean up on sample code 2.Note that ActionEvent ev has no final keyword More information: // Sample code: // ************************************************** import java.awt.event.*; import junit.framework.TestCase; public class TestCleanup extends TestCase { public void testSetupButtonListeners() { final ActionListener cancelButtonListener = new ActionListener() { public void actionPerformed(ActionEvent ev) {} }; final ActionListener okButtonListener = new ActionListener() { public void actionPerformed(ActionEvent ev) {} }; final ActionListener searchButtonListener = new ActionListener() { public void actionPerformed(ActionEvent ev) {} }; final ActionListener tablePanelListener = new ActionListener() { public void actionPerformed(ActionEvent ev) {} }; } } | resolved fixed | 9a058bc | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpStressTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/VariableDeclarationFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-08T08:30:47Z" | "2007-12-28T22:13:20Z" |
213,605 | Bug 213605 [JUnit] LegacyTestRunListenerTest fails | M20071219-0800 See attached test results. | verified fixed | 14c89d5 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/AbstractTestRunListenerTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/LegacyTestRunListener.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2008-01-07T13:27:11Z" | "2007-12-20T17:00:00Z" |
165,294 | Bug 165294 [misc] Annotation model of Java editor should respect annotations from underlying file buffer annotation model | 3.3 M3 Currently, the Java editor uses its own CompilationUnitAnnotationModel which inherits from ResourceMarkerAnnotationModel. This annotation model has no connection to the annotation model of the underlying file buffer. This makes it hard to populate a Java editor with annotations that need to be updated on document changes. Ideally, this should be possible to set up during file buffer creating and disposal events. We should investigate whether the CompilationUnitAnnotationModel could delegate to the file buffer annotation model rather than inherit from a resource marker annotation model. | resolved fixed | e230df9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-20T16:33:17Z" | "2006-11-21T09:06:40Z" |
212,544 | Bug 212544 [working sets] page should add selected items | I20071211-0010 1. select some files in the Package Explorer 2. File > New > Java Working Set ==> selected files aren't added I would expect that I can simply enter a name and click 'Finish' | resolved fixed | b3f7667 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-19T16:57:22Z" | "2007-12-11T13:33:20Z" |
212,545 | Bug 212545 [working sets] should use full path | I20071211-0010 1. File > New > Java Working Set 2. select the source folder 'src' of a project and add it 3. select the source folder 'src' of another project and add it ==> you get this on the right side: src src ==> no clue from which project | resolved fixed | 18498c4 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-19T16:41:56Z" | "2007-12-11T13:33:20Z" |
197,768 | Bug 197768 [reconciling] Bug with reconciler that has no progress monitor | Build ID: I20070621-1340 Steps To Reproduce: It is hard to reproduce as it deals with multi-threading. But i can reproduce it. It only happens with non incremental reconcilers. In some particular cases (that i will describe), a change made in the document is omitted and the process(r) method is never called. I put here the *simplified* code (mainly removed the synchronized blocks) of the background thread run method (in AbstractReconciler): 1 : while(!canceled) 2 : { 3 : 4 : fDirtyRegionQueue.wait(fDelay); 5 : //... 6 : if (!isDirty()) 7 : continue; 8 : //... 9 : 10: r= fDirtyRegionQueue.removeNextDirtyRegion(); 11: 12: fIsActive= true; 13: process(r); 14: if (0 == fDirtyRegionQueue.getSize()) { 15: fIsDirty== false; 16: } 17: 18: fIsActive= false; 19: 20: }//end of while The important thing to notice is that, if your reconciler is set as non incremental, that no dirty region are added to the dirtyRegionQueue, it is always empty, thus the following test is always true : *0 == fDirtyRegionQueue.getSize()* That means that the dirty field is always set to false after a process() call. Remember that when the document is changed, the dirty field is set to true. Imagine then that just after the *process(r)* method call (line 13), a document event is fired, then dirty is set to true (by the UI thread). *But* as the queue is always empty, dirty is set to false just after(line 15). Then the next time, when the thread will start again, it will not pass the *if (!isDirty())* test (line: 6) and the model will not be reconciled. NB: with incremental reconcilers it works because fDirtyRegionQueue.getSize() >0 . More information: I think the fReset field can be used to fix the problem. In the scenario i describe the fIsDirty field is set to false (although the text has changed) *but* the fReset field is still true! This patch should fix the problem, in v1.34 replace lines 184 to 192 with : synchronized (this) { if (!fIsDirty && !fReset) continue; if (fReset) { fReset = false; continue; } } | resolved fixed | ac83b28 | ["org.eclipse.jdt.ui.examples.javafamily/src/org/eclipse/jdt/internal/ui/examples/jspeditor/JspSourceViewerConfiguration.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertiesFileSourceViewerConfiguration.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-18T10:22:42Z" | "2007-07-25T10:40:00Z" |
213,248 | Bug 213248 [clean up] MalformedTreeException on save | null | verified fixed | c263738 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/SaveParticipantTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CodeFormatFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-18T09:56:28Z" | "2007-12-18T01:06:40Z" |
212,856 | Bug 212856 [clean up] Remove parentheses is too aggressive also for modulo operator | null | verified fixed | 93d0ff4 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ExpressionsFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-14T12:55:36Z" | "2007-12-13T10:00:00Z" |
99,358 | Bug 99358 [code assist] NPE in AnonymousTypeCompletionProposal | I20050610-0010 public class Local { public void bar() { class LocalClass { } LocalClass l= new LocalClass(<code assist>) } } - open <code assist> and select anonymous class observe: NPE This is also in 3.0.2. The porblem in the fDeclaringType is null since the method getDeclaringType doesn't consider local types. Not critical for 3.1 since anonymous class of method local types are very unlikely. Only problem is a log entry. Thread [main] (Suspended (exception NullPointerException)) AnonymousTypeCompletionProposal.updateReplacementString(IDocument, char, int, ImportsStructure) line: 270 AnonymousTypeCompletionProposal(JavaTypeCompletionProposal).apply(IDocument, char, int) line: 95 AnonymousTypeCompletionProposal(JavaCompletionProposal).apply(ITextViewer, char, int, int) line: 554 CompletionProposalPopup.insertProposal(ICompletionProposal, char, int, int) line: 452 CompletionProposalPopup.selectProposalWithMask(int) line: 399 CompletionProposalPopup.verifyKey(VerifyEvent) line: 822 ContentAssistant$InternalListener.verifyKey(VerifyEvent) line: 630 TextViewer$VerifyKeyListenersManager.verifyKey(VerifyEvent) line: 415 StyledTextListener.handleEvent(Event) line: 55 EventTable.sendEvent(Event) line: 66 StyledText(Widget).sendEvent(Event) line: 844 StyledText(Widget).sendEvent(int, Event, boolean) line: 868 StyledText(Widget).sendEvent(int, Event) line: 853 StyledText(Widget).notifyListeners(int, Event) line: 661 StyledText.handleKeyDown(Event) line: 5133 StyledText$7.handleEvent(Event) line: 4868 EventTable.sendEvent(Event) line: 66 StyledText(Widget).sendEvent(Event) line: 844 StyledText(Widget).sendEvent(int, Event, boolean) line: 868 StyledText(Widget).sendEvent(int, Event) line: 853 StyledText(Widget).sendKeyEvent(int, int, int, int, Event) line: 881 StyledText(Widget).sendKeyEvent(int, int, int, int) line: 877 StyledText(Widget).wmChar(int, int, int) line: 1184 StyledText(Control).WM_CHAR(int, int) line: 3134 StyledText(Control).windowProc(int, int, int, int) line: 3037 Display.windowProc(int, int, int, int) line: 3682 OS.DispatchMessageW(MSG) line: not available [native method] OS.DispatchMessage(MSG) line: 1654 Display.readAndDispatch() line: 2689 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1716 Workbench.runUI() line: 1680 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 365 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 143 IDEApplication.run(Object) line: 103 PlatformActivator$1.run(Object) line: 226 EclipseStarter.run(Object) line: 376 EclipseStarter.run(String[], Runnable) line: 163 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 585 Main.invokeFramework(String[], URL[]) line: 334 Main.basicRun(String[]) line: 278 Main.run(String[]) line: 973 Main.main(String[]) line: 948 | resolved fixed | 3b2a724 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalCollector.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-14T12:10:17Z" | "2005-06-10T13:26:40Z" |
212,201 | Bug 212201 [JUnit] NPE trying to run some tests | Using eclipse.buildId=I20071204-1547 java.version=1.6.0_10-ea java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=fr_CA Framework arguments: -showlocation Command-line arguments: -os win32 -ws win32 -arch x86 -debug -consolelog -console -showlocation I got this exception trying to run some tests. I don't know exactly what I have done to get it, but hopefully the stack trace will be helpful enough to know what is going on. java.lang.NullPointerException at org.eclipse.jdt.junit.launcher.JUnitLaunchConfigurationDelegate.collectExecutionArguments(JUnitLaunchConfigurationDelegate.java:324) at org.eclipse.jdt.junit.launcher.JUnitLaunchConfigurationDelegate.launch(JUnitLaunchConfigurationDelegate.java:144) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:764) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:614) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:827) at org.eclipse.debug.internal.ui.DebugUIPlugin$7.run(DebugUIPlugin.java:1030) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) | resolved fixed | 206af0a | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationDelegate.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationDelegate.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-14T10:57:12Z" | "2007-12-06T22:26:40Z" |
212,573 | Bug 212573 [search] Occurrence search should honour link to editor or use another concept | I20071211-0010 People who use 'Link With Editor' are used to the fact that the view is tracking the active editor. Currently the occurrence search breaks this concept in the case where the new active editor's selection doesn't resolve to a Java element. We should either clear the view or use a different concept similar to our info views which track the selection. | verified fixed | f532c60 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesSearchResultPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-13T12:08:58Z" | "2007-12-11T16:20:00Z" |
212,734 | Bug 212734 [jar exporter] NPE when saying 'No' to replace confirmation dialog | I20071212-0010 - Export > JAR File - try to export to an existing jar - click 'No' in the 'Confirm Replace' dialog => error dialog and log entry: Error Wed Dec 12 12:48:25 CET 2007 Internal Error java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:388) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:934) at org.eclipse.jdt.internal.ui.jarpackager.JarPackageWizard.executeExportOperation(JarPackageWizard.java:160) at org.eclipse.jdt.internal.ui.jarpackager.JarPackageWizard.performFinish(JarPackageWizard.java:260) at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:742) at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:373) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:623) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3750) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3361) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.handlers.WizardHandler$Export.executeHandler(WizardHandler.java:103) at org.eclipse.ui.internal.handlers.WizardHandler.execute(WizardHandler.java:280) at org.eclipse.ui.internal.handlers.HandlerProxy.execute(HandlerProxy.java:240) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:475) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:470) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:165) at org.eclipse.ui.internal.handlers.SlaveHandlerService.executeCommand(SlaveHandlerService.java:247) at org.eclipse.ui.internal.actions.CommandAction.runWithEvent(CommandAction.java:157) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:410) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3750) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3361) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2381) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2345) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2211) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:473) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:468) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:561) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:501) at org.eclipse.equinox.launcher.Main.run(Main.java:1239) at org.eclipse.equinox.launcher.Main.main(Main.java:1215) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.jarpackager.PlainJarBuilder.close(PlainJarBuilder.java:82) at org.eclipse.jdt.internal.ui.jarpackager.JarFileExportOperation.singleRun(JarFileExportOperation.java:906) at org.eclipse.jdt.internal.ui.jarpackager.JarFileExportOperation.execute(JarFileExportOperation.java:870) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:104) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:116) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:119) Root exception: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.jarpackager.PlainJarBuilder.close(PlainJarBuilder.java:82) at org.eclipse.jdt.internal.ui.jarpackager.JarFileExportOperation.singleRun(JarFileExportOperation.java:906) at org.eclipse.jdt.internal.ui.jarpackager.JarFileExportOperation.execute(JarFileExportOperation.java:870) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:104) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:116) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:119) | resolved fixed | 71b964f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/PlainJarBuilder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-12T13:16:12Z" | "2007-12-12T11:46:40Z" |
212,554 | Bug 212554 [jar exporter] runnable JAR: UI nitpicking | I20071211-0010 - Combos need setVisibleItemCount(20) - Better copyright warning message: "This operation repacks referenced libraries. [..]" | resolved fixed | 142ff11 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/AbstractJarDestinationWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackageWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-12T09:42:47Z" | "2007-12-11T13:33:20Z" |
209,221 | Bug 209221 [preferences] JDT/Core has added a new option to find redundant superinterfaces | null | resolved fixed | ff7c683 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-10T15:33:59Z" | "2007-11-08T16:40:00Z" |
212,051 | Bug 212051 [content assist] "Guess argument name" feature picks out-of-scope variables | public void method1() { MyType child = new MyType(); if (someCondition) { MyType parent = child.getParent(); ... } method2<<CARET>> } public void method2(MyType type) { ... } If you have the option to "Guess filled method arguments" turned on and you invoke content assist where the caret is, it guesses "parent" as the first argument choice, even though it's out-of-scope and hence not valid. | resolved fixed | c169506 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ParameterGuesser.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-10T13:38:07Z" | "2007-12-05T18:40:00Z" |
106,691 | Bug 106691 [templates] Code Assist ignores prefered name of exception variable | I have changed the "Exception variable name in catch blocks" to "ex" in the global preferences, under Window->Preferences->Java->CodeStyle. But this does not seam to function when I use code assist to create try-catch blocks. I tried out two scenarios: 1. Begin typing "tr" and then use code assist to expand it to a try-catch block. 2. Write a statement which is able to throw an Exception (eg. "throw new Exception()"), and wait for the report of an error ("uncaught exception Exception"). I then use code assist to wrap this statement with a try-catch block. In both cases, neither the presented code assist choice, nor the resulting try-catch block shows my prefered variable name "ex", but the old default value "e". | resolved fixed | a50ef5e | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/ExceptionVariableNameResolver.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/JavaContext.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-10T13:13:15Z" | "2005-08-10T18:53:20Z" |
212,388 | Bug 212388 [clean up] CleanUpPerfTests are measuring too much | I20071204-1547 startMeasuring is called before joinBackgroundActivities and stop is called after undo. This may also the reason why most of this tests are yellow. | resolved fixed | 6ab99d1 | ["org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/CleanUpPerfTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-10T11:42:58Z" | "2007-12-10T12:33:20Z" |
212,263 | Bug 212263 [dnd] NPE if selection of SelectionTransfer is null or not a StructuredSelection | I've written editor that has drag source with LocalSelectionTransfer. I have not set selection to the transfer and got this NPE while dragging element from my editor to the package explorer. I guess that we should perform safety check in drop target adapter. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.reorg.ReorgUtils.getJavaElements(ReorgUtils.java:262) at org.eclipse.jdt.internal.ui.packageview.SelectionTransferDropAdapter.internalDetermineOperation(SelectionTransferDropAdapter.java:144) at org.eclipse.jdt.internal.ui.packageview.SelectionTransferDropAdapter.determineOperation(SelectionTransferDropAdapter.java:124) at org.eclipse.jdt.internal.ui.dnd.JdtViewerDropAdapter.doDropValidation(JdtViewerDropAdapter.java:184) at org.eclipse.jdt.internal.ui.dnd.JdtViewerDropAdapter.dragOver(JdtViewerDropAdapter.java:230) at org.eclipse.jface.util.DelegatingDropAdapter$2.run(DelegatingDropAdapter.java:191) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199) at org.eclipse.jface.util.DelegatingDropAdapter.dragOver(DelegatingDropAdapter.java:189) at org.eclipse.swt.dnd.DNDListener.handleEvent(DNDListener.java:80) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1521) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1545) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1530) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1321) at org.eclipse.swt.dnd.DropTarget.dragTrackingHandler(DropTarget.java:472) at org.eclipse.swt.dnd.DropTarget.DragTrackingHandler(DropTarget.java:257) at org.eclipse.swt.internal.carbon.OS.TrackDrag(Native Method) at org.eclipse.swt.dnd.DragSource.drag(DragSource.java:347) at org.eclipse.swt.dnd.DragSource$1.handleEvent(DragSource.java:163) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1521) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1545) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1530) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1321) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3401) at org.eclipse.swt.widgets.Control.sendTrackEvents(Control.java:2877) at org.eclipse.swt.widgets.Control.actionProc(Control.java:116) at org.eclipse.swt.widgets.Display.actionProc(Display.java:355) at org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(Native Method) at org.eclipse.swt.widgets.Widget.kEventControlTrack(Widget.java:1072) at org.eclipse.swt.widgets.Control.kEventControlTrack(Control.java:1992) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:368) at org.eclipse.swt.widgets.Display.controlProc(Display.java:839) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2983) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2395) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2359) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2225) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:468) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:463) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:515) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:455) at org.eclipse.equinox.launcher.Main.run(Main.java:1193) at org.eclipse.equinox.launcher.Main.main(Main.java:1169) | resolved fixed | 92ea1e7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/JavaDropAdapterAssistant.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/SelectionTransferDropAdapter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-10T09:34:00Z" | "2007-12-07T15:06:40Z" |
211,045 | Bug 211045 [jar exporter] program arguments are ignored | 20071127 - create a project with JUnit 3.8.1 code (from the smoke test) - create a Java application launch configuration for 'junit.textui.TestRunner' add 'junit.samples.VectorTest' as program argument on the second tab page - create a runnable JAR from this launch configuration - run the created JAR The command says that arguments must be specified. It seems that the program arguments 'junit.samples.VectorTest' are not used. | resolved fixed | 6478b1a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackageWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackagerMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-10T09:18:24Z" | "2007-11-27T10:40:00Z" |
210,921 | Bug 210921 [JUnit] RunListener testRunFinished not fired in Eclipse | Build ID: 3.3.1.1 Steps To Reproduce: I have written a custom Runner which can be used by @Runwith() In the runner I attach a runlistener. In that runlistener the 'testRunFinished' method is not called during a junit run form eclipse. public static void main(String[] args) { JUnitCore core= new JUnitCore(); core.run(TestSuite.class); } When you do it in this way at the end the 'testRunFinished' is called, but running junit tests from Eclipse it is not called. I think this event is fired against the initial list of listeners, but I add this listener during the run, so it is not part of the initial listeners. I will attach some test files More information: | resolved fixed | bed7cba | ["org.eclipse.jdt.junit4.runtime/src/org/eclipse/jdt/internal/junit4/runner/JUnit4TestReference.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-07T15:47:33Z" | "2007-11-26T12:26:40Z" |
211,791 | Bug 211791 [JUnit] JUnit launch shortcut enhancements | null | resolved fixed | 75454a6 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/launcher/JUnitLaunchShortcut.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-06T17:16:20Z" | "2007-12-03T16:40:00Z" |
208,025 | Bug 208025 [JUnit] JUnit resource mapping incorrect for containers | 3.4 When a container is specified for running tests (i.e. package or source folder), the resource mapping for the launch configuration is incorrectly mapped to the project (instead of the package or source folder). The problem appears to be in JUnitMigrationDelegate. Will attach patch. | resolved fixed | 063994d | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/launcher/JUnitMigrationDelegate.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMigrationDelegate.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-06T17:13:52Z" | "2007-10-30T16:00:00Z" |
133,191 | Bug 133191 [preferences] Make User Library use/support relative paths | Our project uses a whole bunch of different libraries. With this we have two problems: 1. it makes it harder than necessary for new developers in our team to setup their Eclipse environment since they need to add each individual library manually 2. each time a jar file is upgraded, removed or added each developer has to adjust his/hers project's Java Build Path -> Libraries accordingly Rejected solutions: 1. We cannot share .project and .classpath since our directory structure is not the exact same 2. Maven and the Maven plugin for Eclipse could do the job for us but a) as of now it's to big of a step to take b) the plugin is not fully functional and c) we have stuff that Maven currently does not handle So, we came to think of using a User Library (Project Properties -> Java Build Path -> Libraries -> Add Library -> User Library) since it can be exported/imported. However, the absolute path is saved for the jar files in the User Library. I would like it to save the path relative to the project root instead, so that we can use the same User Library within our project (as only the project root directory changes). Is this possible to change in some way? | resolved fixed | 91e1ff2 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/UserLibraryPreferencePage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-06T17:09:21Z" | "2006-03-24T19:53:20Z" |
212,035 | Bug 212035 [search] UI for finegrained search options | null | resolved fixed | b6b79c1 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchQuery.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MatchLocations.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-05T17:34:08Z" | "2007-12-05T18:40:00Z" |
211,808 | Bug 211808 [quick fix] Exception while adding unimplemented methods | I20071127-0800 When I try to add unimplemented methods using a quick fix, I get the following stack trace. org.eclipse.core.runtime.CoreException: The fix 'Add unimplemented methods' did generate a null change. at org.eclipse.jdt.internal.corext.fix.CompilationUnitRewriteOperationsFix.createChange(CompilationUnitRewriteOperationsFix.java:104) at org.eclipse.jdt.internal.ui.text.correction.proposals.FixCorrectionProposal.createTextChange(FixCorrectionProposal.java:151) at org.eclipse.jdt.internal.ui.text.correction.proposals.CUCorrectionProposal.createChange(CUCorrectionProposal.java:478) at org.eclipse.jdt.internal.ui.text.correction.proposals.ChangeCorrectionProposal.getChange(ChangeCorrectionProposal.java:229) at org.eclipse.jdt.internal.ui.text.correction.proposals.ChangeCorrectionProposal.performChange(ChangeCorrectionProposal.java:105) at org.eclipse.jdt.internal.ui.text.correction.proposals.CUCorrectionProposal.performChange(CUCorrectionProposal.java:344) at org.eclipse.jdt.internal.ui.text.correction.proposals.CUCorrectionProposal.apply(CUCorrectionProposal.java:322) at org.eclipse.jdt.internal.ui.text.correction.proposals.FixCorrectionProposal.apply(FixCorrectionProposal.java:183) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:806) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertSelectedProposalWithMask(CompletionProposalPopup.java:757) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$27(CompletionProposalPopup.java:753) at org.eclipse.jface.text.contentassist.CompletionProposalPopup$5.widgetDefaultSelected(CompletionProposalPopup.java:574) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:112) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3750) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3361) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2393) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2357) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2223) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:516) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:456) at org.eclipse.equinox.launcher.Main.run(Main.java:1194) | resolved fixed | 53af338 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/AddUnimplementedMethodsOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/UnimplementedCodeFix.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/proposals/FixCorrectionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-04T09:29:16Z" | "2007-12-03T19:26:40Z" |
204,914 | Bug 204914 [misc] Display values for constant fields in the Javadoc view | null | resolved fixed | 2f74568 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/AbstractInfoView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/InfoViewMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-12-03T13:25:12Z" | "2007-09-28T14:33:20Z" |
23,008 | Bug 23008 [content assist][key bindings] Emacs bindings not working on content assist and quick fix | The choice in the popup with alternatives is not possible to move with emacs keys ctrl-p/n, just the down/up arrow keys. This is possible in jbuilder with emacs emulation. | resolved fixed | 3d1a578 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-30T15:38:11Z" | "2002-08-29T22:26:40Z" |
211,484 | Bug 211484 [rename] @category should be colored in colored labels | null | resolved fixed | 066fcb7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoredJavaElementLabels.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-30T09:30:18Z" | "2007-11-29T18:13:20Z" |
165,063 | Bug 165063 [reorg] Two confirmation dialogs displayed when using model provider in Eclipse | Hi, My plugin uses the extension point org.eclipse.core.resources.modelProviders to provider a model provider that Eclipse will call. That is, eclipse call my model provider's method 'public IStatus validateChange(IResourceDelta delta, IProgressMonitor monitor)'. My validateChange(...) return an IStatus of IStatus.WARNING that causes Eclipse to put up a warning (Yes/No) dialog. This dialog is display by the method IDE.promptToConfirm(...). Upon clicking on "Yes", there is another confirmation dialog displayed. There should only be one? no? | resolved fixed | 5524b62 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/JavaCopyProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-29T12:20:22Z" | "2006-11-18T00:33:20Z" |
105,738 | Bug 105738 [painting] Mark Occurrences: sporadic random highlights when editing javadoc | Mark Occurrences sometimes highlights random text while I am typing in a javadoc comment. I will attach a GIF image for an example. In this example, I was typing on the second line of the comment (the line ending in "thi"), and the highlights suddenly appeared. I cannot come up with any rationale for the areas that are highlighted; in particular, I had only changed a couple lines in this file, so it's not like it's highlighting tokens in a slightly out-of-date version of the file. Note that the highlights include whitespace, It is not reproducible, not even immediately after it happens. That is, if I am typing along and the random highlights suddenly appear, and I delete and then re-enter a few characters, they will not reappear. I have not been able to figure out a reliable repro case, but I'm not the only person on my team that is affected by this. Will add info if more becomes available. | resolved fixed | 61d6bf8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-28T17:30:30Z" | "2005-08-01T21:00:00Z" |
204,682 | Bug 204682 [JUnit] Any class that references org.junit.Test is run as a test | Build ID: I20070921-0919 Steps To Reproduce: If you place the following class in a package, and run all tests in the package, this class will also get picked up, and cause an error. This can make it challenging when trying to write custom JUnit runners. Does core provide a way to search for annotation classes only when they're actually used as annotations? package bug; import org.junit.Test; public class ReferencesTest { Test getTest() { return null; } } More information: | verified fixed | a8a409c | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/launcher/JUnit4TestFinder.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnit4TestFinder.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/JUnit4TestFinderTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-28T14:07:59Z" | "2007-09-26T12:33:20Z" |
105,651 | Bug 105651 [quick fix] Create getter for unused field | Hi all, A nice to have would be 'quick fix' to automatiically generate a getter when a field is, currently unused. public class MyClass { private int field; // unused field } click on lightbulb, select "Generate getter" would result in public class MyClass { private int field; // warning gone public int getField() { return field; } } ----- *Thanks* all for the great work. Eclipse gets better and better. I have to use an old version (WSAD) at work and boy do I notice the difference! | resolved fixed | 7c29604 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AdvancedQuickAssistProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/GetterSetterCorrectionSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-28T13:25:45Z" | "2005-08-01T07:06:40Z" |
210,865 | Bug 210865 [search] 'Occurrences in File' does not work in Outline | HEAD Occurrences in File (Ctrl=Shift+U) does not work in Outline any more. | resolved fixed | 61fbabd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OccurrencesSearchMenuAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-27T09:45:53Z" | "2007-11-25T19:46:40Z" |
210,940 | Bug 210940 [open type] Open type is slow | I20071120-1300 1. Start self-hosting workspace (with all jdt.core projects as source) 2. Ctrl+Shift+T 3. Type A Observe: You see 'Searching x%' for several seconds (maybe 30s) | resolved fixed | 2e7b82d | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-26T17:26:20Z" | "2007-11-26T15:13:20Z" |
210,909 | Bug 210909 [save actions] Remove workaround for bug 208541 | null | resolved fixed | 937e0f5 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/SaveParticipantTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CodeFormatFix.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/EditorUtility.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-26T16:28:10Z" | "2007-11-26T09:40:00Z" |
83,258 | Bug 83258 [jar exporter] Deploy java application as executable jar | null | resolved fixed | 9d00862 | ["org.eclipse.jdt.ui.tests/test", "plugin/org/eclipse/jdt/testplugin/JavaProjectHelper.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/AutomatedSuite.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/jarexport/FatJarExportTests.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/jarexport/JarExportTests.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPluginImages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/AbstractJarDestinationWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarBuilder.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarFileExportOperation.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageReader.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWriter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackagerMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackagerUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/PlainJarBuilder.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarBuilder.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarManifestProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackageWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackageWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackagerMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/JarWriter4.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/jarpackager/IJarBuilder.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/jarpackager/JarPackageData.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/jarpackager/JarWriter3.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-26T13:57:10Z" | "2005-01-19T21:26:40Z" |
210,758 | Bug 210758 Improve LeakTestCase performance by checking multiple classes | HEAD LeakTestCase performance is very bad if tests assert the instance count of multiple classes in sequence (e.g. TextViewerUndoManagerLeakTest.testLeak()). LeakTestCase.assertInstanceCount(Class, int) should be expanded to allow checking instance counts for more than one classes at once during the same memory traversal. | resolved fixed | 441b3ed | ["org.eclipse.jdt.ui.tests/leaks/org/eclipse/jdt/ui/leaktest/LeakTestCase.java", "org.eclipse.jdt.ui.tests/leaks/org/eclipse/jdt/ui/tests/leaks/TextViewerUndoManagerLeakTest.java", "org.eclipse.jdt.ui.tests/leaks/org/eclipse/jdt/ui/tests/leaks/UndoManagerLeakTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-26T13:27:52Z" | "2007-11-23T15:00:00Z" |
210,918 | Bug 210918 [rulers] show line number in overview ruler | I20071120-1300. We could show the line number when hovering over an Overview ruler location without an annotation. | resolved fixed | 0a6c7be | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertiesFileSourceViewerConfiguration.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/HTMLAnnotationHover.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-26T13:19:52Z" | "2007-11-26T12:26:40Z" |
210,883 | Bug 210883 Link with editor fails for Java Projects | There is an issue with the Java content provider where it is returning an IJavaProject instead of an IProject. Scenario: Create a Java Project and add a few classes, files, etc using the Navigator view. Open the new files using the Navigator view. Open the Project Explorer and press the link with editor button. | resolved fixed | af44c9a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/navigator/JavaNavigatorContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-26T09:40:55Z" | "2007-11-26T01:20:00Z" |
204,289 | Bug 204289 Closing context menu programmatically does not work when shell not active | null | resolved fixed | 313dcbb | ["org.eclipse.jdt.ui.tests/leaks/org/eclipse/jdt/ui/tests/leaks/JavaLeakTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-23T15:14:17Z" | "2007-09-21T15:53:20Z" |
42,066 | Bug 42066 [preferences] "New Template" and "Edit Template" dialogs margin spacing | The spacing at the top, left and right should be the same as the spacing between the OK button and the bottom. | resolved fixed | eff4b59 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/EditTemplateDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-23T13:29:54Z" | "2003-08-26T23:20:00Z" |
209,979 | Bug 209979 Compare Java structure: Ignore White Space only works partially | I20071113-0800. Compare Java structure: Ignore White Space only works partially i.e. some members still show up in the structure even though there are no changes after clicking the 'Ignore White Space...' toolbar button. Test Case: 1. compare org.eclipse.jdt.internal.ui.preferences.SmartTypingConfigurationBlock rev. 1.21 with rev. 1.22 2. click the 'Ignore White Space...' toolbar button ==> createMessage() method is shown even though there are no changes I'm marking this as major because with the new Clean Up on Save (Save Actions) support I have many deletions of unneccessary whitespace which cause lots of noise even when 'Ignore White Space' is enabled. | verified fixed | 63e556c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureCreator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-23T11:38:57Z" | "2007-11-15T15:20:00Z" |
210,644 | Bug 210644 [mark occurrence] Occurrences in File does not work in class files | HEAD Occurrences in File does not work in class files any more (e.g. Object.class). | verified fixed | 8ce1b16 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaTextSelection.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-22T16:51:21Z" | "2007-11-22T11:13:20Z" |
210,616 | Bug 210616 jdt.ui RenameTypeParameterTests#test10() not running anymore | Version: 3.4.0 Build id: I20071120-1300 this jdt.ui test is running OK with v825, but not with HEAD. expected result: package p; class A<T>{ private T f; class B<T>{ static <S> S f(S t) { T s=t; return null; } } } actual result: package p; class A<T>{ private T f; class B<T>{ static <S> S f(S t) { S s=t; return null; } } } | resolved fixed | f79cc2f | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameTypeParameter/test10/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameTypeParameter/test10/out/A.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-22T15:15:31Z" | "2007-11-22T05:40:00Z" |
210,633 | Bug 210633 [JUnit] JUnit view leaks SWT image handle | If you open and close the JUnit view repeatedly while watching with the Windows Task Manager you can see an increasing number of GDI objects. With the Sleak view we detected the image fSuiteOkIcon is responsible for the leak. I have prepared a patch (to follow...) | verified fixed | ac8316c | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitCorePlugin.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/CounterPanel.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTableDisplay.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitPlugin.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-22T11:05:56Z" | "2007-11-22T11:13:20Z" |
70,870 | Bug 70870 [navigation][hovering] Javadoc view cannot find URL with anchor | null | resolved fixed | ef5a775 | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JavaDoc2HTMLTextReaderTester.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDoc2HTMLTextReader.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-21T14:34:20Z" | "2004-07-26T22:13:20Z" |
210,388 | Bug 210388 [search] 'Search > Occurrences in File' broken for non-zero length selections | HEAD 'Search > Occurrences in File' is broken for non-zero length selections (Ctrl+Shift+U shows '<no entries available>'). | resolved fixed | 23c0e58 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindBreakContinueTargetOccurrencesAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindExceptionOccurrencesAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindImplementOccurrencesAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindMethodExitOccurrencesAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindOccurrencesInFileAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-20T18:16:42Z" | "2007-11-20T14:46:40Z" |
210,336 | Bug 210336 [extract local] Extract local variable falsely detects a conflict | package a; public class A { List var = new ArrayList(); } package b; public class B extends a.A { public void doSomething() { new ArrayList().size(); } } In the above snippet, if you try to extract "new ArrayList()" as a local variable "var" in doSomething(), you will be warned that a variable with that name is already present in the visible scope. | resolved fixed | 51e3ff8 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-20T09:47:20Z" | "2007-11-20T06:26:40Z" |
209,505 | Bug 209505 [implementation] Incorrect pair-match determination of searchable partition | Build ID: M20071023-1652 Steps To Reproduce: For a document where the closing element of a matchable pair is the last character in a partition, DefaultCharacterPairMatcher will fail to search the correct partition type -- it will search based on the type of the immediately following partition. More information: In DefaultCharacterPairMatcher#performMatch, the partition to search is determined by: final int adjustedOffset= isForward ? offset - 1 : offset; final String partition= TextUtilities.getContentType(doc, fPartitioning, adjustedOffset, false); where "offset" is the document offset representing the caret position, which will be one after the character offset of the end of the "right" partition to search. The correction is to change the computation of "adjustedOffset" to: final int adjustedOffset = offset - 1; | resolved fixed | 55772ea | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JavaPairMatcherTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2007-11-19T17:06:43Z" | "2007-11-12T15:06:40Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.