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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
99,032 | Bug 99032 Assertation failure in LazyJavaCompletionProposal.setReplacementLength | N20050607-0010 org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.text.Assert.isTrue(Assert.java:189) at org.eclipse.jface.text.Assert.isTrue(Assert.java:174) at org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProposal.setReplacementLength(LazyJavaCompletionProposal.java:428) at org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProposal.apply(LazyJavaCompletionProposal.java:317) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:452) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.verifyKey(CompletionProposalPopup.java:838) at org.eclipse.jface.text.contentassist.ContentAssistant$InternalListener.verifyKey(ContentAssistant.java:630) at org.eclipse.jface.text.TextViewer$VerifyKeyListenersManager.verifyKey(TextViewer.java:415) at org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:55) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:868) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:853) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:661) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5133) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4868) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:868) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:853) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:881) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:877) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1184) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3134) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3037) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3648) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1654) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2655) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1717) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1681) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | verified fixed | 17f36d2 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-09T08:26:45Z" | "2005-06-08T19:46:40Z" |
97,207 | Bug 97207 [refactoring] Infer Generic Type Arguments NullPE with missing bindings | Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class like this: public class Main { public void loadSashWeights() { Hashtable<String, I[]> hash = new Hashtable<String, I[]>(); hash.put("Foo", new int[] { 3 }); } } 2.) Run Refactor > Infer Generic Type Arguments Actual Results: Find the attached Error Log Expected Results: - Regards, Ben | verified fixed | b883bd9 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuMethodAndTypeGeneric02/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuMethodAndTypeGeneric02/out/A.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringCoreMessages.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-09T08:05:00Z" | "2005-05-30T10:46:40Z" |
86,447 | Bug 86447 Infer Type Arguments should respect existing type arguments | public class Z { void foo() { List l= new ArrayList(); bar(l); l.add(new Object()); } void bar(List<String> l) { } } In the following example generify converts the list to List<Object> which produces a compile error. We should leave the code unchanged in this example. | verified fixed | d3e4f57 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuExistingParameterized01/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuExistingParameterized01/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintCreator.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsTCModel.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T18:24:16Z" | "2005-02-24T10:13:20Z" |
98,994 | Bug 98994 [templates][5.0] local collections are not resolved properly | N20050608 - Java5 JRE - resolve the "for - iterate over collection" template in the context below -> no collection is resolved class X { void m(LinkedList list) { for| } } CompilationUnitCompletion.LocalVariable.isCollection checks whether a type implements java.util.Collection. For efficieny reasons, we used to check whether one of the local variable's root interfaces was 'java.util.Collection'. In Java5, Collection is not a root interface any longer and therefore we need to check whether the type hierarchy of the type contains Collection. RC2 candidate as fix is trivial and not fixing it means that the old collection templates do not work for anyone using a Java5 JRE (even when developping 1.4 code). | verified fixed | 3d31fc3 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitCompletion.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T17:31:43Z" | "2005-06-08T17:00:00Z" |
97,306 | Bug 97306 [5.0] Unexspected error in Infer Type Arguments refactoring with varargs [refactoring] | 3.1 RC1 Steps to reproduce: - Invoke Infer Type Argument on attached project -> Instead of showing the cu in the context viewer, the stacktrace of the error could be displayed Attaching project and log | verified fixed | 3f4f15b | ["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuVarargs01/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuVarargs01/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/TypeEnvironment/TestProject/generic/TestStandardAssignments.java", "org.eclipse.jdt.ui.tests.refactoring/resources/TypeEnvironment/TestProject/generic/TestTypeVariableAssignments.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintCreator.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/ArrayType.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T16:15:24Z" | "2005-05-30T16:20:00Z" |
98,918 | Bug 98918 AssertionFailedException with zero-length classpath variable entry | Against N20050608-0010.from20050608_1210 1) Create a java project "b" 2) Context menu on b > Properties > Java Build Path > Libraries 3) Add Variable. Select JUNIT_HOME, click Extend..., select junit.jar 4) Click Edit... 5) Delete all text in the text box, click OK. Now the error below is logged, and no further changes are applied to the build path until the dialog is closed or reopened: org.eclipse.jdt.internal.core.Assert$AssertionFailedException: Assertion failed; Illegal classpath variable path: '', must have at least one segment at org.eclipse.jdt.internal.core.Assert.isTrue(Assert.java:89) at org.eclipse.jdt.core.JavaCore.newVariableEntry(JavaCore.java:3549) at org.eclipse.jdt.internal.ui.wizards.buildpaths.CPListElement.newClasspathEntry(CPListElement.java:171) at org.eclipse.jdt.internal.ui.wizards.buildpaths.CPListElement.getClasspathEntry(CPListElement.java:124) at org.eclipse.jdt.internal.ui.wizards.buildpaths.CPListElement.equals(CPListElement.java:321) at java.util.ArrayList.indexOf(Unknown Source) at java.util.ArrayList.contains(Unknown Source) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage.openVariableSelectionDialog(LibrariesWorkbookPage.java:705) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage.libaryPageCustomButtonPressed(LibrariesWorkbookPage.java:228) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage.access$0(LibrariesWorkbookPage.java:218) at org.eclipse.jdt.internal.ui.wizards.buildpaths.LibrariesWorkbookPage$LibrariesAdapter.customButtonPressed(LibrariesWorkbookPage.java:173) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField.buttonPressed(TreeListDialogField.java:167) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField.doButtonSelected(TreeListDialogField.java:385) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField.access$2(TreeListDialogField.java:381) at org.eclipse.jdt.internal.ui.wizards.dialogfields.TreeListDialogField$2.widgetSelected(TreeListDialogField.java:346) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3055) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2688) at org.eclipse.jface.window.Window.runEventLoop(Window.java:809) at org.eclipse.jface.window.Window.open(Window.java:787) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:157) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3055) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2688) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1717) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1681) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | verified fixed | 4d2ae30 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/EditVariableEntryDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T16:12:09Z" | "2005-06-08T11:26:40Z" |
98,733 | Bug 98733 [templates] probe formatter when applying templates | null | verified fixed | 8711dda | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/JavaFormatter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T13:43:00Z" | "2005-06-07T16:00:00Z" |
95,115 | Bug 95115 Moving generic static method fails to update references | Against I20050513-0010. Project will be attached. Given code: public class Exposer<T> { static <T> Exposer<T> createExposer(Class<T> clazz) { return new Exposer<T>(); } void foo() { createExposer(String.class); createExposer(int.class); } } class Foo { } Move method createExposer to Foo. The references to the method are not updated. | verified fixed | 15a36ac | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ReferenceAnalyzer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T13:33:46Z" | "2005-05-13T13:13:20Z" |
94,698 | Bug 94698 [5.0] Mark inherited members doesn't work for parameterized types | I20050509-2010 public class MyList extends ArrayList<String> implements List<String> { @Override public boolean add(String o) { // TODO Auto-generated method stub return super.add(o); } } Neiter selecting ArrayList nor List marks the method add(String o). However this method overrides the method from ArrayList and implements the one from List. | verified fixed | 062cdfd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ImplementOccurrencesFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T13:08:50Z" | "2005-05-11T14:00:00Z" |
98,893 | Bug 98893 Override/implement methods generating exception | N20050606-0010 Went to an anonymous inner class. Hit alt-shift-s for source menu, and selected override/implement methods. Got an error dialog with the following error: "Show Source Quick Menu" did not complete normally. Please see the log for more information. Found this in my log: java.lang.ClassCastException at org.eclipse.jdt.internal.ui.dialogs.OverrideMethodDialog.<init>(OverrideMethodDialog.java:274) at org.eclipse.jdt.ui.actions.OverrideMethodsAction.run(OverrideMethodsAction.java:194) at org.eclipse.jdt.ui.actions.OverrideMethodsAction.run(OverrideMethodsAction.java:182) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:226) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:198) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2933) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2566) at org.eclipse.jdt.internal.ui.actions.QuickMenuAction.run(QuickMenuAction.java:79) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:182) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.execute(LegacyHandlerWrapper.java:108) at org.eclipse.core.commands.Command.execute(Command.java:311) at org.eclipse.core.commands.ParameterizedCommand.execute(ParameterizedCommand.java:396) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:459) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:781) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:828) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:550) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:493) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:117) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:788) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:868) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:853) at org.eclipse.swt.widgets.Control.traverse(Control.java:2778) at org.eclipse.swt.widgets.Control.translateMnemonic(Control.java:2619) at org.eclipse.swt.widgets.Composite.translateMnemonic(Composite.java:827) at org.eclipse.swt.widgets.Control.translateMnemonic(Control.java:2637) at org.eclipse.swt.widgets.Display.translateMnemonic(Display.java:3365) at org.eclipse.swt.widgets.Display.filterMessage(Display.java:802) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2562) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1717) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1681) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | verified fixed | 19b2980 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedMethodsOperation.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/OverrideMethodDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T12:58:50Z" | "2005-06-08T08:40:00Z" |
95,181 | Bug 95181 [content assist] Regression: Javadoc popup not displayed for constructors | Given: Tracker tracker = new Tracker(<<CONTENT ASSIST>>); The 4 proposals are tracker's two constructors, and 2 anonymous inner class entries. The javadoc for Tracker's constructors only get displayed if I select the anonymous suggestions. I tried other classes and got the same behavior. | verified fixed | 038502c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodProposalInfo.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T12:35:50Z" | "2005-05-13T18:46:40Z" |
96,924 | Bug 96924 [content assist] don't show templates in restricted situations | null | verified fixed | 23b44f0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/contentassist/TemplateProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T12:29:42Z" | "2005-05-27T07:46:40Z" |
97,246 | Bug 97246 Convert to enhanced for misses cases with cast | RC1 The following case is missed: public void testNix() { List list= new ArrayList(); for (Iterator iterator = list.iterator(); iterator.hasNext();) { Object element = iterator.next(); } } | verified fixed | 443e402 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertIterableLoopQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertIterableLoopProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T11:16:49Z" | "2005-05-30T13:33:20Z" |
98,710 | Bug 98710 Filter native library and access restriction attributes on jars in JRE containers | null | verified fixed | 9b88c4a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CPListElement.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T09:47:49Z" | "2005-06-07T16:00:00Z" |
97,936 | Bug 97936 [build path] build path page overwrites changes in classpath | I have plugin which contribute page into the Project Properties Dialog (java project). In this page IJavaProject.setRawClasspath() called for current project. I do the following steps: 1. Open Project Properties Dialog 2. Select Java Build Path page. Do nothing with it. 3. Select "MyPage". 4. Do something which calls setRawClasspath(). (file .classpath updated with new values!) 5. Press OK. Dialog closed. oops! File .classpath updated again with old values. It reproduced with M7 and M6. | verified fixed | 887cd1a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/BuildPathsPropertyPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T09:22:05Z" | "2005-06-01T18:20:00Z" |
98,354 | Bug 98354 [nls tooling] Assertion failure while trying to externalize strings | The normal dialog does not come up at all when source->external strings is clicked. I will attach the uncooperative file (If you need the whole plugin, it is in the WTP project: org.eclipse.jst.server.ui). org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.text.Assert.isTrue(Assert.java:189) at org.eclipse.jface.text.Assert.isTrue(Assert.java:174) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider.getAST(ASTProvider.java:439) at org.eclipse.jdt.internal.corext.refactoring.nls.NLSHint$1.visit(NLSHint.java:163) at org.eclipse.jdt.core.dom.QualifiedName.accept0(QualifiedName.java:166) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChildren(ASTNode.java:2520) at org.eclipse.jdt.core.dom.MethodInvocation.accept0(MethodInvocation.java:244) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChild(ASTNode.java:2497) at org.eclipse.jdt.core.dom.ExpressionStatement.accept0(ExpressionStatement.java:143) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChild(ASTNode.java:2497) at org.eclipse.jdt.core.dom.IfStatement.accept0(IfStatement.java:189) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChildren(ASTNode.java:2520) at org.eclipse.jdt.core.dom.Block.accept0(Block.java:135) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChild(ASTNode.java:2497) at org.eclipse.jdt.core.dom.MethodDeclaration.accept0(MethodDeclaration.java:501) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChildren(ASTNode.java:2520) at org.eclipse.jdt.core.dom.TypeDeclaration.accept0(TypeDeclaration.java:483) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.core.dom.ASTNode.acceptChildren(ASTNode.java:2520) at org.eclipse.jdt.core.dom.CompilationUnit.accept0(CompilationUnit.java:299) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.internal.corext.refactoring.nls.NLSHint.createEclipseNLSLines(NLSHint.java:133) at org.eclipse.jdt.internal.corext.refactoring.nls.NLSHint.<init>(NLSHint.java:81) at org.eclipse.jdt.internal.corext.refactoring.nls.NLSRefactoring.<init>(NLSRefactoring.java:83) at org.eclipse.jdt.internal.corext.refactoring.nls.NLSRefactoring.create(NLSRefactoring.java:103) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction$1.run(ExternalizeStringsAction.java:121) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction.run(ExternalizeStringsAction.java:117) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction.run(ExternalizeStringsAction.java:99) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:226) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:198) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:216) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:228) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2929) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2562) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1694) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1658) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | verified fixed | 764a624 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSHint.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T08:52:11Z" | "2005-06-03T17:33:20Z" |
96,947 | Bug 96947 Bad progress reporting on rename method | null | verified fixed | 7a0380c | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameMethodProcessor.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameVirtualMethodProcessor.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/PerformChangeOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T08:51:14Z" | "2005-05-27T10:33:20Z" |
98,485 | Bug 98485 [refactoring] Extract method: only one change offered in preview pane | Against N20050606-0010. In 3.0, the preview pane for Extract Method offered two changes, which the user might individually turn off: 1) "add new method foo" 2) "substitute statement(s) with call to foo" In 3.1, there appears to be only "add new method foo". To prevent confusion, perhaps the description of the change should be changed to "add new method to foo and substitute statement(s) with call to foo". | verified fixed | 0011f26 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T08:06:53Z" | "2005-06-06T09:26:40Z" |
98,887 | Bug 98887 All types search job shouldn't create images in non UI thread | RC1 Although SWT supports creating images in non UI threads there is a limitation to it on Motif. When no event loop is active this can result in a deadlock. To avoid this the search job should only create the descriptors and the real image should be fetched in the UI thread. | verified fixed | b8b3cbd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeInfoViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-08T08:04:19Z" | "2005-06-08T08:40:00Z" |
98,679 | Bug 98679 [implementation] OperationCanceledException logged when saving externally deleted file | N20050607 (not connected to bug 983279) - no auto-refresh - open Test.java in a Java editor (do not dirty) - externally delete Test.java - return to eclipse -> Msg: file has been deleted - - choose to save - Accept defaults -> Warning: Overwrite File? - press Cancel -> Again: Msg: file has been deleted - choose to save - Again: Accept defaults -> Again: Warning: Overwrite File? - This time press 'Ok' -> get this in the log (everything works, but I should not get the log). !ENTRY org.eclipse.jdt.ui 4 0 2005-06-07 16:14:08.981 !MESSAGE Error in JDT Core during reconcile while saving !STACK 0 org.eclipse.core.runtime.OperationCanceledException at org.eclipse.jdt.internal.core.ReconcileWorkingCopyOperation.executeOperation(ReconcileWorkingCopyOperation.java:49) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:718) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:777) at org.eclipse.jdt.internal.core.CompilationUnit.reconcile(CompilationUnit.java:1081) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitDocumentProvider$2.run(CompilationUnitDocumentProvider.java:930) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1038) at org.eclipse.core.runtime.Platform.run(Platform.java:775) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitDocumentProvider.commitWorkingCopy(CompilationUnitDocumentProvider.java:927) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitDocumentProvider$3.execute(CompilationUnitDocumentProvider.java:1025) at org.eclipse.ui.editors.text.TextFileDocumentProvider$DocumentProviderOperation.run(TextFileDocumentProvider.java:128) at org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation.execute(WorkspaceModifyDelegatingOperation.java:68) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:98) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:110) at org.eclipse.ui.internal.editors.text.WorkspaceOperationRunner.run(WorkspaceOperationRunner.java:73) at org.eclipse.ui.internal.editors.text.WorkspaceOperationRunner.run(WorkspaceOperationRunner.java:63) at org.eclipse.ui.editors.text.TextFileDocumentProvider.executeOperation(TextFileDocumentProvider.java:443) at org.eclipse.ui.editors.text.TextFileDocumentProvider.saveDocument(TextFileDocumentProvider.java:702) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.performSaveAs(CompilationUnitEditor.java:1523) at org.eclipse.ui.texteditor.AbstractTextEditor.handleEditorInputChanged(AbstractTextEditor.java:3425) at org.eclipse.ui.texteditor.StatusTextEditor.handleEditorInputChanged(StatusTextEditor.java:203) at org.eclipse.ui.texteditor.AbstractTextEditor.handleEditorInputChanged(AbstractTextEditor.java:3427) at org.eclipse.ui.texteditor.StatusTextEditor.handleEditorInputChanged(StatusTextEditor.java:203) at org.eclipse.ui.texteditor.AbstractTextEditor.sanityCheckState(AbstractTextEditor.java:3575) at org.eclipse.ui.texteditor.StatusTextEditor.sanityCheckState(StatusTextEditor.java:193) at org.eclipse.ui.texteditor.AbstractTextEditor.safelySanityCheckState(AbstractTextEditor.java:3553) at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.handleActivation(AbstractTextEditor.java:834) at org.eclipse.ui.texteditor.AbstractTextEditor$ActivationListener.access$0(AbstractTextEditor.java:827) at org.eclipse.ui.texteditor.AbstractTextEditor$10.run(AbstractTextEditor.java:854) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2802) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2533) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1717) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1681) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) | verified fixed | 5852cdc | ["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 | "2005-06-07T19:58:17Z" | "2005-06-07T13:13:20Z" |
94,730 | Bug 94730 [projection] Nondeterministic folding summary | I20050509-2010 With the CU below: - fold the method declaration -> 'bar()' is shown as summary - unfold again - select the method name 'bar' - type 'foo' - fold the method declaration again -> 'void' is shown as summary "interface Bar { void bar(); } " | verified fixed | 759d594 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/folding/DefaultJavaFoldingStructureProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T16:13:29Z" | "2005-05-11T14:00:00Z" |
97,201 | Bug 97201 [content assist] Rendering of inner types in Javadoc code assist wrong | RC1 - code assist after 'Inn'. Label is rendered 'R.Innner', should be Inner. public class R { class Inner { } /** * @see Inn * */ private void foo() { } } | verified fixed | 4d1624e | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ProposalInfo.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionEvaluator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T14:48:31Z" | "2005-05-30T10:46:40Z" |
95,908 | Bug 95908 [5.0][content assist] toarray template inserted as content assist method argument guess | null | verified fixed | 4a78aa8 | ["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 | "2005-06-07T14:30:25Z" | "2005-05-19T08:06:40Z" |
98,479 | Bug 98479 [code manipulation] NPE when canceling creation of linked source folder | RC1 - create new project - go to second page - link source folder. As a target take a folder with lots of sub folders (e.g. Windows, Program Files) - cancel the progress dialog observe: you get the NPW below. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.buildpath.ClasspathModifier.createLinkedSourceFolder(ClasspathModifier.java:115) at org.eclipse.jdt.internal.corext.buildpath.LinkedSourceFolderOperation.run(LinkedSourceFolderOperation.java:62) at org.eclipse.jdt.internal.ui.wizards.buildpaths.newsourcepage.ClasspathModifierAction.run(ClasspathModifierAction.java:56) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:441) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2933) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2566) at org.eclipse.jface.window.Window.runEventLoop(Window.java:809) at org.eclipse.jface.window.Window.open(Window.java:787) at org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction.run(AbstractOpenWizardAction.java:159) at org.eclipse.jdt.internal.ui.wizards.AbstractOpenWizardAction.run(AbstractOpenWizardAction.java:184) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:246) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:223) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:441) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2933) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2566) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1717) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1681) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) | verified fixed | 57e37b4 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/buildpath/ClasspathModifier.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T14:05:45Z" | "2005-06-06T09:26:40Z" |
98,327 | Bug 98327 [misc] File not saved on disk after "resave" editor context | N20060604-0010 - create project, package, A.java - open A.java in editor - go to OS explorer - delete A.java on disk - go back to workbench and activate editor observe: you get a dialog asking you whether you want to save the content - say yes observe: the dialog claims that the file exists. Strange, since I just deleted it. Say yes for override observe: the file doesn't end up on disk. You get an editor that the file doesn't exist. | verified fixed | 2778e17 | ["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 | "2005-06-07T13:47:46Z" | "2005-06-03T17:33:20Z" |
98,474 | Bug 98474 [refactoring] convert anonymous to nested should use name conventions | 20050606 the 'convert anonymous to nested' refactoring doesn't use name conventions and didn't use the 'f' prefix for fields as I configured. | verified fixed | 4ef25df | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ConvertAnonymousToNestedRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T13:44:30Z" | "2005-06-06T09:26:40Z" |
97,507 | Bug 97507 [refactoring] Introduce factory fails for bounded type parameters | In RC1. Given class: public class A<T, L extends List<T>> { private L _attribute; A(L list) { _attribute = list; } } Invoke "Introduce Factory" on A. The result is public static <T, L> A<T, L> createA(L list) { return new A<T, L>(list); } The bounds on the type parameters have been lost, so it doesn't compile | verified fixed | 7d0454e | ["org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/97507/CtorTypeArgBounds.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/97507/CtorTypeArgBounds_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/IntroduceFactoryTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceFactoryRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T10:37:50Z" | "2005-05-31T14:33:20Z" |
97,467 | Bug 97467 [quick fix] proposals not available for pessimistic repository providers | I have CVS configured to use Watch/Edit. I typed in the following code: PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, IHelpContextIds.SYNC_PREFERENCE_PAGE); The IHelpContextIds interface exists but the constant does not. I then used CTRL-1 to see the option to create the constant but it is not presented. To see the option, I must manually make the IHelpContextIds file writtable. The way it should be is this. All the options should be presented and if one of them requires a file to be made writtable, the tooling should call validateEdit. This is a major usability problem as there are some repository tools where pessimistic mode is the usual way of working and this bug will make working with these repositories more cumbersome for the user. | verified fixed | 09716ef | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T10:18:52Z" | "2005-05-31T14:33:20Z" |
89,917 | Bug 89917 [formatter] UI for "Keep empty array initializer on one line" option is confusing | null | verified fixed | 5a839a6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/BracesTabPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ModifyDialogTabPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T10:06:47Z" | "2005-04-01T01:46:40Z" |
91,855 | Bug 91855 Duplicate members in JDT views | I20050414-11..-gtk + ZRH export of 20050418 - In a Java5 project, open java.lang.StringBuffer - Note that some of the overloaded append and insert methods appear twice | verified fixed | 787b0a6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/SyntheticMembersFilter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T09:59:53Z" | "2005-04-19T08:40:00Z" |
96,722 | Bug 96722 [GlobalActions] Leak: 2 Retarget actions leaked for each Java Editor open/close | N20050525 Open a JavaEditor Close a JavaEditor Repeat For each open / close two org.eclipse.ui.actions.RetargetAction are leaked. The instances remain as they are registered as property change listeners of the action bars | verified fixed | 7bfacce | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicEditorActionContributor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicJavaEditorActionContributor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T09:47:39Z" | "2005-05-25T22:26:40Z" |
97,196 | Bug 97196 [quick fix] visibility linked proposals eat space | null | verified fixed | e9bed7e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedCorrectionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-07T09:40:19Z" | "2005-05-30T10:46:40Z" |
96,596 | Bug 96596 [syntax highlighting] Improper display of custom tags | null | verified fixed | 1c9f421 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocScanner.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T17:03:23Z" | "2005-05-25T11:20:00Z" |
98,542 | Bug 98542 [preferences] missing node ids for new preference pages | N20050606 preference page set opened from the java editor's context menu> preferences does not yet include the additional preference pages added during 3.1 | verified fixed | 101d54c | ["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 | "2005-06-06T16:35:31Z" | "2005-06-06T15:00:00Z" |
97,313 | Bug 97313 Java search filters dialog does not honor dialog font settings [search] | 3.1 RC1 | verified fixed | 8359cf0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/FiltersDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FiltersDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T16:01:50Z" | "2005-05-30T16:20:00Z" |
94,302 | Bug 94302 [Quick fix] on A.class offers odd generic replacement | Probably related to 93643. Against I20050509-2010. Given code: import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; public class FlashcardTests { public static Test suite() { TestSuite suite = new TestSuite(); add(suite, ParserTest.class); return suite; } private static void add(TestSuite suite, Class<? extends TestCase> clazz) { suite.addTestSuite(clazz); } } Since ParserTest doesn't exist, there's a compiler error. Using quick fix offers "Change to Class<? extends junit.framework.TestCase>", which is no closer to compiling code. | verified fixed | 535f82e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ASTResolving.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T15:46:42Z" | "2005-05-10T13:00:00Z" |
98,487 | Bug 98487 TypedElementSelectionValidator.isSelectedValid got removed | 20050606 Several subclasses of TypedElementSelectionValidator override isSelectedValid, but it doesn't exist anymore in TypedElementSelectionValidator. I suggest to add it again for RC2, the checks implemented in the subclasses make sense. | verified fixed | cf05f1d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypedElementSelectionValidator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T15:37:10Z" | "2005-06-06T09:26:40Z" |
98,472 | Bug 98472 New project wizard: second page remove from class path should ask for removal of folder when linked | RC1 - create a new project - switch to the second page - link in additional source observe: there is no way to unlink the addtional source We should offer to unlink the folder when the folder is removed from the build path again. | verified fixed | 5de25d9 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/dialogs/NewProjectWizardOperationTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/dialogs/NewProjectWizardTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/buildpath/ClasspathModifier.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/buildpath/IClasspathInformationProvider.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/buildpath/RemoveFromClasspathOperation.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewWizardMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/BuildPathAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/ClasspathModifierQueries.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/HintTextGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T14:03:07Z" | "2005-06-06T06:40:00Z" |
98,394 | Bug 98394 [refactoring] NPE while adding generic wildcard to method parameter | Take the following code: interface I { public void test(Class arg); } public class C implements I { public void test(Class arg) {} } Select either method declaration, do Refactor -> Change Method Signature, change the type "Class" to "Class<?>", select Preview or OK. This results in the following exception: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:327) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.run(RefactoringWizardDialog2.java:293) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.createChange(RefactoringWizard.java:573) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.computeUserInputSuccessorPage(RefactoringWizard.java:416) at org.eclipse.ltk.ui.refactoring.UserInputWizardPage.computeSuccessorPage(UserInputWizardPage.java:74) at org.eclipse.ltk.ui.refactoring.UserInputWizardPage.getNextPage(UserInputWizardPage.java:114) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.previewPressed(RefactoringWizardDialog2.java:447) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.access$3(RefactoringWizardDialog2.java:445) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2$1.widgetSelected(RefactoringWizardDialog2.java:584) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2929) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2562) at org.eclipse.jface.window.Window.runEventLoop(Window.java:809) at org.eclipse.jface.window.Window.open(Window.java:787) at org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation$1.run(RefactoringWizardOpenOperation.java:125) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation.run(RefactoringWizardOpenOperation.java:138) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate(RefactoringStarter.java:40) at org.eclipse.jdt.internal.ui.refactoring.UserInterfaceStarter.activate(UserInterfaceStarter.java:56) at org.eclipse.jdt.internal.corext.refactoring.RefactoringExecutionStarter$1.activate(RefactoringExecutionStarter.java:175) at org.eclipse.jdt.internal.corext.refactoring.RefactoringExecutionStarter.startChangeSignatureRefactoring(RefactoringExecutionStarter.java:180) at org.eclipse.jdt.ui.actions.ModifyParametersAction.run(ModifyParametersAction.java:132) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:226) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:198) at org.eclipse.jface.action.Action.runWithEvent(Action.java:996) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:538) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:400) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:844) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2929) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2562) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1694) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1658) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:366) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:162) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at org.eclipse.core.launcher.Main.basicRun(Main.java:278) at org.eclipse.core.launcher.Main.run(Main.java:973) at org.eclipse.core.launcher.Main.main(Main.java:948) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring.collectTypeVariables(ChangeSignatureRefactoring.java:514) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring.collectTypeVariables(ChangeSignatureRefactoring.java:530) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring.collectTypeVariables(ChangeSignatureRefactoring.java:526) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring.checkTypeVariables(ChangeSignatureRefactoring.java:502) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring.checkFinalConditions(ChangeSignatureRefactoring.java:743) at org.eclipse.ltk.core.refactoring.CheckConditionsOperation.run(CheckConditionsOperation.java:84) at org.eclipse.ltk.core.refactoring.CreateChangeOperation.run(CreateChangeOperation.java:114) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Tested with 3.1RC1. The same happens with an abstract superclass instead of an interface. It does not happen when there is no subclass / implementing class. | verified fixed | 6043c81 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testGenerics02_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testGenerics05_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testGenerics05_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ChangeSignatureTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T14:02:07Z" | "2005-06-03T23:06:40Z" |
96,459 | Bug 96459 Open Type blocked/frozen due to other threads holding a workspace lock | When the open type dialog is opened the first time the dialog executes a dummy search and restores the history to ensure that searches are answered quickly. To execute the dummy search the dialog has to create a workspace scope. However, creating a workspace scope can require the workspace lock, which in itself isn't a problem. But the UI freezes in this situation due to the fact that ModelEntry#updateClasspathContainer passes null as a progress monitor to JavaCore.setClasspathContainer. The job/runnable framework pops up a blocking dialog when null is pass as a progress monitor only if there isn't already a progress monitor opened. But there is already a progress monitor dialog open since the open type actions executes its runnable to do the dummy search via the PlatformUI.getWorkbench().getProgressService()#run(...). The freeze can only be fixed if creating a workspace scope will not take a look or if the progress monitor already available via the progress dialog will be passed down to setting the classpath container. Passing down the progress monitor will ensure that the progress dialog switches into blocking mode telling the user that the action can not be continued since it is blocked by another job. I will attach a VM dump showing this constellation. "VM Thread" prio=5 tid=0x009bdab0 nid=0x1150 runnable "VM Periodic Task Thread" prio=10 tid=0x009fef78 nid=0x130 waiting on condition "Suspend Checker Thread" prio=10 tid=0x00a02630 nid=0xe64 runnable Full thread dump Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode): "Worker-8" prio=5 tid=0x047707d8 nid=0x1348 in Object.wait() [424f000..424fd94] at java.lang.Object.wait(Native Method) - waiting on <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:167) - locked <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:199) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "Worker-7" daemon prio=5 tid=0x031e8a28 nid=0x3a4 in Object.wait() [454f000..454fd94] at java.lang.Object.wait(Native Method) - waiting on <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:167) - locked <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:199) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "ModalContext" prio=7 tid=0x03221c08 nid=0xd2c in Object.wait() [450f000..450fd94] at java.lang.Object.wait(Native Method) - waiting on <0x13482720> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x13482720> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:88) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:190) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:96) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1674) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1714) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:782) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2822) at org.eclipse.jdt.core.JavaCore$5.run(JavaCore.java:3882) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:39) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:718) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3691) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3865) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1543) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers(JavaModelManager.java:1503) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1016) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1317) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:2048) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1956) at org.eclipse.jdt.internal.core.DeltaProcessingState.initializeRoots(DeltaProcessingState.java:265) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:715) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3691) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3865) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1543) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1018) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1317) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:2048) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1956) at org.eclipse.jdt.internal.core.search.JavaSearchScope.add(JavaSearchScope.java:108) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.initialize(JavaWorkspaceScope.java:84) at org.eclipse.jdt.internal.core.search.JavaSearchScope.<init>(JavaSearchScope.java:62) at org.eclipse.jdt.internal.core.search.JavaSearchScope.<init>(JavaSearchScope.java:58) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.<init>(JavaWorkspaceScope.java:29) at org.eclipse.jdt.internal.core.JavaModelManager.getWorkspaceScope(JavaModelManager.java:1384) at org.eclipse.jdt.internal.core.search.BasicSearchEngine.createWorkspaceScope(BasicSearchEngine.java:157) at org.eclipse.jdt.core.search.SearchEngine.createWorkspaceScope(SearchEngine.java:392) at org.eclipse.jdt.internal.ui.dialogs.TypeSelectionDialog2$2.refreshSearchIndices(TypeSelectionDialog2.java:220) at org.eclipse.jdt.internal.ui.dialogs.TypeSelectionDialog2$2.run(TypeSelectionDialog2.java:204) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) "Worker-6" daemon prio=5 tid=0x0315bd58 nid=0xbe0 waiting for monitor entry [44cf000..44cfd94] at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$3.run(SelectionListenerWithASTManager.java:14 2) - waiting to lock <0x126e3ec8> (a java.lang.Object) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-5" daemon prio=5 tid=0x02e4e3f8 nid=0x1d4 waiting for monitor entry [448f000..448fd94] at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$3.run(SelectionListenerWithASTManager.java:14 2) - waiting to lock <0x126e3ec8> (a java.lang.Object) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-4" daemon prio=5 tid=0x03251008 nid=0xf68 in Object.wait() [444f000..444fd94] at java.lang.Object.wait(Native Method) - waiting on <0x13418918> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x13418918> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:88) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:190) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:96) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1674) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1714) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:782) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2822) at org.eclipse.jdt.core.JavaCore$5.run(JavaCore.java:3882) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:39) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:718) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3691) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3865) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1543) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers(JavaModelManager.java:1503) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1016) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1317) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:2048) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1956) at org.eclipse.jdt.internal.core.DeltaProcessingState.initializeRoots(DeltaProcessingState.java:265) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:715) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3691) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3865) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1543) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1018) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1317) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:2048) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1956) at org.eclipse.jdt.internal.core.search.JavaSearchScope.add(JavaSearchScope.java:108) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.initialize(JavaWorkspaceScope.java:84) at org.eclipse.jdt.internal.core.search.JavaSearchScope.<init>(JavaSearchScope.java:62) at org.eclipse.jdt.internal.core.search.JavaSearchScope.<init>(JavaSearchScope.java:58) at org.eclipse.jdt.internal.core.search.JavaWorkspaceScope.<init>(JavaWorkspaceScope.java:29) at org.eclipse.jdt.internal.core.JavaModelManager.getWorkspaceScope(JavaModelManager.java:1384) at org.eclipse.jdt.internal.core.search.BasicSearchEngine.createWorkspaceScope(BasicSearchEngine.java:157) at org.eclipse.jdt.core.search.SearchEngine.createWorkspaceScope(SearchEngine.java:392) at org.eclipse.jdt.core.JavaCore$1.run(JavaCore.java:2609) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-3" daemon prio=5 tid=0x030a1878 nid=0x13a8 in Object.wait() [440f000..440fd94] at java.lang.Object.wait(Native Method) - waiting on <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:167) - locked <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:199) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "Worker-2" daemon prio=5 tid=0x03275a38 nid=0x17c8 in Object.wait() [43cf000..43cfd94] at java.lang.Object.wait(Native Method) - waiting on <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:167) - locked <0x118439d8> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:199) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "Worker-1" daemon prio=5 tid=0x030a28c8 nid=0x15cc runnable [438f000..438fd94] at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(Util.java:49) at org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader.read(ClassFileReader.java:32) at org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader.read(ClassFileReader.java:64) at org.eclipse.jdt.internal.compiler.classfmt.ClassFileReader.read(ClassFileReader.java:61) at org.eclipse.jdt.internal.core.builder.ClasspathDirectory.findClass(ClasspathDirectory.java:97) at org.eclipse.jdt.internal.core.builder.NameEnvironment.findClass(NameEnvironment.java:305) at org.eclipse.jdt.internal.core.builder.NameEnvironment.findType(NameEnvironment.java:313) at org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.askForType(LookupEnvironment.java:93) at org.eclipse.jdt.internal.compiler.lookup.UnresolvedReferenceBinding.resolve(UnresolvedReferenceBinding.java:43) at org.eclipse.jdt.internal.compiler.lookup.BinaryTypeBinding.resolveType(BinaryTypeBinding.java:51) at org.eclipse.jdt.internal.compiler.lookup.PackageBinding.getTypeOrPackage(PackageBinding.java:167) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.findImport(CompilationUnitScope.java:403) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.findSingleImport(CompilationUnitScope.java:456) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.faultInImports(CompilationUnitScope.java:321) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.faultInTypes(CompilationUnitScope.java:390) at org.eclipse.jdt.internal.compiler.Compiler.process(Compiler.java:497) at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:329) at org.eclipse.jdt.internal.core.builder.AbstractImageBuilder.compile(AbstractImageBuilder.java:240) at org.eclipse.jdt.internal.core.builder.AbstractImageBuilder.compile(AbstractImageBuilder.java:213) at org.eclipse.jdt.internal.core.builder.BatchImageBuilder.build(BatchImageBuilder.java:50) at org.eclipse.jdt.internal.core.builder.JavaBuilder.buildAll(JavaBuilder.java:216) at org.eclipse.jdt.internal.core.builder.JavaBuilder.build(JavaBuilder.java:148) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:585) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1031) at org.eclipse.core.runtime.Platform.run(Platform.java:775) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:168) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:202) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:231) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1031) at org.eclipse.core.runtime.Platform.run(Platform.java:775) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:234) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:303) at org.eclipse.core.internal.resources.Project.build(Project.java:106) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildProjects(LaunchConfigurationDelegate.java:335) at org.eclipse.debug.core.model.LaunchConfigurationDelegate.buildForLaunch(LaunchConfigurationDelegate.java:94) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:569) at org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:515) at org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:734) at org.eclipse.debug.internal.ui.DebugUIPlugin$6.run(DebugUIPlugin.java:932) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon prio=2 tid=0x030d23b0 nid=0x1364 in Object.wait() [42ee000..42efd94] at java.lang.Object.wait(Native Method) - waiting on <0x128b76f0> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x128b76f0> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ImplicitJobs.begin(ImplicitJobs.java:88) at org.eclipse.core.internal.jobs.JobManager.beginRule(JobManager.java:190) at org.eclipse.core.internal.resources.WorkManager.checkIn(WorkManager.java:96) at org.eclipse.core.internal.resources.Workspace.prepareOperation(Workspace.java:1674) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1714) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:782) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2822) at org.eclipse.jdt.core.JavaCore$5.run(JavaCore.java:3882) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:39) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:718) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3691) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3865) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1543) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers(JavaModelManager.java:1503) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1016) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1317) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:2048) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1956) at org.eclipse.jdt.internal.core.DeltaProcessingState.initializeRoots(DeltaProcessingState.java:265) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:715) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1719) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3691) at org.eclipse.jdt.core.JavaCore.setClasspathContainer(JavaCore.java:3865) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer(ModelEntry.java:110) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize(RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:1543) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1018) at org.eclipse.jdt.core.JavaCore.getClasspathContainer(JavaCore.java:1317) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:2048) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath(JavaProject.java:1956) at org.eclipse.jdt.internal.core.JavaProject.buildStructure(JavaProject.java:341) at org.eclipse.jdt.internal.core.Openable.generateInfos(Openable.java:233) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed(JavaElement.java:488) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:232) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:218) at org.eclipse.jdt.internal.core.JavaProject.getJavaProjectElementInfo(JavaProject.java:1522) at org.eclipse.jdt.internal.core.JavaProject.newNameLookup(JavaProject.java:2407) at org.eclipse.jdt.internal.core.SearchableEnvironment.<init>(SearchableEnvironment.java:60) at org.eclipse.jdt.internal.core.SearchableEnvironment.<init>(SearchableEnvironment.java:74) at org.eclipse.jdt.internal.core.CancelableNameEnvironment.<init>(CancelableNameEnvironment.java:26) at org.eclipse.jdt.internal.core.CompilationUnitProblemFinder.process(CompilationUnitProblemFinder.java:148) at org.eclipse.jdt.internal.core.CompilationUnitProblemFinder.process(CompilationUnitProblemFinder.java:214) at org.eclipse.jdt.internal.core.ReconcileWorkingCopyOperation.executeOperation(ReconcileWorkingCopyOperation.java:79) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:718) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:777) at org.eclipse.jdt.internal.core.CompilationUnit.reconcile(CompilationUnit.java:1080) at org.eclipse.jdt.internal.ui.text.java.JavaReconcilingStrategy$1.run(JavaReconcilingStrategy.java:102) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1031) at org.eclipse.core.runtime.Platform.run(Platform.java:775) at org.eclipse.jdt.internal.ui.text.java.JavaReconcilingStrategy.reconcile(JavaReconcilingStrategy.java:99) - locked <0x125ac500> (a org.eclipse.jdt.internal.core.CompilationUnit) at org.eclipse.jdt.internal.ui.text.java.JavaReconcilingStrategy.initialReconcile(JavaReconcilingStrategy.java:181) at org.eclipse.jdt.internal.ui.text.CompositeReconcilingStrategy.initialReconcile(CompositeReconcilingStrategy.java:114) at org.eclipse.jdt.internal.ui.text.JavaCompositeReconcilingStrategy.initialReconcile(JavaCompositeReconcilingStrategy.j ava:120) at org.eclipse.jface.text.reconciler.MonoReconciler.initialProcess(MonoReconciler.java:103) at org.eclipse.jdt.internal.ui.text.JavaReconciler.initialProcess(JavaReconciler.java:307) - locked <0x1254e300> (a java.lang.Object) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:170) "Java indexing" daemon prio=4 tid=0x03073960 nid=0x5b8 in Object.wait() [428f000..428fd94] at java.lang.Object.wait(Native Method) - waiting on <0x12412100> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Object.wait(Object.java:429) at org.eclipse.jdt.internal.core.search.processing.JobManager.run(JobManager.java:349) - locked <0x12412100> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Thread.run(Thread.java:534) "Worker-0" daemon prio=5 tid=0x02dbc460 nid=0x12e0 in Object.wait() [34df000..34dfd94] at java.lang.Object.wait(Native Method) - waiting on <0x1251de90> (a java.lang.Object) at java.lang.Object.wait(Object.java:429) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider.getAST(ASTProvider.java:469) - locked <0x1251de90> (a java.lang.Object) at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$PartListenerGroup.calculateASTandInform(Selec tionListenerWithASTManager.java:165) at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$3.run(SelectionListenerWithASTManager.java:14 2) - locked <0x126e3ec8> (a java.lang.Object) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Start Level Event Dispatcher" daemon prio=5 tid=0x02e8e008 nid=0x6ac in Object.wait() [304f000..304fd94] at java.lang.Object.wait(Native Method) - waiting on <0x1175cee8> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextEvent(EventManager.java:348) - locked <0x1175cee8> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:286) "Framework Event Dispatcher" daemon prio=5 tid=0x02ea8008 nid=0x1224 in Object.wait() [300f000..300fd94] at java.lang.Object.wait(Native Method) - waiting on <0x1175cf38> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextEvent(EventManager.java:348) - locked <0x1175cf38> (a org.eclipse.osgi.framework.eventmgr.EventManager$EventThread) at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:286) "State Data Manager" daemon prio=5 tid=0x00a1a708 nid=0x770 waiting on condition [2fcf000..2fcfd94] at java.lang.Thread.sleep(Native Method) at org.eclipse.osgi.framework.adaptor.core.StateManager.run(StateManager.java:213) at java.lang.Thread.run(Thread.java:534) "Signal Dispatcher" daemon prio=10 tid=0x00a20620 nid=0x147c waiting on condition [0..0] "Finalizer" daemon prio=9 tid=0x0003d980 nid=0x670 in Object.wait() [2c7f000..2c7fd94] at java.lang.Object.wait(Native Method) - waiting on <0x11720138> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x11720138> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159) "Reference Handler" daemon prio=10 tid=0x00a03668 nid=0x13dc in Object.wait() [2c3f000..2c3fd94] at java.lang.Object.wait(Native Method) - waiting on <0x117201a0> (a java.lang.ref.Reference$Lock) at java.lang.Object.wait(Object.java:429) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115) - locked <0x117201a0> (a java.lang.ref.Reference$Lock) "main" prio=7 tid=0x000352b8 nid=0x9e4 runnable [7e000..7fc3c] at org.eclipse.swt.internal.win32.OS.WaitMessage(Native Method) at org.eclipse.swt.widgets.Display.sleep(Display.java:3228) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:154) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:303) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:447) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:261) at org.eclipse.ui.internal.progress.ProgressManager$3.run(ProgressManager.java:861) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.progress.ProgressManager.busyCursorWhile(ProgressManager.java:895) at org.eclipse.ui.internal.progress.ProgressManager.busyCursorWhile(ProgressManager.java:871) at org.eclipse.ui.internal.progress.ProgressManager.run(ProgressManager.java:1070) at org.eclipse.jdt.internal.ui.dialogs.TypeSelectionDialog2.ensureConsistency(TypeSelectionDialog2.java:232) at org.eclipse.jdt.internal.ui.dialogs.TypeSelectionDialog2.open(TypeSelectionDialog2.java:145) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:57) at org.eclipse.jdt.internal.ui.actions.OpenTypeAction.run(OpenTypeAction.java:78) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:246) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:223) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:117) at org.eclipse.core.commands.Command.execute(Command.java:311) at org.eclipse.core.commands.ParameterizedCommand.execute(ParameterizedCommand.java:396) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:459) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:781) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:828) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:550) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:493) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:117) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:782) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:868) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:853) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:881) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:877) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1184) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3135) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3038) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3535) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1650) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2554) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1652) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1616) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:336) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:372) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:161) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:330) at org.eclipse.core.launcher.Main.basicRun(Main.java:274) at org.eclipse.core.launcher.Main.run(Main.java:969) at org.eclipse.core.launcher.Main.main(Main.java:944) "VM Thread" prio=5 tid=0x009bdab0 nid=0x1150 runnable "VM Periodic Task Thread" prio=10 tid=0x009fef78 nid=0x130 waiting on condition "Suspend Checker Thread" prio=10 tid=0x00a02630 nid=0xe64 runnable Interesting side note to the VM dump: the classpath container is initialized in parallel from three different threads: Model Context (triggered from open type), JavaCore#initializeAfterLoad and from a reconciler in the Java editor. | verified fixed | ebba595 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionDialog2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T10:57:26Z" | "2005-05-24T15:53:20Z" |
97,167 | Bug 97167 wrong proposals for linked folder in New Java Project>Link Additional Resource | null | verified fixed | 42adf13 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/LinkFolderDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T09:30:10Z" | "2005-05-30T08:00:00Z" |
95,142 | Bug 95142 [JUnit] JUnit view is missing context menu | null | verified fixed | a14a745 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestHierarchyTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T08:59:56Z" | "2005-05-13T16:00:00Z" |
97,442 | Bug 97442 [code manipulation] Smart paste adds import for type parameter | In RC1. Create class A: import java.util.List; public class A { class Counter<T, L extends List<T>> { private L _attribute; } } Now, copy the inner class "Counter", and paste it into empty class B: public class B { // PASTE HERE } imports are added: import L; import java.util.List; "import L" is wrong. | verified fixed | b7c4b17 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T07:52:11Z" | "2005-05-31T11:46:40Z" |
94,906 | Bug 94906 Selecting an element in Package Explorer calls 3 times EditorUtility.revealInEditor | I20050509-2010 I have open on single-click enabled. When linking is disabled EditorUtility.revealInEditor is triggered only once but as soon as linking is enabled it gets sent three times when an element is selected in Package Explorer (assuming the CU is already open). Opening a CU results in revealing two times. If open on double-click is checked and linking enabled it reveals twice upon element selection (assuming the CU is already open). | verified fixed | dcd7fad | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-06T07:43:34Z" | "2005-05-12T09:26:40Z" |
96,928 | Bug 96928 [1.5][model] Creating enum failed with exception in project with source level at 1.4 | null | verified fixed | 4cc76c9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-05T19:18:48Z" | "2005-05-27T07:46:40Z" |
96,926 | Bug 96926 [quick fix] Change method return type quick fix gives invalid proposal for wildcard types | Against I20050527-0010: Code: void a() { ArrayList<? extends Number> b = null; return b.get(0); } Ask for a quick fix on the compile error. Three things happen: 1) BAD: The quick fix is entitled "Change method return type to '? extends Number'". 2) GOOD: The correct return type, Number, is shown originally. 3) BAD: However, the top completion proposal, and the one chosen if the user simply hits return, is "? extends Number", which creates a compile error. | verified fixed | 252890c | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/QuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ReturnTypeQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/TypeMismatchQuickFixTests.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedTypesQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ASTResolving.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewCUCompletionUsingWizardProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReturnTypeSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/TypeMismatchSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-05T19:14:01Z" | "2005-05-27T07:46:40Z" |
69,154 | Bug 69154 [navigation] Open with "Show Selected Element Only" does not narrow down in single-click mode | I have "Show Selected Element Only" selected in my Type Hierarchy perspective. When I open a Type Hierarchy and click on an element in the Hierarchy pane, the Editor pane highlights that element in the source, but doesn't just show that element--it's still showing the entire source. If I then click in the Editor pane, the view suddenly changes to just that element. | verified fixed | f0caa17 | ["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 | "2005-06-05T11:56:21Z" | "2004-07-01T16:40:00Z" |
80,778 | Bug 80778 JUnit view toolbar run button enabled when no test can be run [JUnit] | Version 3.1M3. JUnit view toolbar run button enabled when no test can be run/ -Run a JUnit test from the JUnit View. -Shutdown Eclipse. -Start Eclipse. -The JUnit view toolbar run button is enabled, clicking it does nothing. The button should be disabled when no test can be run. Additionally, the JUnit view could remember the last test run accross shutown/restarts. Gary | verified fixed | 0882da8 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T16:06:35Z" | "2004-12-12T19:33:20Z" |
97,529 | Bug 97529 [refactoring] Move member type to new file creates doubled type params | In RC1. Given code: public class A { static class B<T> { } private <T> B<T> foo() { return new B<T>(); } } Select B, and "move member type to new file." The result: public class A { private <T> B<T><T> foo() { return new B<T><T>(); } } | verified fixed | 23b71ad | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T16:02:03Z" | "2005-05-31T14:33:20Z" |
76,530 | Bug 76530 [options] Warn about unused local variables and private members | I think we should warn about unused local variables and unused private members by default. These things are errors akin to unused imports, which we already warn about. | closed fixed | 883eb26 | ["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractInterfaceTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/SurroundWithTestSetup.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/infra/AbstractRefactoringTestSetup.java", "org.eclipse.jdt.ui.tests/test", "plugin/org/eclipse/jdt/testplugin/TestOptions.java", "org.eclipse.jdt.ui.tests/test", "plugin/org/eclipse/jdt/testplugin/TestOptionsSetup.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ASTNodesInsertTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddImportTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddUnimplementedConstructorsTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CodeCompletionTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CodeFormatterUtilTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ImportOrganizeTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/PartialASTTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ProjectTestSetup.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ScopeAnalyzerTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/TypeRulesTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/dialogs/NewProjectTestSetup.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AdvancedQuickAssistTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ContributedQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertForLoopQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertIterableLoopQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/JavadocQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/MarkerResolutionTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ModifierCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ReorgQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ReturnTypeQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/SerialVersionQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/TypeMismatchQuickFixTests.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedMethodsQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedTypesQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedVariablesQuickFixTest.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/search/JUnitSourceSetup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T14:40:43Z" | "2004-10-19T01:40:00Z" |
94,632 | Bug 94632 [Build path] Build path submenu shown on working sets | I20050509-2010 The build path submenu is shown in the context menu of working sets in the package explorer. | verified fixed | 8987a2e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/GenerateBuildPathActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T14:27:43Z" | "2005-05-11T08:26:40Z" |
79,660 | Bug 79660 Rerunning single test with keepalive: no indication when test run has finished [JUnit] | I200411240800 I launch tests in debug mode with 'Keep JUnit running ...' enabled. When rerunning single tests (test's context menu > Run), there's no indication when the test run has finished. If the test produces a different result than the last time, the user can maybe spot a change in the failure trace pane - otherwise, there's no sure way to tell whether the test has finished (apart from looking at the CPU load ;-). I would expect this: - view title becomes italic during the test run, and upright after end of run - view's ContentDescription changes to $test_name$ and then to "Finished after $not_so_many$ seconds" | verified fixed | 702a5ac | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestHierarchyTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T12:25:01Z" | "2004-11-29T14:53:20Z" |
97,434 | Bug 97434 [RC1] Sometimes cannot find Type in OpenType Dialog | There is something strange going on in the OpenType dialog. I have a Type called "ElementTypes" with an inner Class of "ElementDescriptor". When I want to find this type in the OpenType Dialog and type "Element" I see 3 Matching Types (besides lots of workspace matches): ElementDescriptor ElementFactory ElementTypes Then I type a "T", and the List is narrowed down to "ElementDescriptor" only. What is even more strange: sometimes it seems to work ok, sometimes not. I did not yet discover a pattern for this, though. | verified fixed | fbcc1f2 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/IFileTypeInfo.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JarFileEntryTypeInfo.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/TypeInfo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T12:13:05Z" | "2005-05-31T11:46:40Z" |
97,821 | Bug 97821 [package explorer] eternal loop when recreating deleted compilation unit | null | verified fixed | 8722245 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T12:10:28Z" | "2005-06-01T12:46:40Z" |
97,264 | Bug 97264 [implementation][preferences] Preferences not stored correctly | build rc1 LinkedModeConfigurationBlock#performOk has the following code: Platform.getPreferencesService().getRootNode().node(EditorsUI.PLUGIN_ID).flush(); This is incorrect and the preferences will not actually be stored in this case. The first node under the root is the scope (instance, project, configuration, default) and then the plug-in id is next. If the intention is to store the settings in the instance scope, then you can do the following: Platform.getPreferencesService().getRootNode().node(InstanceScope.SCOPE).node(EditorsUI.PLUGIN_ID).flush(); or equivalently: new InstanceScope().getNode(EditorsUI.PLUGIN_ID).flush(); | verified fixed | c0746b4 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/LinkedModeConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T10:57:27Z" | "2005-05-30T13:33:20Z" |
94,665 | Bug 94665 [quick fix] changing source version to 5.0 is not offered when caret offset is wrong | null | verified fixed | ecf7039 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavaCorrectionAssistant.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T09:30:37Z" | "2005-05-11T14:00:00Z" |
94,625 | Bug 94625 [Forms] [preference pages] Moving selection of triangle does not scroll | I20050509-2010 - Preferences > Java > Compiler > Errors/Warnings - expand sections until vertical scroll bar appears - scroll to top - set focus to an open section triangle - press arrow down key several times => the selection moves out of the visible region => Expected: the area is scrolled down such that the selection is visible (including as much as possible from the section's contents). It would also be nice if the area could be scrolled with Ctrl+Shift+Arrow_Up/Down (as for Trees) or Ctrl+Arrow_Up/Down (as in the editor). | verified fixed | 7cd05c7 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/AbstractConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/OptionsConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-03T09:25:10Z" | "2005-05-11T08:26:40Z" |
89,500 | Bug 89500 [nls tooling] Externalize String wizard: usability improvements | M6 Test pass Since most of the Java developers will not be faces with the Eclipse's mode I would move the check box down to the area of the Accessor class. Furthermore the wizard shouldn't provide the option if org.eclipse.osgi.util.NLS isn't present in the workspace. This will avoid that normal Java developers are faces with the option at all. | verified fixed | a3e2b40 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T17:13:13Z" | "2005-03-30T10:53:20Z" |
95,830 | Bug 95830 [quick fix] Wrong linked proposals in 'add throws' quick fix | When the user selects the "Add throws declaration" quick fix to add the exceptions thrown by a method, and the number of exceptions thrown is greater than one, then the drop down box presented with the first exception added (re-added in the case that the exception was already in the list) is that of the next exception in the list. Eg: For method that throws "SQLException, InvalidCashMarginTradesFile" The calling method has the following added to it's throws clause as such: +------------+ throws IOException, |SQLException|, InvalidCashMarginTradesFile +------------+--------------+ |InvalidCashMarginTradesFile| |Exception | |Throwable | +---------------------------+ Should I select the first option, the next element is not processed (no drop-down) and I am left with the following: throws IOException, InvalidCashMarginTradesFile, InvalidCashMarginTradesFile If I were adding 3 exceptions, then the first one would have the drop down of the second, as described, the second exception would have the drop-down of the third and the last one would be ignored. My version of Eclipse has been upgraded from 3.0.0 to 3.0.1 and then to 3.0.2 via the update mechanism. | verified fixed | bd7edcf | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T15:06:21Z" | "2005-05-18T18:13:20Z" |
94,696 | Bug 94696 Show Profile dialog sizes badly when custom dialog font is used | I20050509-2010 When a custom dialog font is use, the Show Profile dialog may not be large enough to show all controls. Either it should size properly or add the controls to a scrollable pane. Image forthcoming. | verified fixed | eedc9ec | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/LineWrappingTabPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ModifyDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ModifyDialogTabPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceTabPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T15:00:27Z" | "2005-05-11T14:00:00Z" |
90,263 | Bug 90263 [javadoc] "Open External Javadoc" action (Shift-F2) refuses to open valid URL | null | closed fixed | fbe039f | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/javadoc/JavaDocLocations.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T14:57:47Z" | "2005-04-05T08:33:20Z" |
98,072 | Bug 98072 [JUnit] JUnit: slash in project name in configuration tab leads to error log | Against N20050602-0010: 1) From the Run... dialog, create a new JUnit launch configuration. 2) In the "Project: " text field, type "a/b" The stack trace below is logged in the Error Log. The fix is one line, and the error trace is ugly. Recommend fix for RC2. | verified fixed | a91be9f | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T14:56:25Z" | "2005-06-02T11:00:00Z" |
96,183 | Bug 96183 [reconciling] Incremental compiler falsely complains after method moved. | Move the method from Source.java to Target.java. The result is legal, but Source.java falsely shows an error indication (red x). Add some whitespace anywhere in Source.java and the error indicator rightfully goes away! -------------------- Target.java -------------------------- package bug; public class Target {} -------------------- Source.java BEFORE ------------------- class Source { public static String noop(){return "";} {noop().toString();} } -------------------- Source.java AFTER ------------------- import bug.Target; class Source { {Target.noop().toString();} // ERROR INDICATED FALSELY! } | verified fixed | a90cc86 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaReconciler.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T14:42:14Z" | "2005-05-20T23:00:00Z" |
96,776 | Bug 96776 JUnit test case wizard fails on methods with generics | If I use the wizard to create my junit test cases and select a method with generics in its signature such as: public PropertyTableModel(final List<Pair<String, String>> data) public final void setData(final List<Pair<String, String>> data) then the wizard completely fails to create my new test cases: I assume that the angle brackets are sending it crazy. | verified fixed | 2f9db40 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/WizardMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/wizards/NewTestCaseWizardPageOne.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/wizards/NewTestCaseWizardPageTwo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T14:36:41Z" | "2005-05-26T12:20:00Z" |
35,867 | Bug 35867 [navigation] "//" breaks backwarsds bracket matching | Clicking on the opening bracket will mark the closing one but it won't work the other way round when the block contains a string declaration initialized with a XPath expression: public void demo() { String query = "//input[@name='blah']/@value"; } | verified fixed | 6b7b48f | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/PairMatcherTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaPairMatcher.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T13:09:42Z" | "2003-03-31T14:13:20Z" |
95,113 | Bug 95113 Suspicious code in JavaStructureDiffViewer | null | verified fixed | f1268af | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureDiffViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-02T09:14:18Z" | "2005-05-13T13:13:20Z" |
97,921 | Bug 97921 [typing] CompilationUnitEditor.TabConvertor should use project dependent formatter settings | with 3.1 RC1, In the code formatter I set tab policy to spaces only, indentation size = 2, and tab size = 8. when I hit the tab key, 2 spaces are added to the line instead of going to an 8 space (tab) boundary. | verified fixed | 07fe0aa | ["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 | "2005-06-02T07:28:39Z" | "2005-06-01T18:20:00Z" |
97,858 | Bug 97858 [preferences] Pref Page Java/Editor/Typing - dialog font problem | Open pref page. Click on "formatter prefrence page". Create a new formatter with a indention of 8. OK. Insure the new formatter is selected in the combo. Click on Apply. Switch back to Java/Editor/Typing observe the message does not use the dialog font anymore. | verified fixed | 2b8f911 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/SmartTypingConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T21:51:58Z" | "2005-06-01T15:33:20Z" |
97,586 | Bug 97586 [preferences] Access restriction link should open correct section | RC1 The Java - Editor - Code assist preference page has a link to the access rules - we should be consistent on terms: On the build path page we call it 'Access rules', the error/warning page also uses this term - the link should reveal the corresponding section (pass a Map as data to the page: map.put(ProblemSeveritiesPreferencePage.DATA_SELECT_OPTION_KEY, JavaCore.COMPILER_PB_FORBIDDEN_REFERENCE); map.put(ProblemSeveritiesPreferencePage.DATA_SELECT_OPTION_QUALIFIER, JavaCore.PLUGIN_ID); - even better might be to show some information hover explaining that you can add access rules on build path entries | verified fixed | 6f2f04a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T21:11:04Z" | "2005-05-31T17:20:00Z" |
97,852 | Bug 97852 [preferences] Pref Page Java/Editor/Syntax Coloring - Color label enablement | The "Color:" label should be disabled when the color button is disabled. | verified fixed | 2d86016 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorColoringConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T20:15:29Z" | "2005-06-01T15:33:20Z" |
97,556 | Bug 97556 NPE running "Infer generic type arguments..." | null | verified fixed | 870ef6b | ["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuTypeLiteral/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuTypeLiteral/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InferTypeArgumentsTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsConstraintCreator.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsTCModel.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T18:23:18Z" | "2005-05-31T17:20:00Z" |
94,650 | Bug 94650 DBCS3.1: JUnit example build error | Driver : Eclipse 3.1 I20050509-2010 Linux GTK, and example JVM : IBM 1.4.2 SR1a Platform : RHEL 4 WS ja_JP.UTF-8 locale Steps 1. File > New > Example.., select Example Project -JUnit, click Next 2. use default project name "JUnit", click Finish Result following error is shown at Problems view The project was not built since the source file /JUnit/junit/framework/TestSuite.java could not be read I tried to open it and got This file is unreadable using the "UTF-8" character encoding | verified fixed | acac25e | ["org.eclipse.jdt.ui.examples.projects/examples/org/eclipse/jdt/internal/ui/exampleprojects/ExampleProjectCreationOperation.java", "org.eclipse.jdt.ui.examples.projects/examples/org/eclipse/jdt/internal/ui/exampleprojects/ExampleProjectCreationWizard.java", "org.eclipse.jdt.ui.examples.projects/examples/org/eclipse/jdt/internal/ui/exampleprojects/ExampleProjectCreationWizardPage.java", "org.eclipse.jdt.ui.examples.projects/examples/org/eclipse/jdt/internal/ui/exampleprojects/ExampleProjectsPlugin.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T16:44:48Z" | "2005-05-11T11:13:20Z" |
97,278 | Bug 97278 [code manipulation] Add constructor from superclass proposes wrong constructor | RC1 public abstract class A<T> { public T fT; public A(T ft) { super(); // TODO Auto-generated constructor stub fT = ft; } } class Sub<E> extends A<String> { public Sub(String ft) { super(ft); // TODO Auto-generated constructor stub } } - run add constructor from superclass inside sub observe: the dialog offeres Object(), however generate a default constructor results in a compile error since A doesn't provide a default constructor. | verified fixed | cf270d6 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddUnimplementedConstructorsTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedConstructorsOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddUnimplementedConstructorsAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateNewConstructorUsingFieldsAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T15:36:59Z" | "2005-05-30T16:20:00Z" |
94,557 | Bug 94557 Infere type arguments active for classses not on build path | - create a class not on the build path - select a member in the outliner - activate Infere ... Observe: the refactoring comes up. A dialog box should be shown instead. | verified fixed | 053ed40 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringExecutionStarter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ActionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ActionUtil.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T13:14:54Z" | "2005-05-10T21:20:00Z" |
97,671 | Bug 97671 [preferences] Java Preference Pages using in accessible Color selection | RC1 The Linked Mode and Syntax colouring pages are both using a color button with no accessibility information. When someone using a screen reader selects it they will get no feedback as to what the button is for - just a random graphic. I assume you are not using the JFace ColorSelector as that has an accessible listener. Here is our code in ColorSelector if you need it for reference: fButton.getAccessible().addAccessibleListener(new AccessibleAdapter() { /* * (non-Javadoc) * * @see org.eclipse.swt.accessibility.AccessibleAdapter#getName(org.eclipse.swt.accessibility.AccessibleEvent) */ public void getName(AccessibleEvent e) { e.result = JFaceResources.getString("ColorSelector.Name"); //$NON-NLS-1$ } }); | verified fixed | fae00c8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ColorEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorColoringConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/LinkedModeConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PropertiesFileEditorPreferencePage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T13:12:00Z" | "2005-05-31T20:06:40Z" |
94,783 | Bug 94783 [5.0] for/foreach templates insert fully-qualified name of nested parameterized types | I20050509-2010 for/foreach templates insert fully-qualified name of nested parameterized types: void loop(List<Integer>[] arry) { for // with temporaty variable } void loop2(List<List<Integer>> list) { foreach } In both cases, the proposed type is "List<java.lang.Integer>". | verified fixed | 47ac2e4 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitCompletion.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T10:36:07Z" | "2005-05-11T16:46:40Z" |
97,433 | Bug 97433 [templates] iterable_element gives up on collection of generic types | In RC1. Create this method: private static void count(Class<?>... classes) { fore } The template completion suggests "name" as the name of the element variable. Taking out the type parameter gives private static void count(Class... classes) { fore } Here, the template suggests "class1", which is much nicer. | verified fixed | 645e748 | ["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 | "2005-06-01T10:35:51Z" | "2005-05-31T11:46:40Z" |
96,771 | Bug 96771 Generate Delegate Methods method order [source actions] | In the tree viewer: methods should be presented in alphabetical order and not by class/super(s). This is a regression to 3.0.x | verified fixed | a3587b4 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateConstructorUsingFieldsContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddDelegateMethodsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T10:30:12Z" | "2005-05-26T12:20:00Z" |
97,397 | Bug 97397 [Refactor] Change Method Signature - Varargs not allowed | Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a Method public void foo(String... strings) { } 2.) Call Refactor > Change Method Signature on foo() 3.) Edit the Parameter "String... strings" 4.) Remove a single point from "String..." in the Type Input 5.) Add a single point to the Type Actual Results: "String..." is not a valid parameter Type Name Expected Results: "String..." is valid Regards, Ben | verified fixed | f74a027 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/ParameterInfo.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/TypeContextChecker.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ParameterEditDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T10:16:36Z" | "2005-05-31T09:00:00Z" |
97,431 | Bug 97431 [Refactor] Convert anonymous to nested on Generic - Compile Errors | Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a class Foo like this: enum Direction { UP, DOWN, LEFT, RIGHT; } public class Foo { void foo() { new Object() { Direction dir = Direction.UP; }; } } 2.) Click into the anonymous class and call Refactor > Convert Anonymous Class to nested 3.) Call the nested Class "Bar" Actual Results: Compile errors Expected Results: No Compile errors - new Bar(UP); should be new Bar(Direction.UP); - Direction dir = Direction.up; should be Direction dir = Direction.UP; Regards, Ben | verified fixed | e27a94b | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ConvertAnonymousToNestedRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T09:45:35Z" | "2005-05-31T11:46:40Z" |
97,474 | Bug 97474 [typing] Moves line down/up with javadoc corrupts source | If you have a simple class with 2 methods that both have javadoc and attempt to use the "move line up/ down" feature in the editor and move one through the other the methods get corrupted. I'll create an attachment with a before and after. | verified fixed | 0a556c8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IndentUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaMoveLinesAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-06-01T09:04:48Z" | "2005-05-31T14:33:20Z" |
97,402 | Bug 97402 Save Failed: org.eclipse.jdt.internal.compiler.ast.LocalDeclaration | Version: 3.1.0 Build id: I20050527-1300 (RC1) Steps to reproduce: 1.) Have a Class Foo like this: public class Foo { private static void foo() { @interface Bar { public String bar = "Hu"; } } } 2.) Save Actual Results: Error Dialog showing with the message: Save Failed: org.eclipse.jdt.internal.compiler.ast.LocalDeclaration Expected Results: No error Dialog Regards, Ben | verified fixed | 10e26cf | ["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 | "2005-06-01T08:29:50Z" | "2005-05-31T09:00:00Z" |
89,950 | Bug 89950 [5.0] Mark Occurrences should mark all declaration-equivalent types | null | verified fixed | 642dc56 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T20:37:23Z" | "2005-04-01T12:53:20Z" |
97,026 | Bug 97026 Extract Interface misses type reference to replace [refactoring] | I20050527-0010 Steps to reproduce: - Create Junit project - Extract interface from TestFailure, using all methods -> One reference in DefaultFailureDetailView is not updated | verified fixed | 5ca3573 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeRefactoringProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T15:26:45Z" | "2005-05-27T16:06:40Z" |
97,111 | Bug 97111 Generate Delegate Methods generates unnecessary TODO tags and synchronized modifiers | Rather than adding a method that delegates to the selected field, it creates the correct methods, but uses the "Method Body" code template for the method body. So instead of generating: public String getStuff() { return myField.getStuff(); } it generates: public String getStuff() { //TODO } | verified fixed | f2068d6 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T10:19:02Z" | "2005-05-28T11:33:20Z" |
97,283 | Bug 97283 [quick fix] enhanced for loop should not show up on 1.4 projects | RC1 I also get the enhanced for loop proposals in a 1.4 project | verified fixed | a0538c8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertForLoopProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertIterableLoopProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T09:21:55Z" | "2005-05-30T16:20:00Z" |
75,336 | Bug 75336 RemoteTestRunner.runFailed omits stack trace [JUnit] | i200409211200 RemoteTestRunner.runFailed omits the stack trace, just prints the exception message to the console. I was having a NPE while building a test suite, but the only feedback I would get would be: Failed to invoke suite(): java.lang.NullPointerException The code in the suite method was not trivial, so I could only figure out where it was happening by debugging with an NPE-based breakpoint. | verified fixed | f63e4ee | ["org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T09:10:12Z" | "2004-09-29T17:46:40Z" |
97,214 | Bug 97214 [misc] Opening a generated *.class file throws IllegalStateException | 3.1 RC1 Opening a generated *.class file throws IllegalStateException !ENTRY org.eclipse.jdt.ui 4 2 2005-05-30 12:38:04.976 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jdt.ui". !STACK 0 java.lang.IllegalStateException at org.eclipse.jdt.core.dom.ASTParser.internalCreateAST(ASTParser.java:752) at org.eclipse.jdt.core.dom.ASTParser.createAST(ASTParser.java:576) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider$1.run(ASTProvider.java:577) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1038) at org.eclipse.core.runtime.Platform.run(Platform.java:775) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider.createAST(ASTProvider.java:574) at org.eclipse.jdt.internal.ui.javaeditor.ASTProvider.getAST(ASTProvider.java:495) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$7.run(JavaEditor.java:3092) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) | verified fixed | e6b3293 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ASTProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T08:34:00Z" | "2005-05-30T10:46:40Z" |
96,788 | Bug 96788 Syntax coloring preferences are no longer sorter | N20050526-0010 Sorting when lost when switching from 3.0 table to 3.1 tree layout. Approving for RC1. | verified fixed | b93d3ff | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorColoringConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-31T08:00:04Z" | "2005-05-26T15:06:40Z" |
96,814 | Bug 96814 Invalid thread access in "Searching for all types" - Open Type dialog | N20050526-0010 In a new workspace, I added all plugins to Java Search. Then I hit Ctrl+Shift+T. After the indexes were built and I started typing, a job error message came up: !ENTRY org.eclipse.core.runtime 4 2 2005-05-26 17:30:20.949 !MESSAGE An internal error occurred during: "Searching for all types". !STACK 0 org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:2940) at org.eclipse.swt.SWT.error(SWT.java:2863) at org.eclipse.swt.SWT.error(SWT.java:2834) at org.eclipse.swt.widgets.Display.error(Display.java:784) at org.eclipse.swt.widgets.Display.checkDevice(Display.java:613) at org.eclipse.swt.widgets.Display.disposeExec(Display.java:729) at org.eclipse.jdt.internal.ui.viewsupport.ImageDescriptorRegistry.hookDisplay(ImageDescriptorRegistry.java:85) at org.eclipse.jdt.internal.ui.viewsupport.ImageDescriptorRegistry.<init>(ImageDescriptorRegistry.java:48) at org.eclipse.jdt.internal.ui.viewsupport.ImageDescriptorRegistry.<init>(ImageDescriptorRegistry.java:36) at org.eclipse.jdt.internal.ui.JavaPlugin.internalGetImageDescriptorRegistry(JavaPlugin.java:790) at org.eclipse.jdt.internal.ui.JavaPlugin.getImageDescriptorRegistry(JavaPlugin.java:342) at org.eclipse.jdt.internal.ui.dialogs.TypeInfoViewer$TypeInfoLabelProvider.getImage(TypeInfoViewer.java:333) at org.eclipse.jdt.internal.ui.dialogs.TypeInfoViewer$AbstractSearchJob.internalRun(TypeInfoViewer.java:552) at org.eclipse.jdt.internal.ui.dialogs.TypeInfoViewer$AbstractSearchJob.doRun(TypeInfoViewer.java:473) at org.eclipse.jdt.internal.ui.dialogs.TypeInfoViewer$AbstractJob.run(TypeInfoViewer.java:439) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) | verified fixed | 7e8173e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeInfoViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-27T09:02:38Z" | "2005-05-26T15:06:40Z" |
65,645 | Bug 65645 [preferences][projection] Don't use code folding by default | Code folding is turned on by default in current builds. I can imagine people wanting this feature (I'll probably use it for imports), but he default behavior should not be to hide code from the user. Even as an Eclipse committer who's heard all the buzzing lately about code folding, it took me a minute of gaping at my editor in confusion to realize why I couldn't see my code. | resolved wontfix | d8c4f19 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-27T08:04:13Z" | "2004-06-03T22:00:00Z" |
96,793 | Bug 96793 Enable rendering of resolved information for fields | null | verified fixed | 5e0d308 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabels.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T15:43:58Z" | "2005-05-26T15:06:40Z" |
80,473 | Bug 80473 [rulers][preferences] allow disabling of range indicator on left of java editor | null | verified fixed | 5ceda1d | ["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 | "2005-05-26T15:13:55Z" | "2004-12-08T15:33:20Z" |
89,157 | Bug 89157 [JUnit] Search for referring tests does nothing in non Java editors | Version: 3.1.0 Build id: I20050322-1757 When you select "Search|Referring Tests..." from any non java editor nothing hapens at all. It should popup the same info dialog that is used when the action run with no java element selected in the java editor. It would be even better if this action could be disabled when it is not applicable. | verified fixed | 4035bc5 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/GotoReferencedTestAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T13:58:49Z" | "2005-03-26T06:53:20Z" |
86,298 | Bug 86298 [JUnit] Enter key does not open selected testcase | Steps 1: execute some JUnit test 2: select some testcase in the Failures box ore the Hierarchy box 3. hit the enter key. Nothing happens. I think, as with a double click, the source of the selected testcase should open. | verified fixed | 641e03f | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestHierarchyTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T13:56:51Z" | "2005-02-23T17:33:20Z" |
83,498 | Bug 83498 [JUnit] Recreate Test Suite should be more lenient [JUnit] | The code formatter will format //$JUnit-BEGIN$ to // $JUnit-BEGIN$ @@@@ Afterwards "Recreate Test Suite" issues a warning. It should not matter whether there are spaces between // and $JUnit-BEGIN$. | verified fixed | 9e96006 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/NewTestSuiteCreationWizard.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/TestSuiteClassListRange.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/UpdateTestSuite.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/wizards/NewTestSuiteWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T13:30:58Z" | "2005-01-23T11:33:20Z" |
85,260 | Bug 85260 IAE when trying to copy name of TestSuite to clipboard [junit] | null | verified fixed | 28f0aea | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/CopyTraceAction.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/FailureTrace.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitCopyAction.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestHierarchyTab.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T12:50:01Z" | "2005-02-15T15:06:40Z" |
79,976 | Bug 79976 RippleMethodFinder doesn't work with generics | See RippleMethodFinderTests. | verified fixed | fae8c48 | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameVirtualMethodInClass/testGenerics3/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameVirtualMethodInClass/testGenerics3/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameVirtualMethodInClass/testVarargs2/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RippleMethodFinder/A_test9.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RenameMethodTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RenameStaticMethodTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RenameVirtualMethodInClassTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RippleMethodFinderTests.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T12:44:32Z" | "2004-12-02T09:33:20Z" |
96,748 | Bug 96748 [content assist] invalid positioning of parameter hints | build 200505250010 1) have the following code snippet class A { boolean method1(String arg1, String arg2) { return true; } boolean method2() { return method1("dsds",); } } 2) invoke content assist at directly after the opening '(' in the method1 call --> parameter hint comes up, OK 3) move caret behind the ',' --> parameter hint updates, highlighting the second parameter, OK 4) invoke content assist --> new parameter hint comes up, incorrectly placed and incorrectly initialized | verified fixed | 0b590f4 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/GenericJavaTypeProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaMethodCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodProposalInfo.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ProposalContextInformation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T12:32:41Z" | "2005-05-26T06:46:40Z" |
90,832 | Bug 90832 [JUnit] Run As... launches application on cancel. | Version: 3.1.0 Build id: N20050408-0010 - created two JUnit plugin test launchs - Then from the package explorer chose the RCPTestSuite in org.eclipse.ui.tests.rcp - popup the menu choose Run As > JUnit Plugin Test - dialog opens with two choices, - hit cancel - test launched anyway | verified fixed | 11e9bc8 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitLaunchShortcut.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-26T10:23:47Z" | "2005-04-08T17:06:40Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.