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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
93,541 | Bug 93541 [refactoring] All extract refactorings and quick fixes fail with wildcard return type | N20050503-0010 All extract refactorings and quick fixes fail in examples with a wildcard return type: static ArrayList<? extends Number> al= new ArrayList<Integer>(); void test () { al.get(0); //<-select method invocation expression and extract } - Failing refactorings: Extract Local Variable, Extract Constant, Introduce Parameter, Extract Method - Failing Quick Assists: Assign statement to new local variable, .. to new field I think we should have one utility method with this fix, since all affected parties currently just use the import rewrite and get back a wildcard type from there. The correct declaration type for wildcards is: - the upper bound of the wildcard if it exists, - java.lang.Object otherwise | verified fixed | 28b882b | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractConstant/canExtract/A_test29_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractConstant/canExtract/A_test29_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractConstant/canExtract/A_test30_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractConstant/canExtract/A_test30_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1111.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1112.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1111.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1112.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test90_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test90_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test91_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test91_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/simple/Wildcard1.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/simple/Wildcard2.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/simple/out/Wildcard1.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/simple/out/Wildcard2.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractConstantTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractTempTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/IntroduceParameterTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/infra/TextRangeUtil.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/Bindings.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractConstantRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceParameterRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-16T21:18:56Z" | "2005-05-03T14:20:00Z" |
95,117 | Bug 95117 Quick fix: Create constructor with type parameter throws BadLocationException | Against I20050513-0010. Given code: public class Exposer<DECORATED> { public static <DECORATED> Exposer<DECORATED> createAnnotationTest( Class<? extends DECORATED> clazz, String methodName) { return new Exposer<DECORATED>(clazz, methodName); } } There's a compile error because of the nonexistent constructor. Quick fix to create the constructor, and you get the below error logged and an error dialog. The quick fix is actually correctly applied, however. org.eclipse.core.runtime.CoreException[4]: org.eclipse.jface.text.BadLocationException at org.eclipse.jface.text.link.LinkedPositionGroup.enforceEqualContent(LinkedPositionGroup.java:128) at org.eclipse.jface.text.link.LinkedPositionGroup.addPosition(LinkedPositionGroup.java:110) at org.eclipse.jdt.internal.ui.text.correction.LinkedCorrectionProposal.enterLinkedMode(LinkedCorrectionProposal.java:249) at org.eclipse.jdt.internal.ui.text.correction.LinkedCorrectionProposal.performChange(LinkedCorrectionProposal.java:218) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.apply(CUCorrectionProposal.java:303) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:457) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.selectProposalWithMask(CompletionProposalPopup.java:399) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.verifyKey(CompletionProposalPopup.java:822) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:659) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5135) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4870) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:879) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:875) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1182) 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:3513) 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:2552) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1601) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1565) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:315) 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:230) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:371) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:160) 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:330) at org.eclipse.core.launcher.Main.basicRun(Main.java:274) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) | verified fixed | e2035c9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewMethodCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-13T16:14:20Z" | "2005-05-13T13:13:20Z" |
94,923 | Bug 94923 Filter checkbox in Project Specific Configuration dialog should be left aligned [preferences] | I20050509-2010 summary says it all | verified fixed | 9a66994 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ProjectSelectionDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-13T13:58:39Z" | "2005-05-12T09:26:40Z" |
95,000 | Bug 95000 CCE trying to use quickfix in an annotation type | Build ID: I20050510-0010 + HEAD of JDT/UI and JDT/Core. Steps to reproduce: 1) Create a class with this source: import java.lang.annotation.*; @Target(ElementType) @interface MyAnnotation { } ElementType is reported as an error. Try to use quickfix to fix it. Caused by: java.lang.ClassCastException: org.eclipse.jdt.core.dom.AnnotationTypeDeclaration at org.eclipse.jdt.internal.ui.text.correction.NewVariableCompletionProposal.evaluateFieldModifiers(NewVariableCompletionProposal.java:428) at org.eclipse.jdt.internal.ui.text.correction.NewVariableCompletionProposal.doAddField(NewVariableCompletionProposal.java:334) at org.eclipse.jdt.internal.ui.text.correction.NewVariableCompletionProposal.getRewrite(NewVariableCompletionProposal.java:74) at org.eclipse.jdt.internal.ui.text.correction.ASTRewriteCorrectionProposal.addEdits(ASTRewriteCorrectionProposal.java:61) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.initializeTextChange(CUCorrectionProposal.java:135) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.getAdditionalProposalInfo(CUCorrectionProposal.java:181) at org.eclipse.jface.text.contentassist.AdditionalInfoController.computeInformation(AdditionalInfoController.java:221) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:820) at org.eclipse.jface.text.AbstractInformationControlManager.showInformation(AbstractInformationControlManager.java:810) at org.eclipse.jface.text.contentassist.AdditionalInfoController$1.run(AdditionalInfoController.java:173) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:118) ... 18 more | verified fixed | 60b1598 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-13T10:18:38Z" | "2005-05-12T17:46:40Z" |
81,105 | Bug 81105 [quick fix] Change field to method: does not appear when non-accessible field exists | I20041214-2000 import java.util.HashMap; public class A { { int s= new HashMap().size; // No suggestion int s2= new HashMap().siz; // OK } } | verified fixed | 41b71e8 | ["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-05-13T09:15:38Z" | "2004-12-15T11:26:40Z" |
94,948 | Bug 94948 Externalize strings quickfix proposal has no additional info [quickfix] | N20050512-0010 - Create unexternalized string - Invoke quickfix - The proposal 'Externalize strings' which invokes the refactoring has no associated additional info string | verified fixed | b907172 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-13T09:14:57Z" | "2005-05-12T12:13:20Z" |
76,816 | Bug 76816 [Wizards] Text and location of Open Untitled Text File | I suggest we change the text for the "Open Untitled Text File" menu option for two reasons: 1) you are not actually opening a file, you are creating a new file hence use of "open" is misleading 2) it is a bit lengthy for no real benefit. I suggest changing it to one of the following: "New Text File" "New File" "New Blank File" | verified fixed | a85f418 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaHierarchyPerspectiveFactory.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPerspectiveFactory.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPerspectiveFactory.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-12T20:02:54Z" | "2004-10-22T15:46:40Z" |
94,777 | Bug 94777 new project wizard: remove button enablement | I20050509-2000 (M7 test pass) new project wizard, 2nd page, projects dependencies tab: - the 'Remove' button is always enabled, even when the selection is on a access rule definition. Pressing it has no effect. It should only be enabled if the selection exclusively containes projects. | resolved fixed | 5229b6f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/ProjectsWorkbookPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-12T13:33:48Z" | "2005-05-11T16:46:40Z" |
94,921 | Bug 94921 Inconsistent hyperlink descriptions in Java Editor preference page [preferences] | I20050509-2010: Typing: Hover of compiler warnings and spell checking preferences links show same description Code Assist: Missing hover for restricted references link Syntax Coloring: Wrong description for text editors link | verified fixed | 1e71054 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorColoringConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java", "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-05-12T13:22:19Z" | "2005-05-12T09:26:40Z" |
94,709 | Bug 94709 Quick fix to create method on annotation fails | Given code: import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Retention(RetentionPolicy.RUNTIME) public @interface IsTest { String setUp() default ""; } class Exposer { private void foo() { IsTest annotation = getClass().getAnnotation(IsTest.class); String tearDown = annotation.tearDown(); } } There's a compile error on annotation.tearDown. Try to quick fix with "Create method 'tearDown'...". Nothing happens, and the following is logged in the Error Log: java.lang.ClassCastException: org.eclipse.jdt.core.dom.AnnotationTypeDeclaration at org.eclipse.jdt.internal.ui.text.correction.NewMethodCompletionProposal.evaluateModifiers(NewMethodCompletionProposal.java:69) at org.eclipse.jdt.internal.ui.text.correction.AbstractMethodCompletionProposal.getStub(AbstractMethodCompletionProposal.java:110) at org.eclipse.jdt.internal.ui.text.correction.AbstractMethodCompletionProposal.getRewrite(AbstractMethodCompletionProposal.java:82) at org.eclipse.jdt.internal.ui.text.correction.ASTRewriteCorrectionProposal.addEdits(ASTRewriteCorrectionProposal.java:61) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.initializeTextChange(CUCorrectionProposal.java:135) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.performChange(CUCorrectionProposal.java:272) at org.eclipse.jdt.internal.ui.text.correction.LinkedCorrectionProposal.performChange(LinkedCorrectionProposal.java:210) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.apply(CUCorrectionProposal.java:303) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:457) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.selectProposalWithMask(CompletionProposalPopup.java:399) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.verifyKey(CompletionProposalPopup.java:822) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:659) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5135) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4870) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:879) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:875) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1182) 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:3493) 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:2532) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1601) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1565) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:315) 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:230) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) 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:328) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:974) at org.eclipse.core.launcher.Main.main(Main.java:950) | verified fixed | 1ad2bbc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewMethodCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-12T13:20:59Z" | "2005-05-11T14:00:00Z" |
94,652 | Bug 94652 NPE when clearing Javadoc location property | I20050509-2010 - changed the Javadoc location property for a project to a folder that doesn't contain a package-list.html - opened properties dialog again and emptied ythe location. - pressed OK java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:327) 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.preferences.JavadocConfigurationPropertyPage.performOk(JavadocConfigurationPropertyPage.java:184) at org.eclipse.jface.preference.PreferenceDialog$11.run(PreferenceDialog.java:850) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1029) at org.eclipse.core.runtime.Platform.run(Platform.java:775) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:830) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:295) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:218) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:127) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:157) 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:1671) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1711) at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:310) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:351) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:530) at org.eclipse.ui.internal.preferences.WorkingCopyPreferences.flush(WorkingCopyPreferences.java:475) at org.eclipse.ui.internal.preferences.WorkingCopyManager.applyChanges(WorkingCopyManager.java:64) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:298) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:218) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:127) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:157) 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:1671) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1711) at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:310) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:351) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:530) at org.eclipse.ui.internal.preferences.WorkingCopyPreferences.flush(WorkingCopyPreferences.java:475) at org.eclipse.ui.internal.preferences.WorkingCopyManager.applyChanges(WorkingCopyManager.java:64) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:298) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:218) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:127) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:157) 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:1671) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1711) at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:310) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:351) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:530) at org.eclipse.ui.internal.preferences.WorkingCopyPreferences.flush(WorkingCopyPreferences.java:475) at org.eclipse.ui.internal.preferences.WorkingCopyManager.applyChanges(WorkingCopyManager.java:64) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:298) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:218) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:127) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:157) 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:1671) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1711) at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:310) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:351) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:530) at org.eclipse.ui.internal.preferences.WorkingCopyPreferences.flush(WorkingCopyPreferences.java:475) at org.eclipse.ui.internal.preferences.WorkingCopyManager.applyChanges(WorkingCopyManager.java:64) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:298) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:218) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.runEventLoop(EventLoopProgressMonitor.java:123) at org.eclipse.ui.internal.dialogs.EventLoopProgressMonitor.isCanceled(EventLoopProgressMonitor.java:97) at org.eclipse.core.internal.jobs.ThreadJob.isCanceled(ThreadJob.java:127) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:157) 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:1671) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1711) at org.eclipse.core.internal.resources.ProjectPreferences.save(ProjectPreferences.java:310) at org.eclipse.core.internal.preferences.EclipsePreferences.flush(EclipsePreferences.java:351) at org.eclipse.core.internal.resources.ProjectPreferences.flush(ProjectPreferences.java:530) at org.eclipse.ui.internal.preferences.WorkingCopyPreferences.flush(WorkingCopyPreferences.java:475) at org.eclipse.ui.internal.preferences.WorkingCopyManager.applyChanges(WorkingCopyManager.java:64) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.okPressed(FilteredPreferenceDialog.java:298) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:218) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1601) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1565) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:315) 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:230) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) 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:328) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:974) at org.eclipse.core.launcher.Main.main(Main.java:950) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.javadoc.JavaDocLocations.setProjectJavadocLocation(JavaDocLocations.java:233) at org.eclipse.jdt.ui.JavaUI.setProjectJavadocLocation(JavaUI.java:770) at org.eclipse.jdt.internal.ui.preferences.JavadocConfigurationPropertyPage$1.run(JavadocConfigurationPropertyPage.java:210) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Root exception: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.javadoc.JavaDocLocations.setProjectJavadocLocation(JavaDocLocations.java:233) at org.eclipse.jdt.ui.JavaUI.setProjectJavadocLocation(JavaUI.java:770) at org.eclipse.jdt.internal.ui.preferences.JavadocConfigurationPropertyPage$1.run(JavadocConfigurationPropertyPage.java:210) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) | resolved fixed | 3f9c13a | ["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-05-12T13:09:17Z" | "2005-05-11T11:13:20Z" |
94,876 | Bug 94876 Open Type dialog's OK button is enabled when there are no matches to filter | build I20050509-2010 - Ctrl+Shift+T - type: foobar <Enter> - no types match the prefix, but Enter is allowed because the OK button is enabled OK should only be enabled if one of the matching types is selected. If no types match, chances are it's a typo and the user should have the chance to correct it without having to re-invoke the dialog. | verified fixed | 45ebad8 | ["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-12T12:58:26Z" | "2005-05-12T01:06:40Z" |
94,255 | Bug 94255 Implemented Interfaces Section: Adding the same Interface multiple times | Version: 3.1.0 Build id: I20050509-2010 Steps to reproduce: 1.) Create a new Class 2.) Press the "Add..." Button to add an Interface 3.) Type in Cloneable 4.) Press the "Add" Button multiple Times 5.) Press OK Actual Results: The Interface is added multiple times. Expected Results: The Interface is only added once. Regards, Ben | resolved fixed | 5424520 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/SuperInterfaceSelectionDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-12T12:57:46Z" | "2005-05-10T10:13:20Z" |
94,562 | Bug 94562 AFE when switching between editor not on the build path | RC0 I have two editors open on CUs which both aren't on the build path (one from repository, one an a Cu stored in a resource folder). Switch from the one from the repository to the other one using Ctrl+F6 produced the following exception. After getting this exception I now get it whenever I activate the editor. Even close doesn't work anymore since it generates the exception. This happens for the CU stored in the folder not on the build path org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at org.eclipse.jface.util.Assert.isNotNull(Assert.java:149) at org.eclipse.jface.util.Assert.isNotNull(Assert.java:125) at org.eclipse.jface.viewers.StructuredSelection.<init>(StructuredSelection.java:66) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.getAdapter(JavaEditor.java:1859) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.getAdapter(CompilationUnitEditor.java:1933) at org.eclipse.ui.internal.ShowInMenu.getShowInSource(ShowInMenu.java:212) at org.eclipse.ui.internal.ShowInMenu.getContext(ShowInMenu.java:250) at org.eclipse.ui.internal.ShowInMenu.fillMenu(ShowInMenu.java:120) at org.eclipse.ui.internal.ShowInMenu.fill(ShowInMenu.java:95) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:627) at org.eclipse.jface.action.MenuManager.updateAll(MenuManager.java:721) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:646) at org.eclipse.jface.action.MenuManager.updateAll(MenuManager.java:721) at org.eclipse.jface.action.MenuManager.update(MenuManager.java:646) at org.eclipse.jface.action.MenuManager.updateAll(MenuManager.java:721) at org.eclipse.ui.internal.WorkbenchWindow.updateActionBars(WorkbenchWindow.java:2490) at org.eclipse.ui.internal.WorkbenchPage.updateActionBars(WorkbenchPage.java:3164) at org.eclipse.ui.internal.WorkbenchPage$ActionSwitcher.updateActivePart(WorkbenchPage.java:319) at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:2742) at org.eclipse.ui.internal.WorkbenchPage.requestActivation(WorkbenchPage.java:2392) at org.eclipse.ui.internal.PartPane.requestActivation(PartPane.java:246) at org.eclipse.ui.internal.PartPane.setFocus(PartPane.java:278) at org.eclipse.ui.internal.PartStack.presentationSelectionChanged(PartStack.java:748) at org.eclipse.ui.internal.PartStack.access$0(PartStack.java:731) at org.eclipse.ui.internal.PartStack$1.selectPart(PartStack.java:115) at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation$1.handleEvent(TabbedStackPresentation.java:126) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:267) at org.eclipse.ui.internal.presentations.util.AbstractTabFolder.fireEvent(AbstractTabFolder.java:276) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder.access$1(DefaultTabFolder.java:1) at org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder$2.handleEvent(DefaultTabFolder.java:80) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:659) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:3137) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1921) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:288) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2901) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2534) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1601) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1565) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:315) 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:230) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) 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:328) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:974) at org.eclipse.core.launcher.Main.main(Main.java:950) | verified fixed | 90ec025 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.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-05-12T12:37:43Z" | "2005-05-10T21:20:00Z" |
94,367 | Bug 94367 cannot clear compiler compliance setting at the project level | i200505092010 Cannot disable the Java compiler project-specific preferences for some projects. Steps to reproduce: 1 - check out from CVS a Java project that has project-specific Java compiler settings enabled (example: org.eclipse.core.runtime). 2 - open the properties dialog for the project, select the Java compiler node, disable project-specific Java compiler preferences. 3 - Commit the changes by pressing "Ok" and reopen the properties dialog. It looks like the settings were not saved (project-specific settings are still enabled). | resolved fixed | 69e4d16 | ["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-05-12T11:10:49Z" | "2005-05-10T15:46:40Z" |
94,643 | Bug 94643 [preferences] Java Editor Preferences page: mnemonics only work on second stroke | I20050509-2010 On the Java > Editor preference page, I have to press a mnemonic twice to make it really work. E.g. - click on "Mark Occurrences", press Alt+O -> focus is somewhere "between" tab and contents - press Alt+O again -> checkbox gets switched now | verified fixed | 2b9bd65 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ScrolledPageContent.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-12T10:07:32Z" | "2005-05-11T11:13:20Z" |
94,766 | Bug 94766 [nls tooling] NLS: when switching to new Eclipse mode the common prefix should change | When switch from traditional mode to Eclipse mode the wizard should automatically adjust the keys (e.g. exchange the . with a _). Currently you simply get a message that some keys are invalid but actually you don't have a clue why they are. Some better error message would already improve this. For example if in Eclipse mode say that keys can't contain '.' | verified fixed | 3bd1cfe | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/NLSUIMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-11T17:17:47Z" | "2005-05-11T16:46:40Z" |
94,242 | Bug 94242 QuickFix for serialversionuid hangs | This occurs with 3.1M6 (and latest clean I-build 20050506-1600) using JDK 1.5.0_02 This is similar to, but different from 83944 Intermittently (can be as often as 1 in 2), when I do a QuickFix on a missing serialversionuid, the Progress Information dialog comes up and hangs at what looks like about 70-75% complete. (message box text is "Computing serial version ID...", with progress text of "Starting virtual machine...") Haven't absolutely pinned it down to whether it behaves differently on inner or top-level classes, but it has just happened for me on a top-level one - and appears to be repeating. When this occurs, Cancel is enabled. If pressed, it disables but nothing else happens. Even when left for some time, it does not complete - and no activity is apparent in Windows Task Manager. At this point, the only solutions are to kill Eclipse, or to go to Windows Task Manager and kill off the javaw.exe that has been spawned (the one that is 8-9k in mem usage) If you kill off the spawned javaw.exe, the QuickFix appears to complete normally - the progress dialog closes and the appropriate code is inserted, control returns to the user and all seems well. On examination of the .log file, I see the following for each occurrence of the crash: !ENTRY org.eclipse.jdt.ui 4 10001 2005-05-10 09:51:38.140 !MESSAGE Internal Error !STACK 0 java.io.EOFException at java.io.DataInputStream.readFully(DataInputStream.java:178) at java.io.DataInputStream.readLong(DataInputStream.java:380) at org.eclipse.jdt.internal.ui.text.correction.SerialVersionLaunchConfigurationDel egate$SerialVersionRunner.run (SerialVersionLaunchConfigurationDelegate.java:190) at org.eclipse.jdt.internal.ui.text.correction.SerialVersionLaunchConfigurationDel egate.launch(SerialVersionLaunchConfigurationDelegate.java:309) at org.eclipse.debug.internal.core.LaunchConfiguration.launch (LaunchConfiguration.java:590) at org.eclipse.jdt.internal.ui.text.correction.SerialVersionHashProposal.computeDe faultExpression(SerialVersionHashProposal.java:222) at org.eclipse.jdt.internal.ui.text.correction.SerialVersionHashProposal$3.run (SerialVersionHashProposal.java:156) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:113) | verified fixed | ed40049 | ["org.eclipse.jdt.ui/serial", "support/org/eclipse/jdt/internal/ui/text/correction/SerialVersionComputer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/SerialVersionLaunchConfigurationDelegate.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-11T16:39:41Z" | "2005-05-10T10:13:20Z" |
94,676 | Bug 94676 [Refactor] Getting InvocationTargetException on this Class | Version: 3.1.0 Build id: I20050509-2010 Steps to reproduce: 1.) Create class Foo with this Contents: public class Foo { public void foo() { System.out.printf("%s %5d%n", 1, 1); } } 2. a) Call Refactor > Extract Interface 2. b) Call Refactor > Use Supertype where Possible Actual Results: The Error log shows a new Entry (see Attachment) Expected Results: - Regards, Ben | verified fixed | 9557164 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/constraints/SuperTypeConstraintsModel.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-11T13:42:38Z" | "2005-05-11T14:00:00Z" |
94,261 | Bug 94261 [typing] Correct indent on paste broken? | 20050509-2010 - select a method in the editor so that the selection contains the full lines (including indents before method) - press enter after the closing bracket (indent added) and paste - result is class A { void foo() { } void foo() { } } | verified fixed | 2d1ae6b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-11T08:08:24Z" | "2005-05-10T10:13:20Z" |
88,774 | Bug 88774 [preferences][content assist] New Jdtcore options to add inside preference page | build I20050322 + Jdtcore head JavaCore#CODEASSIST_FORBIDDEN_REFERENCE_CHECK and JavaCore#CODEASSIST_DISCOURAGED_REFERENCE_CHECK options have been added. If these options are enabled non accessible types will not be proposed by completion. If these options are disabled non accessible types will be proposed but will be less relevant than other completion. JavaCore#CODEASSIST_FORBIDDEN_REFERENCE_CHECK replace the old option JavaCore#CODEASSIST_ACCESS_RESRICTION_CHECK. These new options need to be show inside the code assist preferences. | verified fixed | 90fe5a9 | ["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-05-10T10:48:18Z" | "2005-03-22T16:46:40Z" |
93,552 | Bug 93552 [5.0][hovering] Hover for binary type variable is '/' | N20050503-0010 - open java.util.ArrayList from a 5.0 rt.jar - hover over "E" in "public class ArrayList<E>" -> hover is just a '/' (slash) For source types, the hover text is the type variable name. | resolved fixed | a13ae4b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T21:09:58Z" | "2005-05-03T17:06:40Z" |
65,540 | Bug 65540 JUnit does not give any feedback (i.e. busy) when starting tests. [JUnit] | build I20040529 When running tests (especially JUnit Plug-in Test suites) there is a long delay before the test starts, during this time you are not given feedback as to what is happening and tend to assume something went wrong. | verified fixed | 2333835 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitMessages.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T19:17:34Z" | "2004-06-03T13:40:00Z" |
84,966 | Bug 84966 JavaHistoryActionImpl.getEditor(IFile) picks first dirty editor, ignoring argument | null | resolved fixed | ffb0796 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaHistoryActionImpl.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T15:31:17Z" | "2005-02-11T02:46:40Z" |
94,012 | Bug 94012 [preferences] [compiler] Surface compiler option for disabling @SuppressWarnings | 20050505 Please surface the following compiler options: Added compiler option to control whether @SuppressWarning annotations are active or not. By disabling them, one can quickly revive all hidden warnings. * COMPILER / Determine whether @SuppressWarnings is effective * When enabled, the @SuppressWarnings annotation can be used to suppress some compiler warnings. * When disabled, all @SupressWarnings annotations are ignored; i.e., warnings are reported. * - option id: "org.eclipse.jdt.core.compiler.problem.suppressWarnings" * - possible values: { "enabled", "disabled" } * - default: "enabled" | resolved fixed | fe0841b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T14:45:56Z" | "2005-05-06T22:53:20Z" |
94,062 | Bug 94062 [1.5][search][annot] search for annotation elements incorrect match range | When searching for references for the following annotation: public @interface Expected { Class value(); } The match range for a use of this annotation is as follows: @Test <|>@Expected(Error.class) public void expectedException() { This is confusing since when the editor doesn't have focus the caret isn't shown and therefore the match isn't visible. | verified fixed | f8da068 | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameMethodInInterface/testAnnotation1/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameMethodInInterface/testAnnotation4/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RenameMethodInInterfaceTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/MethodOccurenceCollector.java", "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/RenameNonVirtualMethodProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T14:12:22Z" | "2005-05-08T19:20:00Z" |
94,020 | Bug 94020 Surround with Try/Catch refactoring modifies (breaks) code | Build 20050505 I highlighted the following code and ran the "Surround With Try/Catch" refactoring. Besides surrounding my code with the correct try/catch statement, the refactoring reordered my lines of code (!!), introducing a compilation error. My code before refactoring: DocumentBuilder builder= DocumentBuilderFactory.newInstance().newDocumentBuilder(); builder.setErrorHandler(new DefaultHandler()); Element root= builder.parse(configuration).getDocumentElement(); My code after the refactoring: Element root; try { root= builder.parse(configuration).getDocumentElement(); DocumentBuilder builder= DocumentBuilderFactory.newInstance().newDocumentBuilder(); builder.setErrorHandler(new DefaultHandler()); } catch (ParserConfigurationException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (SAXException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } | resolved fixed | 38e6e28 | ["org.eclipse.jdt.ui.tests.refactoring/resources/SurroundWithWorkSpace/SurroundWithTests/trycatch_in/TestWrappedLocal7.java", "org.eclipse.jdt.ui.tests.refactoring/resources/SurroundWithWorkSpace/SurroundWithTests/trycatch_out/TestDeclarationInitializer.java", "org.eclipse.jdt.ui.tests.refactoring/resources/SurroundWithWorkSpace/SurroundWithTests/trycatch_out/TestWrappedLocal2.java", "org.eclipse.jdt.ui.tests.refactoring/resources/SurroundWithWorkSpace/SurroundWithTests/trycatch_out/TestWrappedLocal7.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/SurroundWithTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/surround/SurroundWithTryCatchRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T11:37:36Z" | "2005-05-06T22:53:20Z" |
89,036 | Bug 89036 [preferences] Reduce default code assist auto activation delay | null | resolved fixed | bc1c14d | ["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-09T11:01:33Z" | "2005-03-24T21:33:20Z" |
94,090 | Bug 94090 [JUnit] Workspace should take precedence over platform JUnit libraries | When launching a vanilla JUnit test (not PDE test) on a project that contains classes in org.eclipse.jdt.junit.*, the tested project is placed in the classpath of the launched JVM _after_ the jdt.junit.* plug-ins found in the platform. This is inconsistent with other behavior: when Eclipse is being run in the Run-time workbench, or when running a PDE test, the tested project is placed first. | resolved fixed | fba7fd6 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitLaunchConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-09T10:07:43Z" | "2005-05-09T09:13:20Z" |
93,964 | Bug 93964 Failing test case NewForLoopJavaContextTest.testInnerArray() | Build input for I200506-1600 I disabled the failing test case NewForLoopJavaContextTest.testInnerArray() for the build. Expected: for (Inner inner : array) { } Was: for (A.Inner inner : array) { } | resolved fixed | c6d9e41 | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/NewForLoopJavaContextTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-06T17:57:13Z" | "2005-05-06T17:20:00Z" |
93,854 | Bug 93854 IAE in Util.scanTypeSignature when scanning a signature retrieved from a binding key | Thread [main] (Suspended (breakpoint at line 2319 in Util)) Util.scanTypeSignature(char[], int) line: 2319 Signature.getTypeParameters(char[]) line: 1382 Signature.getTypeParameters(String) line: 1407 JavaElementLabels.getTypeLabel(IType, long, StringBuffer) line: 821 JavaElementLabels.getElementLabel(IJavaElement, long, StringBuffer) line: 398 JavaElementLabels.getElementLabel(IJavaElement, long) line: 363 JavaElementLabels.getTextLabel(Object, long) line: 345 HierarchyLabelProvider(JavaUILabelProvider).getText(Object) line: 161 HierarchyLabelProvider.getText(Object) line: 126 DecoratingJavaLabelProvider(DecoratingLabelProvider).getText(Object) line: 118 DecoratingJavaLabelProvider(DecoratingLabelProvider).updateLabel(ViewerLabel, Object) line: 208 TraditionalHierarchyViewer(StructuredViewer).buildLabel(ViewerLabel, Object, IViewerLabelProvider) line: 1846 TraditionalHierarchyViewer(TreeViewer).doUpdateItem(Item, Object) line: 228 AbstractTreeViewer$UpdateItemSafeRunnable.run() line: 85 InternalPlatform.run(ISafeRunnable) line: 1031 Platform.run(ISafeRunnable) line: 757 JFaceUtil$1.run(ISafeRunnable) line: 44 SafeRunnable.run(ISafeRunnable) line: 148 TraditionalHierarchyViewer(AbstractTreeViewer).doUpdateItem(Widget, Object, boolean) line: 621 StructuredViewer$UpdateItemSafeRunnable.run() line: 434 InternalPlatform.run(ISafeRunnable) line: 1031 Platform.run(ISafeRunnable) line: 757 JFaceUtil$1.run(ISafeRunnable) line: 44 SafeRunnable.run(ISafeRunnable) line: 148 TraditionalHierarchyViewer(StructuredViewer).updateItem(Widget, Object) line: 1754 TraditionalHierarchyViewer(AbstractTreeViewer).createTreeItem(Widget, Object, int) line: 535 AbstractTreeViewer$1.run() line: 514 BusyIndicator.showWhile(Display, Runnable) line: 69 TraditionalHierarchyViewer(AbstractTreeViewer).createChildren(Widget) line: 494 TraditionalHierarchyViewer(AbstractTreeViewer).internalExpandToLevel(Widget, int) line: 1120 TraditionalHierarchyViewer(AbstractTreeViewer).internalExpandToLevel(Widget, int) line: 1129 TraditionalHierarchyViewer(AbstractTreeViewer).expandToLevel(Object, int) line: 658 TraditionalHierarchyViewer(AbstractTreeViewer).expandToLevel(int) line: 641 TraditionalHierarchyViewer.updateContent(boolean) line: 61 TypeHierarchyViewPart$11.run() line: 1090 BusyIndicator.showWhile(Display, Runnable) line: 69 TypeHierarchyViewPart.updateHierarchyViewer(boolean) line: 1093 TypeHierarchyViewPart.updateInput(IJavaElement) line: 541 TypeHierarchyViewPart.setInputElement(IJavaElement) line: 486 OpenTypeHierarchyUtil.openInViewPart(IWorkbenchWindow, IJavaElement) line: 98 OpenTypeHierarchyUtil.open(IJavaElement[], IWorkbenchWindow) line: 75 OpenTypeHierarchyAction.run(IJavaElement[]) line: 181 OpenTypeHierarchyAction.run(ITextSelection) line: 143 OpenTypeHierarchyAction(SelectionDispatchAction).dispatchRun(ISelection) line: 226 OpenTypeHierarchyAction(SelectionDispatchAction).run() line: 198 OpenTypeHierarchyAction(Action).runWithEvent(Event) line: 996 ActionHandler.execute(Map) line: 182 LegacyHandlerWrapper.execute(ExecutionEvent) line: 108 Command.execute(ExecutionEvent) line: 312 ParameterizedCommand.execute(Object, Object) line: 396 WorkbenchKeyboard.executeCommand(Binding, Object) line: 452 WorkbenchKeyboard.press(List, Event) line: 722 WorkbenchKeyboard.processKeyEvent(List, Event) line: 766 WorkbenchKeyboard.filterKeySequenceBindings(Event) line: 543 WorkbenchKeyboard.access$3(WorkbenchKeyboard, Event) line: 486 WorkbenchKeyboard$KeyDownFilter.handleEvent(Event) line: 110 EventTable.sendEvent(Event) line: 82 Display.filterEvent(Event) line: 781 StyledText(Widget).sendEvent(Event) line: 841 StyledText(Widget).sendEvent(int, Event, boolean) line: 866 StyledText(Widget).sendEvent(int, Event) line: 851 StyledText(Widget).sendKeyEvent(int, int, int, int, Event) line: 879 StyledText(Widget).sendKeyEvent(int, int, int, int) line: 875 StyledText(Widget).wmKeyDown(int, int, int) line: 1467 StyledText(Control).WM_KEYDOWN(int, int) line: 3342 StyledText(Control).windowProc(int, int, int, int) line: 3062 Display.windowProc(int, int, int, int) line: 3493 OS.DispatchMessageW(MSG) line: not available [native method] OS.DispatchMessage(MSG) line: 1650 Display.readAndDispatch() line: 2532 Workbench.runEventLoop(Window$IExceptionHandler, Display) line: 1592 Workbench.runUI() line: 1556 Workbench.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 314 PlatformUI.createAndRunWorkbench(Display, WorkbenchAdvisor) line: 143 IDEApplication.run(Object) line: 103 PlatformActivator$1.run(Object) line: 230 EclipseStarter.run(Object) line: 345 EclipseStarter.run(String[], Runnable) line: 158 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 85 NativeMethodAccessorImpl.invoke(Method, Object, Object[]) line: 58 DelegatingMethodAccessorImpl.invoke(Method, Object, Object[]) line: 60 Method.invoke(Object, Object[]) line: 391 Main.invokeFramework(String[], URL[]) line: 328 Main.basicRun(String[]) line: 272 Main.run(String[]) line: 974 Main.main(String[]) line: 950 Binding key retrieved from Java element: Ljava/util/Collections$CheckedMap<TK;T,V;>; Signature retrieved from binding key for which we ask type parameters: <K:,V:>Ljava.util.Collections$CheckedMap; char[] in scanTypeSignature [<, K, :, ,, V, :, >, L, j, a, v, a, ., u, t, i, l, ., C, o, l, l, e, c, t, i, o, n, s, $, C, h, e, c, k, e, d, M, a, p, ;] start in scanTypeSignature: 3 Setting to major since this blocks type hierarchies on generic types. | verified fixed | 5bf835a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-06T15:46:37Z" | "2005-05-05T21:53:20Z" |
93,695 | Bug 93695 NPE performing code assist | Build N20050504 I got the following exception after pressing ctrl+space and choosing a method from the presentation. The method I choose had a single parameter, which was an array of objects of a certain type. No objects of this type existed in my current context. java.lang.NullPointerException at org.eclipse.jdt.internal.ui.text.java.ParameterGuesser$Variable.computeFQN(ParameterGuesser.java:176) at org.eclipse.jdt.internal.ui.text.java.ParameterGuesser$Variable.getFQN(ParameterGuesser.java:170) at org.eclipse.jdt.internal.ui.text.java.ParameterGuesser$Variable.isArrayType(ParameterGuesser.java:198) at org.eclipse.jdt.internal.ui.text.java.ParameterGuesser.parameterProposals(ParameterGuesser.java:564) at org.eclipse.jdt.internal.ui.text.java.ParameterGuessingProposal.guessParameters(ParameterGuessingProposal.java:233) at org.eclipse.jdt.internal.ui.text.java.ParameterGuessingProposal.computeGuessingCompletion(ParameterGuessingProposal.java:276) at org.eclipse.jdt.internal.ui.text.java.ParameterGuessingProposal.apply(ParameterGuessingProposal.java:121) at org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProposal.apply(LazyJavaCompletionProposal.java:319) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:452) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.selectProposalWithMask(CompletionProposalPopup.java:399) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.verifyKey(CompletionProposalPopup.java:822) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:891) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5135) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4870) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1021) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1048) at org.eclipse.swt.widgets.Widget.gtk_key_press_event(Widget.java:612) at org.eclipse.swt.widgets.Control.gtk_key_press_event(Control.java:1961) at org.eclipse.swt.widgets.Composite.gtk_key_press_event(Composite.java:555) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1348) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3329) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:4739) at org.eclipse.swt.widgets.Display.eventProc(Display.java:969) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1138) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2473) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1572) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1536) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:230) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) 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:328) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:964) at org.eclipse.core.launcher.Main.main(Main.java:948) | resolved fixed | d4a1a7d | ["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-05-04T18:46:46Z" | "2005-05-04T18:06:40Z" |
90,139 | Bug 90139 [1.5][quick fix] 'Add unimplemented method' results in arg0, arg1 ... when using $T as type param | This is a minor but strange bug... When using a type parameter that starts with $ and that type parameter appears in an abstract method as a type of a formal parameter, the 'Add unimplemented method' quick fix, applied to a subclass creates a method signature with parameter names arg0, arg1, ... instead of using the parameter names of the overridden method. Example: abstract class Test<$T> { abstract void test($T a); } class Foo extends Test<Object> { } Now, applying the quick fix 'Add unimplemented methods' on Foo results in: class Foo extends Test<Object> { void test(Object arg0) { } } So the parameter a is replaced by arg0. This does not happen when using T instead of $T for example. | resolved fixed | f5ae01d | ["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-04T14:54:28Z" | "2005-04-04T10:20:00Z" |
89,505 | Bug 89505 [code manipulation] generate ctor using fields: duplicate warning does not consider erasure | null | resolved fixed | ce54bef | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateConstructorUsingFieldsValidator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-04T14:22:59Z" | "2005-03-30T10:53:20Z" |
89,513 | Bug 89513 [code manipulation] generate delegate methods: inconsistent for generic types | null | resolved fixed | e948a16 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddDelegateMethodsOperation.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/AddDelegateMethodsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-04T12:51:50Z" | "2005-03-30T13:40:00Z" |
93,275 | Bug 93275 Need ITypeBinding#getDeclaringClass() for capture types | ITypeBinding#getDeclaringClass() currently returns null for capture type bindings. It should return the declaring type. For our TTypes, we need to be able to distinguish capture bindings from different projects even if they have the same key (rare case, I agree, but it could happen). Therefore, we have to store the project in which the capture binding is declared. We want to do this via getDeclaringClass().getJavaElement().getJavaProject(). Could this be implemented for the next I-build? | verified fixed | bcbf329 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/TypeEnvironment.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-04T12:35:40Z" | "2005-04-29T15:53:20Z" |
86,681 | Bug 86681 Jar exporter: add directories entries not persisted between sessions | - follow smoke test for jar exporter - check Add directories entries - observe: when opening the jar description file the item isn't checked. | resolved fixed | 7ce4d6e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageReader.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWriter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-04T10:23:04Z" | "2005-02-25T19:33:20Z" |
88,860 | Bug 88860 Switch Bindings#findMethod(IMethodBinding, ..) to IBinding#getJavaElement() | null | resolved fixed | 46fa326 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/Bindings.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-04T07:51:56Z" | "2005-03-23T15:00:00Z" |
87,080 | Bug 87080 infer type args: NPE on newInstance() [refactoring] [infer type arguments] | 3.1M5a when analyzing JLex, I get: (will attach the file) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsTCModel.getElementVariable(InferTypeArgumentsTCModel.java:518) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsConstraintCreator.doVisitMethodInvocationArguments(InferTypeArgumentsConstraintCreator.java:401) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsConstraintCreator.endVisit(InferTypeArgumentsConstraintCreator.java:307) at org.eclipse.jdt.core.dom.MethodInvocation.accept0(MethodInvocation.java:247) 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.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.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.ForStatement.accept0(ForStatement.java:228) 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:503) 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:486) 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:291) at org.eclipse.jdt.core.dom.ASTNode.accept(ASTNode.java:2450) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsRefactoring$1.acceptAST(InferTypeArgumentsRefactoring.java:137) at org.eclipse.jdt.core.dom.CompilationUnitResolver.resolve(CompilationUnitResolver.java:641) at org.eclipse.jdt.core.dom.CompilationUnitResolver.resolve(CompilationUnitResolver.java:436) at org.eclipse.jdt.core.dom.ASTParser.createASTs(ASTParser.java:651) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsRefactoring.checkFinalConditions(InferTypeArgumentsRefactoring.java:132) 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:1702) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:111) | resolved fixed | 1c633a7 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClassNewInstance/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetClassNewInstance/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetTakeClassStayRaw/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuGetTakeClassStayRaw/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/InferTypeArgumentsConstraintsSolver.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsTCModel.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/generics/InferTypeArgumentsUpdate.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/AbstractTypeVariable.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-04T07:42:32Z" | "2005-03-03T14:26:40Z" |
93,564 | Bug 93564 Preference setting for @Override annotation | 20050503 The story for adding the @Override annotation is currently abit confusing. Only the override dialog offers to add the annotation, all other override actions (quick fix, code assist) don't add it. A code style preference setting should be added to be used by all of them and the override wizatd checkbox removed. Requesting PMC approval for new the preference constant /** * A named preference that controls whether to add a override annotation for newly created methods * <p> * Value is of type <code>Boolean</code>. * </p> * @since 3.1 */ PreferenceConstants.CODEGEN_USE_OVERRIDE_ANNOTATION | resolved fixed | 45a15ad | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AddUnimplementedMethodsTest.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/quickfix/LocalCorrectionsQuickFixTest.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/AddUnimplementedMethodsOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/CodeGenerationSettings.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/OverrideMethodDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaPreferencesSettings.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NameConventionConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnimplementedMethodsCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/OverrideCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OverrideMethodsAction.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-05-04T06:56:40Z" | "2005-05-03T17:06:40Z" |
93,567 | Bug 93567 ContextInformationPopup leaks CompletionEngines? | N20050503-0010 Yourkit memory snapshot N20050503-0010_1.5.0_20050503-1905.memory on my machine. | resolved fixed | 8bbc0d7 | ["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/ProposalContextInformation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T17:43:24Z" | "2005-05-03T17:06:40Z" |
77,185 | Bug 77185 [classpath] entry kind "natives" | We had a discussion about how to best support SWT application developement. The biggest problem is the native dll and that user have to create special launch configs with -Djava.library.path=.... to get a SWT application up and running. However the dll problems seems to be a more general problem. Although the compiler doesn't care about dll it would fit into our current story to have a class path entry kind "natives". Java/Core wouldn't benefit from the entry, but debugger could use it to construct the -Djava.library.path= command line argument. | resolved fixed | e381e20 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPluginImages.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/CPListElement.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CPListLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/LibrariesWorkbookPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/NativeLibrariesDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/BuildPathDialogAccess.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T16:03:01Z" | "2004-10-28T13:26:40Z" |
89,463 | Bug 89463 [search] new search filters (inexact & erasure) should be in view menu where applicable | I20050329-2000 The new search filters (inexact & erasure) should appear directly in the view menu where applicable. Currently the user always has to open the filters dialog to toggle them. Inexact is always applicable. Erasure is applicable for references and occurrences search for generic types and methods. | resolved fixed | 7398d5f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MatchFilter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T14:26:25Z" | "2005-03-30T08:06:40Z" |
89,510 | Bug 89510 [refactoring] Extract Interface: preview opens on wrong screen | 20050329 I work on a dual monitor setup and have the eclipse workspace (no detached windows) open on the right screen. - Open the Extract Interface wizard (open correctly on the same monitor as Eclipse), enter a name, press 'Preview' - The preview wizard window opens on the left screen | resolved fixed | c9a50a2 | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringWizardDialog2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T13:59:46Z" | "2005-03-30T10:53:20Z" |
90,772 | Bug 90772 [refactoring] AFE when clicking 'All invocations' in Inline Method dialog again | I20050405-0800 - select a method declaration - Refactor > Inline Method - click 'All invocations' org.eclipse.jdt.internal.corext.Assert$AssertionFailedException: assertion failed; at org.eclipse.jdt.internal.corext.Assert.isTrue(Assert.java:139) at org.eclipse.jdt.internal.corext.Assert.isTrue(Assert.java:124) at org.eclipse.jdt.internal.corext.refactoring.code.InlineMethodRefactoring.setCurrentMode(InlineMethodRefactoring.java:166) at org.eclipse.jdt.internal.ui.refactoring.code.InlineMethodInputPage.changeRefactoring(InlineMethodInputPage.java:111) at org.eclipse.jdt.internal.ui.refactoring.code.InlineMethodInputPage.access$1(InlineMethodInputPage.java:108) at org.eclipse.jdt.internal.ui.refactoring.code.InlineMethodInputPage$1.widgetSelected(InlineMethodInputPage.java:73) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2894) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2527) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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.actions.InlineMethodAction.run(InlineMethodAction.java:137) at org.eclipse.jdt.internal.ui.refactoring.actions.InlineMethodAction.run(InlineMethodAction.java:124) at org.eclipse.jdt.ui.actions.InlineAction.tryInlineMethod(InlineAction.java:143) at org.eclipse.jdt.ui.actions.InlineAction.run(InlineAction.java:116) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) 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:331) at org.eclipse.core.commands.ParameterizedCommand.execute(ParameterizedCommand.java:396) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:452) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:741) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:784) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:543) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:486) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:110) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:777) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:841) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:866) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:851) at org.eclipse.swt.widgets.Control.traverse(Control.java:2770) at org.eclipse.swt.widgets.Control.translateMnemonic(Control.java:2611) at org.eclipse.swt.widgets.Composite.translateMnemonic(Composite.java:813) at org.eclipse.swt.widgets.Control.translateMnemonic(Control.java:2629) at org.eclipse.swt.widgets.Display.translateMnemonic(Display.java:3314) at org.eclipse.swt.widgets.Display.filterMessage(Display.java:791) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2523) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:315) at org.eclipse.core.launcher.Main.basicRun(Main.java:268) at org.eclipse.core.launcher.Main.run(Main.java:947) at org.eclipse.core.launcher.Main.main(Main.java:931) | verified fixed | b069dc4 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineMethodRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T13:35:20Z" | "2005-04-08T08:46:40Z" |
93,105 | Bug 93105 Remove unnecessary APIs on BindingKey | I20050426-1700 After discussions with JDT/UI, we came to conclusion that the following 3.1 APIs on BindingKey are not suitable; since they may cache element structural information into keys, leaving clients with difficult decisions as to whether to trust the key or the element. - BindingKey#getDeclaringTypeSignature() - BindingKey#toSignature() The only interest for having these APIs on the key is to cache some information avoiding populating the model, and is not mandated by the normal binding key contract, i.e. identify uniquely a type binding. Therefore, they should not be added . If such information was requested again, it should end up in a different spot. Something we could imagine post 3.1 is to precache this information directly into Java elements (pre/partially initialized element infos), and hiding the complexity to clients who could blindly trust the elements to reflect reality. | verified fixed | 5833063 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ImportOrganizeTest.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/StandardType.java", "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-03T13:28:03Z" | "2005-04-28T12:06:40Z" |
92,734 | Bug 92734 Open Type: wrong camel case match | I20050420 + ZRH export of 0426-912 Filter input 'IDExtension' matches type 'IDE'. I expected it to not match. | resolved fixed | 35241e1 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/TypeInfoFilter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T12:58:50Z" | "2005-04-26T07:20:00Z" |
93,509 | Bug 93509 Code assist insert strange import | public class A<LHS, RHS> { LHS lhs; RHS rhs; { A<? extends Object, ? extends Number> a= null; } L<code assist> } - trigger code assist at the location above - select LHS. Observe you get an import on LHS | resolved fixed | 2cc1c07 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaTypeCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T12:57:50Z" | "2005-05-03T11:33:20Z" |
93,511 | Bug 93511 [5.0][syntax highlighting] Autounboxing not marked in constructor invocation | N20050503-0010 The autounboxing syntax highlighting does not mark the constructor invocation: int intVar= new Integer(13); | resolved fixed | 86ec939 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightings.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T12:09:15Z" | "2005-05-03T11:33:20Z" |
93,376 | Bug 93376 Pull up is enabled for annotation members in editor | Pull up is enabled for annotation members in editor. Since we have a JavaTextSelection here we can do better and disable the action. Pull Down can be disabled as well. | resolved fixed | 78b7071 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTester.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T10:48:34Z" | "2005-05-01T20:40:00Z" |
93,324 | Bug 93324 [nls tooling] Find strings to externalize tries to open a dialog from the modal context thread | While trying to sort out problems with badly encoded files I ran find strings to externalize on a package. Doing so resulted in the following exception: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:327) 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.ui.actions.FindStringsToExternalizeAction.run(FindStringsToExternalizeAction.java:145) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:212) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2900) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2533) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) Caused by: 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.Widget.error(Widget.java:393) at org.eclipse.swt.widgets.Shell.<init>(Shell.java:246) at org.eclipse.swt.widgets.Shell.<init>(Shell.java:324) at org.eclipse.jface.window.Window.createShell(Window.java:468) at org.eclipse.jface.window.Window.create(Window.java:417) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:996) at org.eclipse.jface.window.Window.open(Window.java:770) at org.eclipse.jface.dialogs.ErrorDialog.open(ErrorDialog.java:274) at org.eclipse.jface.dialogs.ErrorDialog.openError(ErrorDialog.java:338) at org.eclipse.jface.dialogs.ErrorDialog.openError(ErrorDialog.java:303) at org.eclipse.jdt.internal.ui.util.ExceptionHandler.perform(ExceptionHandler.java:102) at org.eclipse.jdt.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:69) at org.eclipse.jdt.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:57) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.countNonExternalizedStrings(FindStringsToExternalizeAction.java:313) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.analyze(FindStringsToExternalizeAction.java:297) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.analyze(FindStringsToExternalizeAction.java:228) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.doRun(FindStringsToExternalizeAction.java:178) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.access$0(FindStringsToExternalizeAction.java:166) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction$4.run(FindStringsToExternalizeAction.java:161) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Root exception: 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.Widget.error(Widget.java:393) at org.eclipse.swt.widgets.Shell.<init>(Shell.java:246) at org.eclipse.swt.widgets.Shell.<init>(Shell.java:324) at org.eclipse.jface.window.Window.createShell(Window.java:468) at org.eclipse.jface.window.Window.create(Window.java:417) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:996) at org.eclipse.jface.window.Window.open(Window.java:770) at org.eclipse.jface.dialogs.ErrorDialog.open(ErrorDialog.java:274) at org.eclipse.jface.dialogs.ErrorDialog.openError(ErrorDialog.java:338) at org.eclipse.jface.dialogs.ErrorDialog.openError(ErrorDialog.java:303) at org.eclipse.jdt.internal.ui.util.ExceptionHandler.perform(ExceptionHandler.java:102) at org.eclipse.jdt.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:69) at org.eclipse.jdt.internal.ui.util.ExceptionHandler.handle(ExceptionHandler.java:57) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.countNonExternalizedStrings(FindStringsToExternalizeAction.java:313) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.analyze(FindStringsToExternalizeAction.java:297) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.analyze(FindStringsToExternalizeAction.java:228) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.doRun(FindStringsToExternalizeAction.java:178) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction.access$0(FindStringsToExternalizeAction.java:166) at org.eclipse.jdt.ui.actions.FindStringsToExternalizeAction$4.run(FindStringsToExternalizeAction.java:161) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Should the action collect the status in a milti status and present it to the user when the whole operation has finished. | resolved fixed | 69c6754 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ActionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindStringsToExternalizeAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T10:36:35Z" | "2005-04-29T21:26:40Z" |
91,470 | Bug 91470 [refactoring] [inline] Inline method fails on methods with a vararg parameter | In 3.1 M6 trying to inline the following method fails with an error public static final String format(String key, Object ... args) { return MessageFormat.format(key, args); } If I change the type to Object[] the inlining works. Here is the stack trace: 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:282) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.createChange(RefactoringWizard.java:570) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.computeUserInputSuccessorPage(RefactoringWizard.java:413) 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:436) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.access$3(RefactoringWizardDialog2.java:434) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2$1.widgetSelected(RefactoringWizardDialog2.java:570) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2894) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2527) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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.actions.InlineMethodAction.run(InlineMethodAction.java:137) at org.eclipse.jdt.internal.ui.refactoring.actions.InlineMethodAction.run(InlineMethodAction.java:124) at org.eclipse.jdt.ui.actions.InlineAction.tryInlineMethod(InlineAction.java:143) at org.eclipse.jdt.ui.actions.InlineAction.run(InlineAction.java:116) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2894) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2527) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) 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:315) at org.eclipse.core.launcher.Main.basicRun(Main.java:268) at org.eclipse.core.launcher.Main.run(Main.java:942) at org.eclipse.core.launcher.Main.main(Main.java:926) Caused by: org.eclipse.jdt.internal.corext.Assert$AssertionFailedException: null argument; at org.eclipse.jdt.internal.corext.Assert.isNotNull(Assert.java:108) at org.eclipse.jdt.internal.corext.Assert.isNotNull(Assert.java:86) at org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine2.<init>(RefactoringSearchEngine2.java:166) at org.eclipse.jdt.internal.corext.refactoring.code.TargetProvider$MemberTypeTargetProvider.getAffectedCompilationUnits(TargetProvider.java:335) at org.eclipse.jdt.internal.corext.refactoring.code.InlineMethodRefactoring.checkFinalConditions(InlineMethodRefactoring.java:197) 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:1714) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Root exception: org.eclipse.jdt.internal.corext.Assert$AssertionFailedException: null argument; at org.eclipse.jdt.internal.corext.Assert.isNotNull(Assert.java:108) at org.eclipse.jdt.internal.corext.Assert.isNotNull(Assert.java:86) at org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine2.<init>(RefactoringSearchEngine2.java:166) at org.eclipse.jdt.internal.corext.refactoring.code.TargetProvider$MemberTypeTargetProvider.getAffectedCompilationUnits(TargetProvider.java:335) at org.eclipse.jdt.internal.corext.refactoring.code.InlineMethodRefactoring.checkFinalConditions(InlineMethodRefactoring.java:197) 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:1714) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) | verified fixed | a5af9ee | ["org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/Test91470.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_in/TestVarargs6.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_out/Test91470.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/argument_out/TestVarargs6.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceAnalyzer.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T10:18:36Z" | "2005-04-14T23:06:40Z" |
72,178 | Bug 72178 extract local variable doesn't resolve name conflicts [refactoring] | eclise 3.1 M1, JDK 1.5 --------a.A------- package a; public class A {} ------------------ --------b.A------- package b; public class A {} ----------------- --------c.C------ package c; import a.A; public class C { b.A method() { return new b.A(); } void failHere() { method(); //extract local variable here } } -------------------- if you extract local variable where indicated in c.C the result is: -------------------- void failHere() { final A method = method(); } ----------------------------- but it should be: -------------------- void failHere() { final b.A method = method(); } ----------------------------- | resolved fixed | e5dfa74 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test89_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test89_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractTempTests.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T07:20:33Z" | "2004-08-18T17:26:40Z" |
81,099 | Bug 81099 JUnit preference does not Restore Defaults [JUnit] | I200412142000 Restore Defaults has no effect on the "Show JUnit view only when error occurs" preference. | verified fixed | d6f55ab | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitCorePlugin.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitPreferencesConstants.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JunitPreferenceInitializer.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitPlugin.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitPreferencePage.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitPreferencesConstants.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JunitPreferenceInitializer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-03T06:43:43Z" | "2004-12-15T11:26:40Z" |
87,076 | Bug 87076 M5: JUnit preferences aren't saved between sessions [JUnit] | If I disable all stack trace filters in the Java > JUnit preferences page, then apply, everything is fine for this session. When I restart Eclipse, however, the filters are all reenabled. Also, if I remove all filters, they reappear when I restart. | verified fixed | eeab87c | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitPreferencesConstants.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitPreferencesConstants.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-02T14:30:11Z" | "2005-03-03T14:26:40Z" |
90,725 | Bug 90725 TableColumn trim differs between platforms | null | resolved fixed | afe9aef | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/LocationViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/TableLayoutComposite.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-02T14:22:09Z" | "2005-04-07T21:40:00Z" |
87,920 | Bug 87920 ExtractMethod refactoring should not use ASTNodeFactory.newType(AST, ITypeBinding, boolean) | ExtractMethod refactoring should not use ASTNodeFactory.newType(AST, ITypeBinding, boolean). That method is deprecated and should be replaced by an ImportRewrite or by ASTNode.copySubtree(..). | resolved fixed | 8f6aec0 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1109.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_in/A_test1110.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1109.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/generics_out/A_test1110.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/ASTNodeFactory.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java", "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-05-02T14:05:35Z" | "2005-03-14T14:20:00Z" |
76,241 | Bug 76241 Inline method should refuse to work when calls to the method are ambiguous [refactoring] [inline method] | I200410130800 Inlining one of the foo(...) methods of the first compilation unit below should refuse to work because the calls to foo(...) are ambiguous. Potential loss of work. public class A { protected void foo(String s) { System.out.println("A.foo()"); } protected void foo(Integer i) { System.out.println("A.foo()"); } } public class B1 extends A { public void bar1() { foo(null); } } public class B2 extends A { public void bar2() { foo(null); } } | resolved fixed | 9a46f6c | ["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/code/InlineMethodRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/TargetProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-02T13:17:01Z" | "2004-10-14T10:33:20Z" |
93,323 | Bug 93323 Organize import on a package prints to the console | I ran organize import on a package containing two CUs and I got timing statements like the following printed to the console: total time 80 ms, cus: 2 | resolved fixed | d522524 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OrganizeImportsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-02T13:09:10Z" | "2005-04-29T21:26:40Z" |
81,441 | Bug 81441 [5.0] [refactoring] renaming method in annotation doesn't work | null | resolved fixed | 5184075 | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameMethodInInterface/testAnnotation0/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameMethodInInterface/testAnnotation0/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameMethodInInterface/testAnnotation2/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameMethodInInterface/testAnnotation3/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RenameMethodInInterfaceTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/MethodOccurenceCollector.java", "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/RenameNonVirtualMethodProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-05-02T13:02:06Z" | "2004-12-16T18:00:00Z" |
68,983 | Bug 68983 Refactor menu not available on binary types [refactoring] | It seems to be impossible to use refactoring features on a Type whose source is not in the project/workspace. For example, I would like to replace all instances of ArrayList by List where it is possible (using the "Use Supertype Where Possible" refactor feature, but it does not appear to be possible since there is no refactor menu on binary only Types. This lessens significantly the benefits of this refactoring feature. | resolved fixed | 26e96ad | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTester.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceProcessor.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/UseSuperTypeProcessor.java", "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-02T09:38:40Z" | "2004-06-30T10:06:40Z" |
66,480 | Bug 66480 Selecting a badly encoded file in the package explorer results in MalformedInputExceptions | I200406091200 - Create a folder with UTF-8 encoding - Have some .java files in the folder that are Latin1 encoded, but with their encoding not set (they inherit from the folder, UTF-8) (-> these files cannot be opened, which is correct) - Selecting the file in the package explorer without opening it Observe the exceptions below (actually many more, as all refactoring actions are updated). The same happens when dragging a correctly encoded file over one of the bad files, e.g. when using drag&drop refactoring. The package explorer should handle this more gracefully. !ENTRY org.eclipse.jdt.ui 4 10001 Jun 10, 2004 12:18:03.825 !MESSAGE Internal Error !STACK 1 org.eclipse.jdt.core.JavaModelException[985]: sun.io.MalformedInputException at java.lang.Throwable.<init>(Throwable.java) at sun.io.ByteToCharUTF8.convert(ByteToCharUTF8.java) at sun.nio.cs.StreamDecoder$ConverterSD.convertInto(StreamDecoder.java) at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java) at sun.nio.cs.StreamDecoder.read(StreamDecoder.java) at java.io.InputStreamReader.read(InputStreamReader.java) at org.eclipse.jdt.internal.compiler.util.Util.getInputStreamAsCharArray(Util.java) at org.eclipse.jdt.internal.core.util.Util.getResourceContentsAsCharArray(Util.java) at org.eclipse.jdt.internal.core.util.Util.getResourceContentsAsCharArray(Util.java) at org.eclipse.jdt.internal.core.CompilationUnit.openBuffer(CompilationUnit.java:1029) at org.eclipse.jdt.internal.core.CompilationUnit.buildStructure(CompilationUnit.java:102) at org.eclipse.jdt.internal.core.Openable.generateInfos(Openable.java:183) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getChildren(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getChildrenOfType(JavaElement.java) at org.eclipse.jdt.internal.core.CompilationUnit.getTypes(CompilationUnit.java:822) at org.eclipse.jdt.internal.corext.refactoring.util.JavaElementUtil.getMainType(JavaElementUtil.java) at org.eclipse.jdt.ui.actions.UseSupertypeAction.getSingleSelectedType(UseSupertypeAction.java:114) at org.eclipse.jdt.ui.actions.UseSupertypeAction.canEnable(UseSupertypeAction.java:103) at org.eclipse.jdt.ui.actions.UseSupertypeAction.selectionChanged(UseSupertypeAction.java:81) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchSelectionChanged(SelectionDispatchAction.java) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.selectionChanged(SelectionDispatchAction.java) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:157) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:1388) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:694) at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:720) at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:180) at org.eclipse.jface.util.OpenStrategy.access$3(OpenStrategy.java:175) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1362) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:252) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:272) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:128) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:638) at org.eclipse.core.launcher.Main.main(Main.java:622) Caused by: sun.io.MalformedInputException at java.lang.Throwable.<init>(Throwable.java) at sun.io.ByteToCharUTF8.convert(ByteToCharUTF8.java) at sun.nio.cs.StreamDecoder$ConverterSD.convertInto(StreamDecoder.java) at sun.nio.cs.StreamDecoder$ConverterSD.implRead(StreamDecoder.java) at sun.nio.cs.StreamDecoder.read(StreamDecoder.java) at java.io.InputStreamReader.read(InputStreamReader.java) at org.eclipse.jdt.internal.compiler.util.Util.getInputStreamAsCharArray(Util.java) at org.eclipse.jdt.internal.core.util.Util.getResourceContentsAsCharArray(Util.java) at org.eclipse.jdt.internal.core.util.Util.getResourceContentsAsCharArray(Util.java) at org.eclipse.jdt.internal.core.CompilationUnit.openBuffer(CompilationUnit.java:1029) at org.eclipse.jdt.internal.core.CompilationUnit.buildStructure(CompilationUnit.java:102) at org.eclipse.jdt.internal.core.Openable.generateInfos(Openable.java:183) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getChildren(JavaElement.java) at org.eclipse.jdt.internal.core.JavaElement.getChildrenOfType(JavaElement.java) at org.eclipse.jdt.internal.core.CompilationUnit.getTypes(CompilationUnit.java:822) at org.eclipse.jdt.internal.corext.refactoring.util.JavaElementUtil.getMainType(JavaElementUtil.java) at org.eclipse.jdt.ui.actions.UseSupertypeAction.getSingleSelectedType(UseSupertypeAction.java:114) at org.eclipse.jdt.ui.actions.UseSupertypeAction.canEnable(UseSupertypeAction.java:103) at org.eclipse.jdt.ui.actions.UseSupertypeAction.selectionChanged(UseSupertypeAction.java:81) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchSelectionChanged(SelectionDispatchAction.java) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.selectionChanged(SelectionDispatchAction.java) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:157) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:1388) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:694) at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:720) at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:180) at org.eclipse.jface.util.OpenStrategy.access$3(OpenStrategy.java:175) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1362) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:252) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:272) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:128) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.basicRun(Main.java:185) at org.eclipse.core.launcher.Main.run(Main.java:638) at org.eclipse.core.launcher.Main.main(Main.java:622) | resolved fixed | 144720f | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/InlineMethodAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ActionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddGetterSetterAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ChangeTypeAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertAnonymousToNestedAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertNestedToTopAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractInterfaceAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FormatAllAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateNewConstructorUsingFieldsAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OrganizeImportsAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OverrideMethodsAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/RemoveFromClasspathAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/UseSupertypeAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-29T22:47:05Z" | "2004-06-10T09:33:20Z" |
92,982 | Bug 92982 [1.5][compiler] Bounds and erasure of capture and type variable bindings | I20050426-1700 I'm a bit confused about bounds and erasure of capture, type variable and wildcard bindings. Consider this example: public class Try<T extends Collection> { void m() { List<? extends Collection> wild= null; Collection c= wild.get(0); List<T> var= null; Collection c2= var.get(0); } Calling ITypeBinding#getBounds() on the type bindings of expressions wild.get(0) and var.get(0) currently returns java.lang.Object as first bound of the capture / type variable bindings. => Why is the first bound not Collection (as in JLS3 / java.lang.reflect)? ITypeBinding#getErasure() says it "returns the binding for the erasure of the leftmost bound ...", but for the bindings from above, it returns Collection. => Javadoc and implementation not in sync. | verified fixed | fbd7246 | ["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/typeconstraints/TypeEnvironmentTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/AbstractTypeVariable.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/CaptureType.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/SuperWildcardType.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/TType.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/TypeEnvironment.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-29T18:33:03Z" | "2005-04-27T19:26:40Z" |
93,287 | Bug 93287 LTK Core Refactoring triggered on shutdown of JavaPlugin | null | resolved fixed | 21d5158 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/RefactoringCore.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/RefactoringCorePlugin.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-29T17:56:09Z" | "2005-04-29T15:53:20Z" |
93,260 | Bug 93260 TypeInfoViewer sets foreground colours unnecessarily | null | resolved fixed | dd5efba | ["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-04-29T17:35:58Z" | "2005-04-29T13:06:40Z" |
93,235 | Bug 93235 'Build Path > Use as Source Folder' freezes for 3 minutes with autobuild running | I20050426-1700 I have autobuild enabled and was rebuilding my workspace in the background. From the context menu of a (non-source) folder inside a plugin, I chose 'Build Path > Use as Source Folder'. Eclipse froze for about 3 minutes (but the build was apparently progressing). Stackdump while the UI was stale: Full thread dump Java HotSpot(TM) Client VM (1.5.0_03-b05 mixed mode): "org.eclipse.jface.text.reconciler.MonoReconciler" daemon prio=2 tid=0x1ac9a6b0 nid=0x37c in Object.wait() [0x1d68f000..0x1d68fc68] at java.lang.Object.wait(Native Method) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:176) - locked <0x088cf578> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) "org.eclipse.jface.text.reconciler.MonoReconciler" daemon prio=2 tid=0x1be58d50 nid=0xd18 in Object.wait() [0x1d19f000..0x1d19fce8] at java.lang.Object.wait(Native Method) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:176) - locked <0x088cf5f0> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) "org.eclipse.jface.text.reconciler.MonoReconciler" daemon prio=2 tid=0x1acac518 nid=0x87c in Object.wait() [0x1d15f000..0x1d15fd68] at java.lang.Object.wait(Native Method) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:176) - locked <0x088cf668> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) "StandardManager[/help]" daemon prio=7 tid=0x1b887968 nid=0x68c waiting on condition [0x1cc1f000..0x1cc1fa68] at java.lang.Thread.sleep(Native Method) at org.apache.catalina.session.StandardManager.threadSleep(StandardManager.java:810) at org.apache.catalina.session.StandardManager.run(StandardManager.java:869) at java.lang.Thread.run(Thread.java:595) "TP-Monitor" daemon prio=7 tid=0x1b9ad010 nid=0xf90 in Object.wait() [0x1cbdf000..0x1cbdfae8] at java.lang.Object.wait(Native Method) - waiting on <0x07ee2270> (a org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable) at org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable.run(ThreadPool.java:560) - locked <0x07ee2270> (a org.apache.tomcat.util.threads.ThreadPool$MonitorRunnable) at java.lang.Thread.run(Thread.java:595) "TP-Processor4" daemon prio=7 tid=0x1b960630 nid=0x868 in Object.wait() [0x1cb9f000..0x1cb9fb68] at java.lang.Object.wait(Native Method) - waiting on <0x07ee2428> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable) at java.lang.Object.wait(Object.java:492) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656) - locked <0x07ee2428> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable) at java.lang.Thread.run(Thread.java:595) "TP-Processor3" daemon prio=7 tid=0x1b960020 nid=0x740 in Object.wait() [0x1cb5f000..0x1cb5fbe8] at java.lang.Object.wait(Native Method) - waiting on <0x07ee24c0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable) at java.lang.Object.wait(Object.java:492) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656) - locked <0x07ee24c0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable) at java.lang.Thread.run(Thread.java:595) "TP-Processor2" daemon prio=7 tid=0x1ad26770 nid=0xe68 runnable [0x1cb1f000..0x1cb1fc68] at java.net.PlainSocketImpl.socketAccept(Native Method) at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384) - locked <0x07ee2318> (a java.net.SocksSocketImpl) at java.net.ServerSocket.implAccept(ServerSocket.java:450) at java.net.ServerSocket.accept(ServerSocket.java:421) at org.apache.tomcat.util.net.DefaultServerSocketFactory.acceptSocket(DefaultServerSocketFactory.java:107) at org.apache.tomcat.util.net.PoolTcpEndpoint.acceptSocket(PoolTcpEndpoint.java:387) at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:557) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683) at java.lang.Thread.run(Thread.java:595) "TP-Processor1" daemon prio=7 tid=0x1ad7be20 nid=0x9c4 in Object.wait() [0x1cadf000..0x1cadfce8] at java.lang.Object.wait(Native Method) - waiting on <0x07ee25f0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable) at java.lang.Object.wait(Object.java:492) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:656) - locked <0x07ee25f0> (a org.apache.tomcat.util.threads.ThreadPool$ControlRunnable) at java.lang.Thread.run(Thread.java:595) "StandardManager[]" daemon prio=7 tid=0x1b9177f8 nid=0x908 waiting on condition [0x1c91f000..0x1c91fd68] at java.lang.Thread.sleep(Native Method) at org.apache.catalina.session.StandardManager.threadSleep(StandardManager.java:810) at org.apache.catalina.session.StandardManager.run(StandardManager.java:869) at java.lang.Thread.run(Thread.java:595) "Worker-35" prio=5 tid=0x1abd3b60 nid=0x1e0 in Object.wait() [0x1c85f000..0x1c85f9e8] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:168) - locked <0x046890a0> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:200) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "Worker-34" prio=5 tid=0x1abc3750 nid=0xf38 in Object.wait() [0x1c8df000..0x1c8df9e8] at java.lang.Object.wait(Native Method) at org.eclipse.team.internal.core.BackgroundEventHandler.isReadyForDispatch(BackgroundEventHandler.java:388) - locked <0x05d40e88> (a org.eclipse.team.internal.ccvs.ui.subscriber.LogEntryCacheUpdateHandler) at org.eclipse.team.internal.core.BackgroundEventHandler.processEvents(BackgroundEventHandler.java:333) at org.eclipse.team.internal.core.BackgroundEventHandler$1.run(BackgroundEventHandler.java:173) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-33" prio=5 tid=0x1abbba50 nid=0xa34 in Object.wait() [0x1c99f000..0x1c99fd68] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:168) - locked <0x046890a0> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:200) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "Worker-32" prio=5 tid=0x1ab77958 nid=0x4ec in Object.wait() [0x1c95f000..0x1c95f9e8] at java.lang.Object.wait(Native Method) at org.eclipse.team.internal.core.BackgroundEventHandler.isReadyForDispatch(BackgroundEventHandler.java:388) - locked <0x05800050> (a org.eclipse.team.internal.ui.synchronize.SynchronizeModelUpdateHandler) at org.eclipse.team.internal.core.BackgroundEventHandler.processEvents(BackgroundEventHandler.java:333) at org.eclipse.team.internal.core.BackgroundEventHandler$1.run(BackgroundEventHandler.java:173) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-31" prio=5 tid=0x1abc12d8 nid=0x55c in Object.wait() [0x1b7ef000..0x1b7efbe8] at java.lang.Object.wait(Native Method) - waiting on <0x078fc638> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x078fc638> (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:1671) at org.eclipse.core.internal.resources.Resource.refreshLocal(Resource.java:1240) at org.eclipse.debug.ui.RefreshTab.refreshResources(RefreshTab.java:440) at org.eclipse.ui.externaltools.internal.program.launchConfigurations.BackgroundResourceRefresher$1.run(BackgroundResourceRefresher.java:77) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-30" prio=5 tid=0x1ba1ddb0 nid=0x208 in Object.wait() [0x1b7af000..0x1b7afc68] at java.lang.Object.wait(Native Method) at org.eclipse.team.internal.core.BackgroundEventHandler.isReadyForDispatch(BackgroundEventHandler.java:388) - locked <0x0577ede0> (a org.eclipse.team.internal.core.subscribers.SubscriberChangeSetCollector$EventHandler) at org.eclipse.team.internal.core.BackgroundEventHandler.processEvents(BackgroundEventHandler.java:333) at org.eclipse.team.internal.core.BackgroundEventHandler$1.run(BackgroundEventHandler.java:173) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-29" prio=5 tid=0x1aa0d828 nid=0xce0 runnable [0x1b76e000..0x1b76fce8] at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(FileInputStream.java:106) at org.eclipse.core.internal.resources.ContentDescriptionManager$LazyFileInputStream.ensureOpened(ContentDescriptionManager.java:145) at org.eclipse.core.internal.resources.ContentDescriptionManager$LazyFileInputStream.read(ContentDescriptionManager.java:154) at java.io.InputStream.read(InputStream.java:89) at org.eclipse.core.internal.content.LazyInputStream.loadBlock(LazyInputStream.java:99) at org.eclipse.core.internal.content.LazyInputStream.ensureAvailable(LazyInputStream.java:64) at org.eclipse.core.internal.content.LazyInputStream.read(LazyInputStream.java:119) at org.eclipse.core.internal.content.TextContentDescriber.getByteOrderMark(TextContentDescriber.java:65) at org.eclipse.core.internal.content.TextContentDescriber.describe(TextContentDescriber.java:49) at org.eclipse.core.internal.content.ContentType.describe(ContentType.java:171) at org.eclipse.core.internal.content.ContentType.internalGetDescriptionFor(ContentType.java:476) at org.eclipse.core.internal.content.ContentTypeCatalog.getDescriptionFor(ContentTypeCatalog.java:343) at org.eclipse.core.internal.content.ContentTypeCatalog.getDescriptionFor(ContentTypeCatalog.java:347) at org.eclipse.core.internal.content.ContentTypeMatcher.getDescriptionFor(ContentTypeMatcher.java:67) at org.eclipse.core.internal.resources.ContentDescriptionManager.readDescription(ContentDescriptionManager.java:370) at org.eclipse.core.internal.resources.ContentDescriptionManager.getDescriptionFor(ContentDescriptionManager.java:309) - locked <0x053938e8> (a org.eclipse.core.internal.resources.ContentDescriptionManager) at org.eclipse.core.internal.resources.File.internalGetCharset(File.java:257) at org.eclipse.core.internal.resources.File.getCharset(File.java:218) at org.eclipse.core.internal.resources.File.getCharset(File.java:205) at org.eclipse.jdt.internal.core.util.Util.getResourceContentsAsCharArray(Util.java:982) at org.eclipse.jdt.internal.core.builder.SourceFile.getContents(SourceFile.java:79) at org.eclipse.jdt.internal.compiler.parser.Parser.parse(Parser.java:8595) at org.eclipse.jdt.internal.compiler.parser.Parser.parse(Parser.java:8577) at org.eclipse.jdt.internal.compiler.parser.Parser.dietParse(Parser.java:7376) at org.eclipse.jdt.internal.compiler.Compiler.accept(Compiler.java:217) at org.eclipse.jdt.internal.compiler.lookup.LookupEnvironment.askForType(LookupEnvironment.java:128) at org.eclipse.jdt.internal.compiler.lookup.PackageBinding.getTypeOrPackage(PackageBinding.java:178) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.findImport(CompilationUnitScope.java:382) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.findSingleImport(CompilationUnitScope.java:435) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.faultInImports(CompilationUnitScope.java:308) at org.eclipse.jdt.internal.compiler.lookup.CompilationUnitScope.faultInTypes(CompilationUnitScope.java:369) 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:213) at org.eclipse.jdt.internal.core.builder.JavaBuilder.build(JavaBuilder.java:136) at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:581) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1026) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:160) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:198) at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:227) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1026) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:230) at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:249) at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:278) at org.eclipse.core.internal.resources.Workspace.build(Workspace.java:211) at org.eclipse.ui.actions.GlobalBuildAction$1.run(GlobalBuildAction.java:183) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-28" prio=5 tid=0x1a7d4268 nid=0xeac in Object.wait() [0x1b5df000..0x1b5dfd68] at java.lang.Object.wait(Native Method) at org.eclipse.team.internal.core.BackgroundEventHandler.isReadyForDispatch(BackgroundEventHandler.java:388) - locked <0x057a6b50> (a org.eclipse.team.internal.core.subscribers.SubscriberEventHandler) at org.eclipse.team.internal.core.BackgroundEventHandler.processEvents(BackgroundEventHandler.java:333) at org.eclipse.team.internal.core.BackgroundEventHandler$1.run(BackgroundEventHandler.java:173) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-27" prio=5 tid=0x1aa703f0 nid=0xaec in Object.wait() [0x1b59f000..0x1b59f9e8] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x088cf678> (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.ui.internal.editors.quickdiff.LastSaveReferenceProvider.lockDocument(LastSaveReferenceProvider.java:285) at org.eclipse.ui.internal.editors.quickdiff.LastSaveReferenceProvider.readDocument(LastSaveReferenceProvider.java:237) at org.eclipse.ui.internal.editors.quickdiff.LastSaveReferenceProvider.getReference(LastSaveReferenceProvider.java:118) at org.eclipse.ui.internal.texteditor.quickdiff.DocumentLineDiffer$1.run(DocumentLineDiffer.java:447) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-26" prio=5 tid=0x1ab2bdb8 nid=0x3cc in Object.wait() [0x1b49f000..0x1b49fa68] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:168) - locked <0x046890a0> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:200) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "Worker-25" prio=5 tid=0x1aab9408 nid=0xb9c in Object.wait() [0x1a57f000..0x1a57fae8] at java.lang.Object.wait(Native Method) - waiting on <0x076139d8> (a org.eclipse.core.internal.jobs.ThreadJob) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x076139d8> (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.utils.StringPoolJob.run(StringPoolJob.java:91) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-24" prio=5 tid=0x1aae5408 nid=0x4fc in Object.wait() [0x1b4df000..0x1b4dfb68] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x088cf9b8> (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.ui.internal.editors.quickdiff.LastSaveReferenceProvider.lockDocument(LastSaveReferenceProvider.java:285) at org.eclipse.ui.internal.editors.quickdiff.LastSaveReferenceProvider.readDocument(LastSaveReferenceProvider.java:237) at org.eclipse.ui.internal.editors.quickdiff.LastSaveReferenceProvider.getReference(LastSaveReferenceProvider.java:118) at org.eclipse.ui.internal.texteditor.quickdiff.DocumentLineDiffer$1.run(DocumentLineDiffer.java:447) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-21" prio=5 tid=0x1aa18898 nid=0xbc0 in Object.wait() [0x1b55f000..0x1b55fb68] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x088cfce0> (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.ui.internal.editors.quickdiff.LastSaveReferenceProvider.lockDocument(LastSaveReferenceProvider.java:285) at org.eclipse.ui.internal.editors.quickdiff.LastSaveReferenceProvider.readDocument(LastSaveReferenceProvider.java:237) at org.eclipse.ui.internal.editors.quickdiff.LastSaveReferenceProvider.getReference(LastSaveReferenceProvider.java:118) at org.eclipse.ui.internal.texteditor.quickdiff.DocumentLineDiffer$1.run(DocumentLineDiffer.java:447) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:67) "Worker-18" prio=5 tid=0x1aae6af0 nid=0xa80 in Object.wait() [0x1c89f000..0x1c89fce8] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:168) - locked <0x046890a0> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob(WorkerPool.java:200) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:60) "YJP Listener Thread" prio=7 tid=0x1a8c37b0 nid=0xdd4 runnable [0x1b6af000..0x1b6afbe8] at java.net.PlainSocketImpl.socketAccept(Native Method) at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384) - locked <0x069c6b38> (a java.net.SocksSocketImpl) at java.net.ServerSocket.implAccept(ServerSocket.java:450) at java.net.ServerSocket.accept(ServerSocket.java:421) at com.yourkit.b.a.run(a:39) "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon prio=2 tid=0x19f0d3d0 nid=0xa58 in Object.wait() [0x1b3af000..0x1b3afc68] at java.lang.Object.wait(Native Method) - waiting on <0x05626c58> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run(AbstractReconciler.java:176) - locked <0x05626c58> (a org.eclipse.jface.text.reconciler.DirtyRegionQueue) "Java indexing" daemon prio=4 tid=0x1a8aa000 nid=0xf60 in Object.wait() [0x1b26f000..0x1b26fce8] at java.lang.Object.wait(Native Method) - waiting on <0x054fbdc0> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Object.wait(Object.java:492) at org.eclipse.jdt.internal.core.search.processing.JobManager.run(JobManager.java:346) - locked <0x054fbdc0> (a org.eclipse.jdt.internal.core.search.indexing.IndexManager) at java.lang.Thread.run(Thread.java:595) "Start Level Event Dispatcher" daemon prio=5 tid=0x19e7b9f0 nid=0x578 in Object.wait() [0x1a4ef000..0x1a4efbe8] at java.lang.Object.wait(Native Method) - waiting on <0x045af700> (a org.eclipse.osgi.framework.eventmgr.EventThread) at java.lang.Object.wait(Object.java:492) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent(EventThread.java:162) - locked <0x045af700> (a org.eclipse.osgi.framework.eventmgr.EventThread) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:100) "Framework Event Dispatcher" daemon prio=5 tid=0x19e80260 nid=0xf1c in Object.wait() [0x1a46f000..0x1a46fce8] at java.lang.Object.wait(Native Method) - waiting on <0x045a2da0> (a org.eclipse.osgi.framework.eventmgr.EventThread) at java.lang.Object.wait(Object.java:492) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent(EventThread.java:162) - locked <0x045a2da0> (a org.eclipse.osgi.framework.eventmgr.EventThread) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:100) "Low Memory Detector" daemon prio=5 tid=0x00344028 nid=0x564 runnable [0x00000000..0x00000000] "CompilerThread0" daemon prio=10 tid=0x00347b00 nid=0x2fc waiting on condition [0x00000000..0x19d8f8cc] "Signal Dispatcher" daemon prio=10 tid=0x00342b80 nid=0xc58 waiting on condition [0x00000000..0x00000000] "YJP CPU Sampler" daemon prio=5 tid=0x0035ab78 nid=0xa2c runnable [0x00000000..0x00000000] "YJP RequestServer" daemon prio=5 tid=0x0035a9f8 nid=0xaf0 runnable [0x19ccf000..0x19ccfb68] at java.net.PlainSocketImpl.socketAccept(Native Method) at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384) - locked <0x04572628> (a java.net.SocksSocketImpl) at java.net.ServerSocket.implAccept(ServerSocket.java:450) at java.net.ServerSocket.accept(ServerSocket.java:421) at com.yourkit.runtime.RequestServer.doIt(RequestServer.java:240) at com.yourkit.runtime.RequestServer.access$000(RequestServer.java:12) at com.yourkit.runtime.RequestServer$1.run(RequestServer.java:229) "Finalizer" daemon prio=9 tid=0x00337e90 nid=0x8b4 in Object.wait() [0x19c8f000..0x19c8fc68] at java.lang.Object.wait(Native Method) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116) - locked <0x045727a8> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159) "Reference Handler" daemon prio=10 tid=0x00336a00 nid=0xa08 in Object.wait() [0x19c4f000..0x19c4fce8] at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:492) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116) - locked <0x04572828> (a java.lang.ref.Reference$Lock) "main" prio=7 tid=0x000369d8 nid=0xbf8 in Object.wait() [0x0007e000..0x0007fc40] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.ThreadJob.joinRun(ThreadJob.java:170) - locked <0x08b8e678> (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:1671) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1711) at org.eclipse.jdt.internal.core.JavaModelOperation.runOperation(JavaModelOperation.java:782) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2836) at org.eclipse.jdt.internal.core.JavaProject.setRawClasspath(JavaProject.java:2801) at org.eclipse.jdt.internal.corext.buildpath.ClasspathModifier.updateClasspath(ClasspathModifier.java:1520) at org.eclipse.jdt.internal.corext.buildpath.ClasspathModifier.addToClasspath(ClasspathModifier.java:220) at org.eclipse.jdt.internal.corext.buildpath.AddSelectedSourceFolderOperation.run(AddSelectedSourceFolderOperation.java:71) at org.eclipse.jdt.internal.ui.wizards.buildpaths.newsourcepage.BuildPathAction.run(BuildPathAction.java:115) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2900) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2533) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1569) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1533) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:345) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:158) 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:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) "VM Thread" prio=10 tid=0x003340d0 nid=0x310 runnable "VM Periodic Task Thread" prio=10 tid=0x0037ae10 nid=0x7f4 waiting on condition | resolved fixed | 940b12d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/BuildPathAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-29T09:59:21Z" | "2005-04-29T07:33:20Z" |
89,645 | Bug 89645 "Build" button appears on toolbar when "New Java Project" wizard is active | Build 20050330 Whenever I press the "New Java Project" button on the toolbar, the "Build" button appears on the toolbar while the resulting wizard is active. The button disappears (causing the other toolbar buttons to shift again) when the wizard is dismissed. | resolved fixed | 8db65ea | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardSecondPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-29T09:05:33Z" | "2005-03-30T19:13:20Z" |
68,190 | Bug 68190 UndoManager and perform change operation must call #dispose on change to be executed if validation fails | 3.0 Dispose isn't called if the change object couldn't be executed (isValid didn't return a fatal error). | resolved fixed | f5f54f9 | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/ChangeExceptionHandler.java", "org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/UIPerformChangeOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-28T22:49:24Z" | "2004-06-22T16:00:00Z" |
91,505 | Bug 91505 Typo in new API: JavaElementLabels.getDeclararionLabel(..) | I20050414-1107 Typo in new API: JavaElementLabels.getDeclararionLabel(..) ^ should be t Can we still correct this (it's new 3.1 API)? | resolved fixed | b2c97fe | ["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-04-28T17:50:13Z" | "2005-04-15T10:13:20Z" |
67,289 | Bug 67289 UIPerformChangeOperation swallows exception stacktrace [refactoring] | 200406111814 UIPerformChangeOperation#executeChange() swallows the exceptions thrown during change execution: throw new CoreException(exception[0].getStatus()); ... drops the (very informative) stacktrace of exception[0]. Since CoreExceptions cannot be nested, either a nestable subclass of CoreException should be thrown or ... IStatus status= exception[0].getStatus(); throw new CoreException(new MultiStatus( status.getPlugin(), status.getCode(), new IStatus[]{status}, status.getMessage(), exception[0])); ... should be used. | resolved fixed | aaabaa2 | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/UIPerformChangeOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-27T20:40:09Z" | "2004-06-15T17:20:00Z" |
92,905 | Bug 92905 Initial use of Open Type gives no feedback for several seconds | build I20050426-1700 - switched to new build - used Ctrl+Shift+T - it appeared unresponsive for several seconds (though CPU usage went up), then the "Checking model consistency..." dialog came up and did work for a while - should bring up the dialog sooner, or show the busy cursor if this is not possible | resolved fixed | 1cb6b0a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenTypeAction.java", "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-04-27T17:42:29Z" | "2005-04-27T13:53:20Z" |
92,847 | Bug 92847 [api] missing specs and @since tags on GenerateNewConstructorUsingFieldsAction fields | 3.1 HEAD GenerateNewConstructorUsingFieldsAction static public final int DOWN_INDEX= 1; static public final int UP_INDEX= 0; These 2 fields were private in 3.0; now they're public, and therefore API. If the intent was to make them API, add specs and @since 3.1 tags. | verified fixed | 3836a1e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateConstructorUsingFieldsSelectionDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateNewConstructorUsingFieldsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-27T08:38:54Z" | "2005-04-26T21:13:20Z" |
92,801 | Bug 92801 [content assist] additional info (javadoc) missing | I20050426-0849 The additional info (javadoc) is missing. | resolved fixed | eb8f21f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal2.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaMethodCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-26T16:39:50Z" | "2005-04-26T15:40:00Z" |
92,751 | Bug 92751 wording: open type "checking histroy elements" | I20050420 + ZRH 0426 when doing 'Open Type' for the first time, there is a dialog saying something about "histroy" elements | resolved fixed | 5d984e6 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/CorextMessages.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/TypeInfoHistory.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-26T14:49:14Z" | "2005-04-26T10:06:40Z" |
92,563 | Bug 92563 [content assist] Warm code assist performance for many types | null | resolved fixed | c192fb9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ExperimentalProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ExperimentalResultCollector.java", "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/JavaCompletionProposal2.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/JavaTypeCompletionProposal2.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ParameterGuessingProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalCollector.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalComparator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-26T09:11:04Z" | "2005-04-25T11:53:20Z" |
92,561 | Bug 92561 Leaked HistoryItems in DocumentManager? | I20050420-1200 In a huge YourKit memory trace, I see that DocumentManager holds 303 Documents in memory. I used local history before, but when I made the dump, no local history dialog was up. YourKit says that the 'Retained size' of the array fgValues is 75,393,728 bytes. [Snapshot on my machine: I20050420-1200_1.5.0_20050425_1004.memory] | resolved fixed | dfd5e18 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureCreator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-26T09:02:54Z" | "2005-04-25T09:06:40Z" |
92,464 | Bug 92464 NPE creating new type Object | Build 20050420-1200 In an empty project, tried to define some minimal JCL (no JRE on classpath). First class defined through wizard is: java.lang.Object, press finish got the following exception. !ENTRY org.eclipse.jdt.ui 4 10001 2005-04-22 23:59:06.625 !MESSAGE Internal Error !STACK 0 java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:327) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:830) at org.eclipse.jdt.internal.ui.wizards.NewElementWizard.performFinish(NewElementWizard.java:130) at org.eclipse.jdt.internal.ui.wizards.NewClassCreationWizard.performFinish(NewClassCreationWizard.java:63) at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:676) at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:349) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2897) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2530) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) at org.eclipse.ui.internal.actions.NewWizardShortcutAction.run(NewWizardShortcutAction.java:102) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2897) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2530) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) 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:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) Caused by: java.lang.NullPointerException at org.eclipse.jdt.ui.wizards.NewTypeWizardPage.createImports(NewTypeWizardPage.java:2249) at org.eclipse.jdt.ui.wizards.NewTypeWizardPage.createInheritedMethods(NewTypeWizardPage.java:2235) at org.eclipse.jdt.ui.wizards.NewClassWizardPage.createTypeMembers(NewClassWizardPage.java:250) at org.eclipse.jdt.ui.wizards.NewTypeWizardPage.createType(NewTypeWizardPage.java:1829) at org.eclipse.jdt.internal.ui.wizards.NewClassCreationWizard.finishPage(NewClassCreationWizard.java:55) at org.eclipse.jdt.internal.ui.wizards.NewElementWizard$2.run(NewElementWizard.java:114) 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:1716) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3650) at org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Root exception: java.lang.NullPointerException at org.eclipse.jdt.ui.wizards.NewTypeWizardPage.createImports(NewTypeWizardPage.java:2249) at org.eclipse.jdt.ui.wizards.NewTypeWizardPage.createInheritedMethods(NewTypeWizardPage.java:2235) at org.eclipse.jdt.ui.wizards.NewClassWizardPage.createTypeMembers(NewClassWizardPage.java:250) at org.eclipse.jdt.ui.wizards.NewTypeWizardPage.createType(NewTypeWizardPage.java:1829) at org.eclipse.jdt.internal.ui.wizards.NewClassCreationWizard.finishPage(NewClassCreationWizard.java:55) at org.eclipse.jdt.internal.ui.wizards.NewElementWizard$2.run(NewElementWizard.java:114) 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:1716) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3650) at org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:87) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) | resolved fixed | 31bfebc | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedMethodsOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-25T16:47:39Z" | "2005-04-22T22:46:40Z" |
91,324 | Bug 91324 [refactoring] refactoring extract constant failed | I20050413-0910 I tried to "extract constant" on "new char[0][]", and received the following exception in the log: 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:282) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.internalPerformFinish (RefactoringWizard.java:544) at org.eclipse.ltk.ui.refactoring.UserInputWizardPage.performFinish (UserInputWizardPage.java:153) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.performFinish (RefactoringWizard.java:610) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.okPressed (RefactoringWizardDialog2.java:406) at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:409) at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2895) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2528) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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.ui.actions.ExtractConstantAction.run (ExtractConstantAction.java:82) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun (SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run (SelectionDispatchAction.java:188) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2895) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2528) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:316) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:948) at org.eclipse.core.launcher.Main.main(Main.java:932) Caused by: java.lang.IllegalArgumentException at org.eclipse.jdt.core.dom.PrimitiveType.setPrimitiveTypeCode (PrimitiveType.java:280) at org.eclipse.jdt.core.dom.AST.newPrimitiveType(AST.java:1465) at org.eclipse.jdt.internal.corext.refactoring.code.ExtractConstantRefactoring.cre ateConstantDeclaration(ExtractConstantRefactoring.java:533) at org.eclipse.jdt.internal.corext.refactoring.code.ExtractConstantRefactoring.che ckFinalConditions(ExtractConstantRefactoring.java:494) 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.ltk.core.refactoring.PerformChangeOperation.run (PerformChangeOperation.java:189) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1714) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run (WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:113) Root exception: java.lang.IllegalArgumentException at org.eclipse.jdt.core.dom.PrimitiveType.setPrimitiveTypeCode (PrimitiveType.java:280) at org.eclipse.jdt.core.dom.AST.newPrimitiveType(AST.java:1465) at org.eclipse.jdt.internal.corext.refactoring.code.ExtractConstantRefactoring.cre ateConstantDeclaration(ExtractConstantRefactoring.java:533) at org.eclipse.jdt.internal.corext.refactoring.code.ExtractConstantRefactoring.che ckFinalConditions(ExtractConstantRefactoring.java:494) 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.ltk.core.refactoring.PerformChangeOperation.run (PerformChangeOperation.java:189) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1714) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run (WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:113) | resolved fixed | b6bfe44 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractConstant/canExtract/A_test27_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractConstant/canExtract/A_test27_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractConstantTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractConstantRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-25T15:01:09Z" | "2005-04-13T19:20:00Z" |
85,502 | Bug 85502 [5.0][syntax coloring] Coloring of unboxing/boxing: Missing cases | 20050216 The following cases seem to be missed by the boxing/unboxing syntax colorer: (enable compiler warning for (un)boxing to see where boxing occurs) public class A { private void foo1() { int a= 9; if (a == new Integer(9)) { } } private void foo2() { Integer x= 'c'; } private void foo3() { int si= true ? new Integer(0) : new Character('x'); } private void foo4() { Integer x= new Integer(9); x += 9; } private void foo5() { Integer[] a= {1, 2, 3}; int[] b= {a[0]}; } private void foo6() { Integer y= new Integer(9); switch (y) { } } private int foo7() { Integer y= new Integer(9); return y; } private Integer foo8() { int count= 9; return count; } } | resolved fixed | b6f5480 | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/AutoboxingSemanticHighlightingTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlighting.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightingReconciler.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightings.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticToken.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-25T13:33:25Z" | "2005-02-16T18:53:20Z" |
92,344 | Bug 92344 [call hierarchy] JavaModelException when accessing removed type | null | resolved fixed | a17af15 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/JavaUIHelp.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/JavadocHelpContext.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-25T10:36:08Z" | "2005-04-22T08:53:20Z" |
90,424 | Bug 90424 Should add more performance tests to jdt.ui fingerprint | Especially test for Move and Rename which deals with lots of references (the 1000_10 and 10_1000 tests which update 100000 references) should have a performance and heap space usage finger print Additionally we should activate the ExtractInterfaceTest since it shows the improvements we did there. | resolved fixed | c7748c9 | ["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/MoveCompilationUnitPerfTests1.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/MoveCompilationUnitPerfTests2.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/MoveStaticMembersPerfTests1.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/MoveStaticMembersPerfTests2.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/RenameMethodPerfTests1.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/RenameMethodPerfTests2.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/RenamePackagePerfTests1.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/RenamePackagePerfTests2.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/RenameTypePerfTests1.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/reorg/RenameTypePerfTests2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-25T10:20:47Z" | "2005-04-06T09:33:20Z" |
90,749 | Bug 90749 Delegate methods cannot be created for all fields | For some reason, when I go to Source > Generate delegate methods, it is not giving me an option to generate delegate methods for all the fields, as you can see on the attached screenshot. | resolved fixed | 21396d7 | ["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-04-25T09:24:14Z" | "2005-04-08T00:26:40Z" |
90,930 | Bug 90930 Generate constructor using fields generates wrong parameter name | private static class Data { public int modifier; public char[] name; public char[] packageName; public char[][] enclosingNames; public String path; } Generate constructor using field. Observer: you get two parameters named "name". | verified fixed | 1652252 | ["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-04-25T09:10:02Z" | "2005-04-10T16:20:00Z" |
44,362 | Bug 44362 [painting] Should not search for occurrences if element under cursor is the same | null | resolved fixed | 2b9415c | ["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-04-22T15:18:47Z" | "2003-10-07T20:53:20Z" |
65,556 | Bug 65556 [implementation] JavaAutoIndentStrategy performance? | Build: 3.0 RC1 Ok, this is a bit of a silly test case, but it might point to possible performance improvements in the auto-indent code. These times are on a 2.5 Ghz PIV with plenty of RAM. 1) Copy, for example, an Eclipse book or a Tolstoy novel onto the clipboard (in my example, 110,000 words, 14,000 lines) 2) Paste into an empty text editor. -> Wow! It is *really* fast, faster than Notepad. Less than a second. 3) Paste into an empty Java editor. -> Still quite good, about three seconds. 4) Create a trivial Java file: package p1; public class A { } 5) Now paste the clipboard contents between the braces. -> Eclipse becomes unresponsive for 5 minutes. During this time, CPU is pegged but memory usage is stable and reasonable. I did stack dumps once a minute, and they were all inside JavaAutoIndentStrategy. See below for an example stack trace. After it came back to life, everything was fine and the editor was reasonably responsive. In org/eclipse/jface/text/GapTextStore.replace(IILjava/lang/String;)V In org/eclipse/jface/text/AbstractDocument.replace(IILjava/lang/String;) V In org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.addInden t(Lorg/eclipse/jface/text/Document;ILjava/lang/CharSequence;)V In org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.smartPas te(Lorg/eclipse/jface/text/IDocument;Lorg/eclipse/jface/text/DocumentCommand;)V In org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.customiz eDocumentCommand(Lorg/eclipse/jface/text/IDocument;Lorg/eclipse/jface/text/Docum entCommand;)V In org/eclipse/jface/text/TextViewer.customizeDocumentCommand(Lorg/eclip se/jface/text/DocumentCommand;)V In org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor$AdaptedS ourceViewer.customizeDocumentCommand(Lorg/eclipse/jface/text/DocumentCommand;)V In org/eclipse/jface/text/TextViewer.handleVerifyEvent(Lorg/eclipse/swt/ events/VerifyEvent;)V In org/eclipse/jface/text/source/projection/ProjectionViewer.handleVerif yEvent(Lorg/eclipse/swt/events/VerifyEvent;)V In org/eclipse/jface/text/TextViewer$TextVerifyListener.verifyText(Lorg/ eclipse/swt/events/VerifyEvent;)V In org/eclipse/swt/widgets/TypedListener.handleEvent(Lorg/eclipse/swt/wi dgets/Event;)V In org/eclipse/swt/widgets/EventTable.sendEvent(Lorg/eclipse/swt/widgets /Event;)V In org/eclipse/swt/widgets/Widget.sendEvent(Lorg/eclipse/swt/widgets/Eve nt;)V In org/eclipse/swt/widgets/Widget.sendEvent(ILorg/eclipse/swt/widgets/Ev ent;Z)V In org/eclipse/swt/widgets/Widget.sendEvent(ILorg/eclipse/swt/widgets/Ev ent;)V In org/eclipse/swt/widgets/Widget.notifyListeners(ILorg/eclipse/swt/widg ets/Event;)V In org/eclipse/swt/custom/StyledText.modifyContent(Lorg/eclipse/swt/widg ets/Event;Z)V In org/eclipse/swt/custom/StyledText.sendKeyEvent(Lorg/eclipse/swt/widge ts/Event;)V In org/eclipse/swt/custom/StyledText.paste()V In org/eclipse/jface/text/TextViewer.doOperation(I)V In org/eclipse/jface/text/source/SourceViewer.doOperation(I)V In org/eclipse/jface/text/source/projection/ProjectionViewer.doOperation (I)V In org/eclipse/jdt/internal/ui/javaeditor/JavaSourceViewer.doOperation(I )V In org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor$AdaptedS ourceViewer.doOperation(I)V In org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction.doPas teWithImportsOperation()V In org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction.inter nalDoOperation()V In org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction$1.run ()V In org/eclipse/swt/custom/BusyIndicator.showWhile(Lorg/eclipse/swt/widge ts/Display;Ljava/lang/Runnable;)V In org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction.run() V In org/eclipse/jface/action/Action.runWithEvent(Lorg/eclipse/swt/widgets /Event;)V In org/eclipse/ui/commands/ActionHandler.execute(Ljava/util/Map;)Ljava/l ang/Object; In org/eclipse/ui/internal/commands/Command.execute(Ljava/util/Map;)Ljav a/lang/Object; In org/eclipse/ui/internal/keys/WorkbenchKeyboard.executeCommand(Ljava/l ang/String;)Z In org/eclipse/ui/internal/keys/WorkbenchKeyboard.press(Ljava/util/List; Lorg/eclipse/swt/widgets/Event;)Z In org/eclipse/ui/internal/keys/WorkbenchKeyboard.processKeyEvent(Ljava/ util/List;Lorg/eclipse/swt/widgets/Event;)V In org/eclipse/ui/internal/keys/WorkbenchKeyboard.filterKeySequenceBindi ngs(Lorg/eclipse/swt/widgets/Event;)V In org/eclipse/ui/internal/keys/WorkbenchKeyboard.access$2(Lorg/eclipse/ ui/internal/keys/WorkbenchKeyboard;Lorg/eclipse/swt/widgets/Event;)V In org/eclipse/ui/internal/keys/WorkbenchKeyboard$1.handleEvent(Lorg/ecl ipse/swt/widgets/Event;)V In org/eclipse/swt/widgets/EventTable.sendEvent(Lorg/eclipse/swt/widgets /Event;)V In org/eclipse/swt/widgets/Display.filterEvent(Lorg/eclipse/swt/widgets/ Event;)Z In org/eclipse/swt/widgets/Widget.sendEvent(Lorg/eclipse/swt/widgets/Eve nt;)V In org/eclipse/swt/widgets/Widget.sendEvent(ILorg/eclipse/swt/widgets/Ev ent;Z)V In org/eclipse/swt/widgets/Widget.sendEvent(ILorg/eclipse/swt/widgets/Ev ent;)V In org/eclipse/swt/widgets/Control.sendKeyEvent(IIIILorg/eclipse/swt/wid gets/Event;)Z In org/eclipse/swt/widgets/Control.sendKeyEvent(IIII)Z In org/eclipse/swt/widgets/Control.WM_CHAR(II)Lorg/eclipse/swt/internal/ win32/LRESULT; In org/eclipse/swt/widgets/Control.windowProc(IIII)I In org/eclipse/swt/widgets/Display.windowProc(IIII)I In org/eclipse/swt/internal/win32/OS.DispatchMessageW(Lorg/eclipse/swt/i nternal/win32/MSG;)I In org/eclipse/swt/internal/win32/OS.DispatchMessage(Lorg/eclipse/swt/in ternal/win32/MSG;)I In org/eclipse/swt/widgets/Display.readAndDispatch()Z In org/eclipse/ui/internal/Workbench.runEventLoop(Lorg/eclipse/jface/win dow/Window$IExceptionHandler;Lorg/eclipse/swt/widgets/Display;)V In org/eclipse/ui/internal/Workbench.runUI()I In org/eclipse/ui/internal/Workbench.createAndRunWorkbench(Lorg/eclipse/ swt/widgets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I In org/eclipse/ui/PlatformUI.createAndRunWorkbench(Lorg/eclipse/swt/widg ets/Display;Lorg/eclipse/ui/application/WorkbenchAdvisor;)I In org/eclipse/ui/internal/ide/IDEApplication.run(Ljava/lang/Object;)Lja va/lang/Object; In org/eclipse/core/internal/runtime/PlatformActivator$1.run(Ljava/lang/ Object;)Ljava/lang/Object; In org/eclipse/core/runtime/adaptor/EclipseStarter.run(Ljava/lang/Object ;)Ljava/lang/Object; In org/eclipse/core/runtime/adaptor/EclipseStarter.run([Ljava/lang/Strin g;Ljava/lang/Runnable;)Ljava/lang/Object; In sun/reflect/NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Metho d;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; In sun/reflect/NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/ lang/Object;)Ljava/lang/Object; In sun/reflect/DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Lj ava/lang/Object;)Ljava/lang/Object; In java/lang/reflect/Method.invoke(Ljava/lang/Object;[Ljava/lang/Object; )Ljava/lang/Object; In org/eclipse/core/launcher/Main.basicRun([Ljava/lang/String;)Ljava/lan g/Object; In org/eclipse/core/launcher/Main.run([Ljava/lang/String;)I In org/eclipse/core/launcher/Main.main([Ljava/lang/String;)V | resolved fixed | 9e29cd0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-22T12:51:50Z" | "2004-06-03T16:26:40Z" |
90,394 | Bug 90394 [JUnit] Junit source missing | 3.1M6. Create new project, new class, new junit test for that class. Eclipse asks to add junit.jar to the classpath, say OK. Right click junit.jar, click Java Source Attachment. An error says the path does not exist. Here's what is filled in: ECLIPSE_HOME/plugins/org.eclipse.jdt.source_3.0.0/src/org.junit_3.8.1/junitsrc.zip Changing the path to 3.1.0 manually fixes it. (although the error message persists until I switch to another tab and come back, that may be another bug). You may want to define another classpath variable like JDT_SOURCE or something to prevent this kind of problem in the future. | resolved fixed | 29eb6a0 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitAddLibraryProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-21T09:27:46Z" | "2005-04-05T22:26:40Z" |
91,524 | Bug 91524 [nls tooling] AssertionFailedException when externalizing strings | I20050413-0910 Happened with Eclipse stye message class where BUNDLE_NAME was inlined into NLS.initializeMessages !SESSION 2005-04-15 16:00:12.603 ----------------------------------------------- eclipse.buildId=I20050413-0910 java.version=1.4.2_06 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_CH Framework arguments: -update -application org.eclipse.ui.ide.workbench -keyring c:\eclipse\.keyring -showlocation Command-line arguments: -update -application org.eclipse.ui.ide.workbench -keyring c:\eclipse\.keyring -showlocation -data c:\eclipse\workspaces\BuildMeister_2_2\plugins !ENTRY org.eclipse.ui 4 4 2005-04-15 16:00:12.603 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 2005-04-15 16:00:12.603 !MESSAGE null argument; !STACK 0 org.eclipse.jface.text.Assert$AssertionFailedException: null argument; at org.eclipse.jface.text.Assert.isNotNull(Assert.java:158) at org.eclipse.jface.text.Assert.isNotNull(Assert.java:134) at org.eclipse.jdt.internal.corext.refactoring.nls.AccessorClassReference.<init>(AccessorClassReference.java:27) at org.eclipse.jdt.internal.corext.refactoring.nls.NLSHint$1.visit(NLSHint.java:169) 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.ClassInstanceCreation.accept0(ClassInstanceCreation.java:333) 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.VariableDeclarationFragment.accept0(VariableDeclarationFragment.java:224) 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.FieldDeclaration.accept0(FieldDeclaration.java:286) 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:120) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction.run(ExternalizeStringsAction.java:116) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction.run(ExternalizeStringsAction.java:98) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2895) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2528) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) 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:316) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:948) at org.eclipse.core.launcher.Main.main(Main.java:932) | verified fixed | 2326851 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/AccessorClassReference.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSHintHelper.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-20T17:07:07Z" | "2005-04-15T13:00:00Z" |
92,009 | Bug 92009 [nls tooling] Externalize Strings wizard broken | Since we moved to the new NLS format, I cannot externalize strings any more. Whenever I open the wizard on a file and check the option to use the new NLS format, I get the following error: 'Some keys are invalid' I also get error overlay on a bunch of keys in the checkbox column. I cannot work until this is fixed. | resolved fixed | de5a6fd | ["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-04-20T17:06:07Z" | "2005-04-19T22:33:20Z" |
91,955 | Bug 91955 API Request: Add modification stamp to document and document event | null | resolved fixed | 9ae2547 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/PartiallySynchronizedDocument.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-20T15:38:25Z" | "2005-04-19T17:00:00Z" |
91,809 | Bug 91809 Packages view throws NPE on creation | Running with code in HEAD, 20050418 Switch to the Java Browsing perspective. I get: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.browsing.PackagesView.findInputForJavaElement(PackagesView.java:545) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.setInitialInput(JavaBrowsingPart.java:898) at org.eclipse.jdt.internal.ui.browsing.JavaBrowsingPart.createPartControl(JavaBrowsingPart.java:374) at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:305) at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:182) at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:492) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:265) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:514) at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:126) at org.eclipse.ui.internal.presentations.newapi.PresentablePartFolder.select(PresentablePartFolder.java:268) at org.eclipse.ui.internal.presentations.newapi.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65) at org.eclipse.ui.internal.presentations.newapi.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:391) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1064) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:552) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:489) at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:485) at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:230) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:781) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2742) at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:870) at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:855) at org.eclipse.ui.internal.WorkbenchPage$12.run(WorkbenchPage.java:2864) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2862) at org.eclipse.ui.internal.PerspectiveBarContributionItem.select(PerspectiveBarContributionItem.java:109) at org.eclipse.ui.internal.PerspectiveBarContributionItem$1.widgetSelected(PerspectiveBarContributionItem.java:81) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2897) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2530) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) 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:319) at org.eclipse.core.launcher.Main.basicRun(Main.java:272) at org.eclipse.core.launcher.Main.run(Main.java:951) at org.eclipse.core.launcher.Main.main(Main.java:935) | resolved fixed | 21980bb | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/PackagesView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-19T08:48:24Z" | "2005-04-19T00:20:00Z" |
91,721 | Bug 91721 [content assist] Code assist UI: Inner types rendered with container qualification | 20050418 See screenshot. The label of a inner type should better just contain the name (the container name can be in the appended qualification) | resolved fixed | b1c9df3 | ["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-04-19T08:35:14Z" | "2005-04-18T10:26:40Z" |
91,072 | Bug 91072 F2/Hover for external javadoc does not work | null | resolved fixed | 161efb5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavadocConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-15T16:14:00Z" | "2005-04-12T04:26:40Z" |
90,391 | Bug 90391 [refactoring] [move] Bad progress reporting in move static members | Take scenario from 90365 Observe: the progress reporting is really bad. Especially the flashing between searching... and visibility checking with no progress of the progress monitor is annoying. | resolved fixed | 81b37b4 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveStaticMembersProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-15T15:12:17Z" | "2005-04-05T22:26:40Z" |
91,266 | Bug 91266 [refactor/code completion] change method signature, code completion not useable | We can with CTRL-SPACE initalize code completion in the type selection of the change method signature. But if we then press enter to select the right type we just pointed out with code completion. The enter is consumed by the table below and the selected value in the code completion popup is ignored. So yes you can see what values there are but as far as i know you can't select them with the keyboard (mouse is possible) | verified fixed | 00bbb75 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeParametersControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TableTextCellEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-15T14:59:28Z" | "2005-04-13T13:46:40Z" |
90,880 | Bug 90880 [refactoring] AssertionError when running Infer Type Arguments | When running the Infer Type Arguments refactoring, I encountered the following internal 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:282) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.createChange(RefactoringWizard.java:570) at org.eclipse.ltk.ui.refactoring.RefactoringWizard.computeUserInputSuccessorPage(RefactoringWizard.java:413) 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:436) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.access$3(RefactoringWizardDialog2.java:434) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2$1.widgetSelected(RefactoringWizardDialog2.java:570) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2894) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2527) at org.eclipse.jface.window.Window.runEventLoop(Window.java:803) at org.eclipse.jface.window.Window.open(Window.java:781) 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.ui.actions.InferTypeArgumentsAction.startRefactoring(InferTypeArgumentsAction.java:133) at org.eclipse.jdt.ui.actions.InferTypeArgumentsAction.run(InferTypeArgumentsAction.java:108) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) 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:225) 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:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2894) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2527) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) 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:315) at org.eclipse.core.launcher.Main.basicRun(Main.java:268) at org.eclipse.core.launcher.Main.run(Main.java:942) at org.eclipse.core.launcher.Main.main(Main.java:926) Caused by: org.eclipse.jdt.internal.corext.Assert$AssertionFailedException: assertion failed; at org.eclipse.jdt.internal.corext.Assert.isTrue(Assert.java:139) at org.eclipse.jdt.internal.corext.Assert.isTrue(Assert.java:124) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsTCModel.getElementVariable(InferTypeArgumentsTCModel.java:613) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsConstraintCreator.doVisitMethodInvocationArguments(InferTypeArgumentsConstraintCreator.java:545) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsConstraintCreator.endVisit(InferTypeArgumentsConstraintCreator.java:624) at org.eclipse.jdt.core.dom.ClassInstanceCreation.accept0(ClassInstanceCreation.java:336) 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.ReturnStatement.accept0(ReturnStatement.java:135) 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.SynchronizedStatement.accept0(SynchronizedStatement.java:164) 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.generics.InferTypeArgumentsRefactoring$1.acceptAST(InferTypeArgumentsRefactoring.java:159) at org.eclipse.jdt.core.dom.CompilationUnitResolver.resolve(CompilationUnitResolver.java:671) at org.eclipse.jdt.core.dom.CompilationUnitResolver.resolve(CompilationUnitResolver.java:441) at org.eclipse.jdt.core.dom.ASTParser.createASTs(ASTParser.java:646) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsRefactoring.checkFinalConditions(InferTypeArgumentsRefactoring.java:155) 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:1714) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) Root exception: org.eclipse.jdt.internal.corext.Assert$AssertionFailedException: assertion failed; at org.eclipse.jdt.internal.corext.Assert.isTrue(Assert.java:139) at org.eclipse.jdt.internal.corext.Assert.isTrue(Assert.java:124) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsTCModel.getElementVariable(InferTypeArgumentsTCModel.java:613) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsConstraintCreator.doVisitMethodInvocationArguments(InferTypeArgumentsConstraintCreator.java:545) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsConstraintCreator.endVisit(InferTypeArgumentsConstraintCreator.java:624) at org.eclipse.jdt.core.dom.ClassInstanceCreation.accept0(ClassInstanceCreation.java:336) 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.ReturnStatement.accept0(ReturnStatement.java:135) 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.SynchronizedStatement.accept0(SynchronizedStatement.java:164) 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.generics.InferTypeArgumentsRefactoring$1.acceptAST(InferTypeArgumentsRefactoring.java:159) at org.eclipse.jdt.core.dom.CompilationUnitResolver.resolve(CompilationUnitResolver.java:671) at org.eclipse.jdt.core.dom.CompilationUnitResolver.resolve(CompilationUnitResolver.java:441) at org.eclipse.jdt.core.dom.ASTParser.createASTs(ASTParser.java:646) at org.eclipse.jdt.internal.corext.refactoring.generics.InferTypeArgumentsRefactoring.checkFinalConditions(InferTypeArgumentsRefactoring.java:155) 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:1714) at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run(WorkbenchRunnableAdapter.java:86) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:113) | resolved fixed | 0d79d83 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuAddAll/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuAddAll/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuSynchronizedList/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InferTypeArguments/testCuSynchronizedList/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"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-14T00:11:07Z" | "2005-04-08T22:40:00Z" |
91,306 | Bug 91306 [navigation] Java file opens with all text selected | 3.1M6 I had some Java files which I associated to the text editor. When I open them from the package explorer, they open with all of the text selected (as if I had hit Ctrl-A). | resolved fixed | 925f9ff | ["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-04-13T17:55:29Z" | "2005-04-13T16:33:20Z" |
90,841 | Bug 90841 [misc] IllegalStateException in Java editor | build i0405 I got the following exception in my log file. I believe I did a ctrl-shift-u to turn off "mark occurances" (didn't realize that wasn't the right key binding) so then I hit the icon and now I get that message everytime I hit the "mark occurances" icon. It looks like JavaEditor.EclipsePreferencesAdaptor holds onto the preference node but this node has been removed. Nodes aren't handles, they are the real objects and shouldn't be cached like this. !ENTRY org.eclipse.ui.workbench 4 2 2005-04-08 14:43:57.926 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench". !STACK 0 java.lang.IllegalStateException: Preference node "org.eclipse.jdt.core" has been removed. at org.eclipse.core.internal.preferences.EclipsePreferences.checkRemoved(EclipsePreferences.java:146) at org.eclipse.core.internal.preferences.EclipsePreferences.internalGet(EclipsePreferences.java:501) at org.eclipse.core.internal.preferences.EclipsePreferences.get(EclipsePreferences.java:362) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$EclipsePreferencesAdapter.contains(JavaEditor.java:362) at org.eclipse.ui.texteditor.ChainedPreferenceStore.getVisibleStore(ChainedPreferenceStore.java:528) at org.eclipse.ui.texteditor.ChainedPreferenceStore.handlePropertyChangeEvent(ChainedPreferenceStore.java:412) at org.eclipse.ui.texteditor.ChainedPreferenceStore.access$0(ChainedPreferenceStore.java:407) at org.eclipse.ui.texteditor.ChainedPreferenceStore$PropertyChangeListener.propertyChange(ChainedPreferenceStore.java:68) at org.eclipse.ui.preferences.ScopedPreferenceStore$3.run(ScopedPreferenceStore.java:339) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1021) at org.eclipse.core.runtime.Platform.run(Platform.java:757) at org.eclipse.ui.preferences.ScopedPreferenceStore.firePropertyChangeEvent(ScopedPreferenceStore.java:336) at org.eclipse.ui.preferences.ScopedPreferenceStore.setValue(ScopedPreferenceStore.java:736) at org.eclipse.jdt.internal.ui.javaeditor.ToggleMarkOccurrencesAction.run(ToggleMarkOccurrencesAction.java:54) 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$6.handleEvent(ActionContributionItem.java:441) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2894) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2527) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1570) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1534) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:306) 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:228) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:156) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.core.launcher.Main.invokeFramework(Main.java:315) at org.eclipse.core.launcher.Main.basicRun(Main.java:268) at org.eclipse.core.launcher.Main.run(Main.java:947) at org.eclipse.core.launcher.Main.main(Main.java:931) | resolved fixed | 76fa8ad | ["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-04-13T13:06:06Z" | "2005-04-08T19:53:20Z" |
90,393 | Bug 90393 3.1 M6: File Global Search and Replace cannot write file | 3.1 M6: File Global Search and Replace cannot write file. I try to replace a word that occurs in multiple files in a project. I do this using the File Search and Replace dialog. Eclipse correctly searches and indicates that the files need to be opened for editing (I am using Perforce source code control). Then when I try to do "Replace all", the problem occurs intermittently. Sometimes the replace works fine. More often than not, it dies claiming that it cannot write the file that it had just opened for editing! I have observed this behavior only since M5 and M6. | resolved fixed | 11338a5 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/util/QualifiedNameFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-13T09:12:42Z" | "2005-04-05T22:26:40Z" |
89,476 | Bug 89476 'dot' should not autoactivate code assist in dialog fields | While testing code assist in the super class field in the new class wizard I noticed that '.' auto activate code assist. IMO this makes sense for cases where we have a method class after a dot. But in the case where we only enter class names '.' shouldn't auto activate code assist. Opinions. | resolved fixed | 5d2512a | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/JavaTypeCompletionProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2005-04-12T16:40:36Z" | "2005-03-30T08:06:40Z" |
91,115 | Bug 91115 Change method signature does not select table items on tab [refactoring] | I20050405-0800 + ZRH plugin export Tabbing through the table items of a newly created parameter does not select the entire text of the table item anymore, but places the cursor at the end of the item text. While this is certainly convenient in the new type wizard, the old behavior is more appropriate for change method signature, extract method and introduce parameter. | resolved fixed | 1bcfb42 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeParametersControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TableTextCellEditor.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-04-12T15:31:10Z" | "2005-04-12T12:46:40Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.