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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
267,369 | Bug 267369 [navigation] 'Open Implementation' should also be available as command | I20090304-0834 'Open Implementation' should also be available as a command, so I can assign a key binding like for 'Open Super Implementation'. | verified fixed | fa93d0c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ActionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaElementImplementationHyperlink.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/IJavaEditorActionDefinitionIds.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/JdtActionConstants.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenImplementationAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenSuperImplementationAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenViewActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-08-03T09:37:08Z" | "2009-03-06T14:33:20Z" |
48,966 | Bug 48966 [preferences] Should be able to export from 'Formatter' preference page | I200312162000 I am used that I can press Export and Import on the preference dialog and get the formatter prefs as well. We now introduced another page where the user has to do this manually. This might change with the new settings story. In addition, I cannot export my formatter prefs at once: I have to export every single profile manually. | verified fixed | acfa974 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/FormatterMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ProfileConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-31T10:07:39Z" | "2003-12-17T11:20:00Z" |
285,024 | Bug 285024 [ltk] Cannot run PerformChangeOperation in "null" ISchedulingRule | It is not fair for the PerformChangeOperation#setSchedulingRule() API call to not allow a "null" scheduling rule. There are some TextChange's that do not require any rules at all to run, like DocumentChange. Please loosen the API restrictions to allow a null scheduling rule. | resolved fixed | 74f6e04 | ["org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/PerformChangeOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-30T13:07:27Z" | "2009-07-29T15:06:40Z" |
284,793 | Bug 284793 [quick assist] convert anonymous type fails silently if a class of the destination name already exists | Build ID: I20090611-1540 Steps To Reproduce: 1. Paste the class below into a new project. 2. Invoke Ctrl+1 -> "Convert anonymous to nested class" on first Runnable (accept the default class name) 3. Invoke Ctrl+1 -> "Convert anonymous to nested class" on the second Runnable. 4. Observe that no refactoring is performed for the second invocation. (It works if you either change the class name or use the Refactor menu for the second refactoring instead of the quickfix) public class MultiAnonymous { Runnable x = new Runnable() { public void run() { System.out.println(0); } }; Runnable y = new Runnable() { public void run() { System.out.println(42); } }; } | resolved fixed | 2cc7ae0 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-28T14:13:43Z" | "2009-07-27T18:40:00Z" |
283,891 | Bug 283891 [JUnit] Add camel case support in TestSelectionDialog | The Test Selection Dialog doesn't have the powerful camel case support that the Open Type dialog has. Can you add it? | resolved fixed | e916ac3 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/TestSelectionDialog.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-27T18:09:30Z" | "2009-07-17T19:46:40Z" |
283,851 | Bug 283851 Very Minor cleanup in JUnitLaunchConfigurationTab | Build ID: M20090211-1700 Steps To Reproduce: private void setTestMethodLabel(String testMethodName) { if (!"".equals(testMethodName)) { fTestMethodLabel.setText(JUnitMessages.JUnitLaunchConfigurationTab_label_method+fOriginalTestMethodName); } else { fTestMethodLabel.setText(""); } } This method is only used once, accepts the test method name, and yet still uses the class variable. Minor nit, but you should consistently use the parameter. More information: | resolved fixed | 6618d8f | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-17T17:49:45Z" | "2009-07-17T14:13:20Z" |
283,304 | Bug 283304 [JUnit] ITestRunSession should return launched project | Please add access for getLaunchedProject() of org.eclipse.jdt.internal.junit.model.TestRunSession in org.eclipse.jdt.junit.model.ITestRunSession. My problem is that i need the launched project to reproduce and analyse the testCases (ITestCaseElement). The only "data" i get is the testClassName and testMethodName but that is not unique in the workspace. If you make getLaunchedProject() public over ITestRunSession, i will find the correct testCase everytime correct. Workaround is so cast the org.eclipse.jdt.junit.model.ITestRunSession object into org.eclipse.jdt.internal.junit.model.TestRunSession and invoke getLaunchedProject(). But this is the bad way cause TestRunSession is internal. | resolved fixed | 55d8be4 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/junit/model/ITestRunSession.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestRunSession.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/model/ITestRunSession.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-17T17:48:35Z" | "2009-07-13T13:00:00Z" |
283,697 | Bug 283697 [quick fix] Add missing @Override should be first on suggestions | When using JDK 1.5, and I press control-1 on an elem with a missing override warning, the "Add missing @Override" is last on the list, after a bunch of (most of the time) useless suggestions about renaming or creating methods. Adding the @Override is what is wanted almost all of the time. | resolved fixed | 8f6662e | ["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 | "2009-07-16T13:33:11Z" | "2009-07-16T13:13:20Z" |
239,490 | Bug 239490 [working sets][package explorer] Newly created incompatible working sets appear in Package Explorer | Build ID: I20080617-2000 Steps To Reproduce: 1.Create a plugin project working set. 2.Add a plugin project to this working set. 3.Create a Java project working set. 4.Add a Java project to this working set. 5.Try to add a plugin project working set -> Only Java project working sets are now allowed to be created! Where are the plugin project working sets now? 6. After here only Java project working sets are showed in the Package Explorer. More information: | resolved fixed | c16c6a3 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetModel.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-15T09:30:28Z" | "2008-07-03T18:33:20Z" |
97,413 | Bug 97413 [extract method] missing return type when code can throw exception | I20050527-1300 Extracting code that can return a value and ends with throwing an exception results in a new method with no return type - and therefore compile errors. No other errors or exceptions. Before: class Foo { int bar(int bar) { if (bar > 0) return bar - 1; throw new IllegalArgumentException(); } } After: class Foo { int bar(int bar) { foo(bar); } private void foo(int bar) { if (bar > 0) return bar - 1; throw new IllegalArgumentException(); } } Swapping the return and the throw statements works. Before: class Foo { int bar(int bar) { if (bar > 0) throw new IllegalArgumentException(); return bar - 1; } } After: class Foo { int bar(int bar) { return foo(bar); } private int foo(int bar) { if (bar > 0) throw new IllegalArgumentException(); return bar - 1; } } | verified fixed | ca0caf4 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_in/A_test733.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_in/A_test734.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_out/A_test733.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_out/A_test734.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/FlowInfo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-13T17:10:25Z" | "2005-05-31T09:00:00Z" |
213,519 | Bug 213519 [extract method] Missing return value, while extracting code out of a loop | Build ID: M20071023-1652 Steps To Reproduce: There is a curious behavior of extract method when extracting a code snippet out of a loop after a for(Class var : Colection) construction. More information: Sample Code: ------------------------------------ Line of code to extract: list.add(a++); ------------------------------------ Code where Extract Method returns an int as return value of the extracted snippet: Good Code: ------------------------------------ ArrayList<Integer> list = new ArrayList<Integer>(); int a = 0; for (int c = 0; c < 10; c++) { list.add(a++); } System.out.println(list.toString()); ------------------------------------ Method signature: private static int someMethodName(ArrayList<Integer> list,int a) After adding a for loop in front of the counting loop, the Extract Method return value is void. Bad Code: ------------------------------------ ArrayList<Integer> list = new ArrayList<Integer>(); for (Integer var: list) {} int a = 0; for (int c = 0; c < 10; c++) { list.add(a++); } System.out.println(list.toString()); ------------------------------------ Method signature: private static void someMethodName(ArrayList<Integer> list,int a) | verified fixed | a9ead9f | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_in/A_test729.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_in/A_test730.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_in/A_test731.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_in/A_test732.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_out/A_test729.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_out/A_test730.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_out/A_test731.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/return_out/A_test732.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/InputFlowAnalyzer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-07-13T16:47:26Z" | "2007-12-19T18:46:40Z" |
160,853 | Bug 160853 [extract method] Does not replace similar code in parent class of anonymous class | I20061010-0800 Given: package a.b; public class Foo { public void foo() { Object obj= new Object() { public String toString() { return "foo." + getName(); } }; String s= "foo." + getName(); } private String getName() {return "bar";} } 1. Select _second_ expression "foo." + getName() 2. Refactor>Extract Method... 3. extract method 'qualifiedName' Is: both expressions "foo." + getName() are replaced by a call to qualifiedName, correct. 4. Undo 5. Select first expression "foo." + getName() 6. Refactor>Extract Method... 7. Select 'Foo' as destination type 8. extract method 'qualifiedName' Is: Only first expression is replaced by call Should: Both expression should be replaced, at least I can't see no difference... | verified fixed | c5b435d | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test971.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_in/A_test972.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test971.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/duplicates_out/A_test972.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.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 | "2009-07-13T16:08:21Z" | "2006-10-13T11:46:40Z" |
280,755 | Bug 280755 [working sets] Check out into new working set results into strange working set | 3.5 but not 3.4.x. Not directly a regression because in 3.4.x it was not possible to create a working set in the Check Out dialog. Steps to reproduce: 0. start new workspace 1. select project 'org.eclipse.core.expressions' in the CVS Repositories view 2. context menu > Check Out As... 3. in the dialog choose to add project to a Java working set (create it now) 5. click 'Finish' 6. open the Project Explorer 7. in the Project Explorer select 'Working Sets' as 'Top Level Element' 8. select the working set from step 3 9. expand the working set ==> two nodes one being a org.eclipse.team.internal.ccvs.core.resources.RemoteFolder resulting in label error. Step 3 where the new working set is created is the culprit: it has the remote project/folder preselected. | verified fixed | d12677d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-19T09:25:10Z" | "2009-06-18T13:00:00Z" |
279,425 | Bug 279425 [organize imports] MultiElementListSelectionDialog has wrong button layout | 3.5 RC4. MultiElementListSelectionDialog has wrong button layout if Display.getDismissalAlignment() == SWT.RIGHT, e.g. Mac or Linux. | verified fixed | c7f46a8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/MultiElementListSelectionDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-18T08:54:20Z" | "2009-06-08T08:33:20Z" |
279,715 | Bug 279715 [inline] Inline Constant and Inline Local Variable are missing parentheses for extended '-' chains | I20090605-1444 Inline Constant and Inline Local Variable are missing parentheses for extended '-' chains: public class Try { public static final int B= 12; public static final int C= B - 1; //inline C public static final int K= 99; public static void main(String[] args) { // int B= 12; // int C= B - 1; //inline C // int K= 99; int f1= K - 1 - C; int f2= K - C - C - C; int x1= K + C; int x2= K - C; int x3= K + 1 - C; int x4= K - 1 + C; int x5= K + 1 + C - C - C; } } | verified fixed | c37e6e1 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test33/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test33/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InlineConstantTests.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/ASTNodes.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-16T17:11:39Z" | "2009-06-09T23:26:40Z" |
279,924 | Bug 279924 [toString] toString() generator: Fields in declaration order | toString() generator adding the fields in alphabetical order. It would be better if it adds in the order whatever the order fields declared in the class. | resolved fixed | 086c6ad | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateMethodAbstractAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateToStringAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-16T16:31:26Z" | "2009-06-11T11:33:20Z" |
280,123 | Bug 280123 [typing] BadLocationException when pasting word "default" outside of class | - copy the word "default" (without the quotes) to the clipboard - create a new class, it will look like public class Test2 { } - put the caret on the line following the class' closing brace and press Ctrl+V -> an internal error is logged with the stack below org.eclipse.jface.text.BadLocationException at org.eclipse.jface.text.TreeLineTracker.fail(TreeLineTracker.java:1061) at org.eclipse.jface.text.TreeLineTracker.getLineInformationOfOffset(TreeLineTracker.java:1157) at org.eclipse.jface.text.AbstractLineTracker.getLineInformationOfOffset(AbstractLineTracker.java:145) at org.eclipse.jface.text.AbstractDocument.getLineInformationOfOffset(AbstractDocument.java:902) at org.eclipse.core.internal.filebuffers.SynchronizableDocument.getLineInformationOfOffset(SynchronizableDocument.java:353) at org.eclipse.jdt.internal.ui.text.java.JavaAutoIndentStrategy.smartPaste(JavaAutoIndentStrategy.java:663) at org.eclipse.jdt.internal.ui.text.java.JavaAutoIndentStrategy.customizeDocumentCommand(JavaAutoIndentStrategy.java:1224) at org.eclipse.jface.text.TextViewer.customizeDocumentCommand(TextViewer.java:3734) at org.eclipse.jface.text.TextViewer.handleVerifyEvent(TextViewer.java:3764) at org.eclipse.jface.text.source.projection.ProjectionViewer.handleVerifyEvent(ProjectionViewer.java:1276) at org.eclipse.jface.text.TextViewer$TextVerifyListener.verifyText(TextViewer.java:433) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:249) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:828) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:849) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:835) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:607) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:6602) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:7442) at org.eclipse.swt.custom.StyledText.paste(StyledText.java:6690) at org.eclipse.jface.text.TextViewer.paste(TextViewer.java:4026) at org.eclipse.jface.text.TextViewer.doOperation(TextViewer.java:3970) at org.eclipse.jface.text.source.SourceViewer.doOperation(SourceViewer.java:921) at org.eclipse.jface.text.source.projection.ProjectionViewer.doOperation(ProjectionViewer.java:1533) at org.eclipse.jdt.internal.ui.javaeditor.JavaSourceViewer.doOperation(JavaSourceViewer.java:186) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$AdaptedSourceViewer.doOperation(CompilationUnitEditor.java:199) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.doPasteWithImportsOperation(ClipboardOperationAction.java:501) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.internalDoOperation(ClipboardOperationAction.java:287) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction$1.run(ClipboardOperationAction.java:258) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.run(ClipboardOperationAction.java:256) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:185) at org.eclipse.ui.internal.handlers.LegacyHandlerWrapper.execute(LegacyHandlerWrapper.java:109) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:470) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:824) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:510) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:125) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:904) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:827) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:849) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:835) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:941) at org.eclipse.swt.widgets.Widget.XKeyPress(Widget.java:1166) at org.eclipse.swt.widgets.Composite.XKeyPress(Composite.java:1437) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1112) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3773) at org.eclipse.swt.internal.motif.OS._XtDispatchEvent(Native Method) at org.eclipse.swt.internal.motif.OS.XtDispatchEvent(OS.java:5099) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2829) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) at org.eclipse.equinox.launcher.Main.main(Main.java:1287) | resolved fixed | 40d20b1 | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JavaAutoIndentStrategyTest.java", "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 | "2009-06-16T13:08:07Z" | "2009-06-12T18:06:40Z" |
101,233 | Bug 101233 [extract method] remember selected access modifier | In subsequence calling the Refactor-ExtractCommand one has to set the access modifier always if the default selection ("private") is not desired. It would be nice if the editor can memorise the selected modifier as the editor do with the checkbox "Qualify constant references with class name" | verified fixed | 6fb0eaf | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/code/ExtractMethodInputPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-15T16:35:27Z" | "2005-06-22T11:33:20Z" |
280,193 | Bug 280193 [quick fix] NPE on "add type arguments" | null | resolved fixed | 4ceae83 | ["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/fix/Java50Fix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-15T15:05:29Z" | "2009-06-14T11:46:40Z" |
280,245 | Bug 280245 [nls tooling] Properties file editor screws selection on double-click | I20090611-1540 (had it on Cocoa and WinXP) The properties file editor screws the selection on double-click for certain properties: - Have a.properties with content: 123.ch: Hello - double-click before '2' => selection is '23.c' => expected: whole property 'abc.ch' selected or just 'abc' (like in 3.4.2) | resolved fixed | 443bbc1 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertiesFileSourceViewerConfiguration.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/PartitionDoubleClickSelector.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-15T11:04:32Z" | "2009-06-15T10:00:00Z" |
277,968 | Bug 277968 [inline] Inline local variable gets type parameters on static methods wrong | Build ID: I20090522-1710 java.version=1.6.0_13 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_GB Command-line arguments: -os win32 -ws win32 -arch x86_64 Steps To Reproduce: 1. Create a class like: class InlineMethodParam { String foo() { String t = bar(); return t; } static <T> T bar() { return null; } } 2. Attempt to inline t. 3. You'll get: return <String>bar(); To be legal, you need return InlineMethodParam.<String>bar();. | resolved fixed | a7a5505 | ["org.eclipse.jdt.ui.tests.refactoring/resources/InlineTemp/canInline/A_test37_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineTemp/canInline/A_test37_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineTemp/canInline/A_test38_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineTemp/canInline/A_test38_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineTemp/canInline/A_test39_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/InlineTemp/canInline/A_test39_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/InlineTempTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineConstantRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineTempRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-12T18:14:39Z" | "2009-05-26T23:20:00Z" |
277,031 | Bug 277031 [rename] Renaming type parameter also renames arguments of the same name | Build ID: I20090515-1143 java.version=1.6.0_13 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_GB Command-line arguments: -os win32 -ws win32 -arch x86_64 Steps To Reproduce: 1. Create a class like: class Badger<Queue> { void bar(Queue Queue) { Queue.notify(); } } 2. Place the cursor in <Queue> and trigger a rename (alt+shift+r 3. Change it to "Foo". Note that, in the preview, the method declaration line reads: void bar(Bar Queue) 4. Press enter to apply it. 5. All instances of Queue in the file will have been replaced with Bar, so it will now read: class Badger<Bar> { void bar(Bar Bar) { Bar.notify(); } } Surely only the ones shown in the preview should be renamed? | resolved fixed | efaeb43 | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameTypeParameter/test15/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameTypeParameter/test15/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/RenameTypeParameterTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameTypeParameterProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-12T18:12:17Z" | "2009-05-19T21:53:20Z" |
279,981 | Bug 279981 Constructor inlining produces illegal result. | Build ID: I20090605-1444 (3.5RC4) Please select identifier "Local" on LINE 4 and try to inline. The result won't compile. class Bug { { class Local { Local(int x){ //LINE 4 } } new Local(hashCode()); } } | resolved fixed | ad72ff3 | ["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 | "2009-06-12T18:08:00Z" | "2009-06-11T17:06:40Z" |
276,111 | Bug 276111 [JUnit] classpath container doesn't pick up JUnit jars in shared installations | null | closed fixed | 395b94c | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-06-12T13:11:07Z" | "2009-05-13T15:53:20Z" |
277,812 | Bug 277812 [call hierarchy] [working sets] Add F1 Help for Call Hierarchy Filters, Expand With Constructors Dialog, Working Set Configuration Dialog , Working Set Assignments Dialog | null | verified fixed | 2728168 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/ExpandWithConstructorsDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/ConfigureWorkingSetAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/ConfigureWorkingSetAssignementAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-28T13:05:43Z" | "2009-05-26T09:26:40Z" |
277,556 | Bug 277556 [preferences] Syntax Coloring Preview Window is showing colors to incorrect char set for classes element | Build ID: I20090515-1143 Steps To Reproduce: 1.Go to preference page [Window->Preferences] 2.Select Syntax Coloring [Java -> Editor -> Syntax Coloring] 3.Enable coloring for Classes [check enable and provide new color other than black [more visible color will be good to identify in one shot] 4. Check Preview, you will find that "ame<St" will be colored as you selected instead of "String". public class ClassName<E> implements InterfaceName<String> { More information: I think parsing start index is problem, because total number of colored chars are correct. | verified fixed | d977efc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorColoringConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-25T15:42:21Z" | "2009-05-22T22:06:40Z" |
276,486 | Bug 276486 [content assist] anonymous type completion does not add method implementation stubs when type already imported | I20090514-2000 Content assist: Anonymous type completion does not add method implementation stubs when type already imported. Example: import java.util.AbstractCollection; public class Runner { private void foo() { new AbstractColl } } => Content assist after 'new AbstractColl' only gives: new AbstractCollection<E>() { }; => Expected: Method implementation stubs are added, like when the 'import java.util.AbstractCollection;' is not there. | verified fixed | 1682386 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-19T18:12:27Z" | "2009-05-15T12:20:00Z" |
276,708 | Bug 276708 [content assist] code assist in file of simple project logs exception | I20090515-1143. Broken since 3.3 but fix would be very simple. Markus, what do you think? | verified fixed | ca1c1e5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/JavaContentAssistInvocationContext.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-19T14:08:28Z" | "2009-05-18T15:20:00Z" |
276,364 | Bug 276364 [content assist] Anonymous constructor completion adds a ')' too much | I20090513-2000 Anonymous constructor completion adds a ')' too much: public class Try { void method(Runnable r) { method(new Run) } } - set prefs > Content Assist > Completion inserts - put caret after 'new Run' - content assist, choose 'Runnable() Anonymous Inner Type' => result: method(new Runnable() { public void run() { // TODO Auto-generated method stub } })) => expected: only 1 closing parenthesis at the end | verified fixed | e004fdf | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-19T13:56:26Z" | "2009-05-14T19:40:00Z" |
276,744 | Bug 276744 [hashcode/equals] New 3.5 feature not working: [hashcode/equals] Wizard should allow to specify that blocks should always be used | null | verified fixed | 603d6ef | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateHashCodeEqualsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-19T12:39:57Z" | "2009-05-18T15:20:00Z" |
274,511 | Bug 274511 [call hierarchy] improve context menu | I20090429-1800. The Call Hierarchy's context menu is confusing: the 'Copy Expanded Hierarchy' should be together with the other copy/paste actions. The confusion is now more prominent with the new 'Expand with Constructors'. | verified fixed | a66d26b | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/PasteAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-14T09:34:40Z" | "2009-04-30T14:00:00Z" |
276,102 | Bug 276102 [quick assist] 'convert to enhanced for loop' unnecessarily blocked for multiple-assigned variable | null | verified fixed | 0364db2 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-13T18:13:21Z" | "2009-05-13T15:53:20Z" |
274,199 | Bug 274199 [quick assist] convert to enhanced for loop changes semantics for multiple-assigned variable | null | verified fixed | 18845e6 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-13T09:38:04Z" | "2009-04-28T23:06:40Z" |
275,859 | Bug 275859 [package explorer] Package Explorer not updated after resource reorgs in Working Sets mode | Eclipse 3.5M7 1. Select file(s) in the Package Explorer 2. Press Ctrl-Insert 3. Select a different project 4. Press Shift-Insert The copied file(s) won't be visible in the package explorer unless you manually refresh the destination project. | verified fixed | 8e03c79 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-12T15:59:06Z" | "2009-05-12T12:06:40Z" |
275,308 | Bug 275308 [JUnit] @RunWith(Parameterized) results don't navigate | Build ID: 3.5M7 ** This is trivial and safe (a 1 liner). Can you please get it in 3.5 before release ** Steps To Reproduce: 1. Compile and run the test below in with JUnit4, JDK5+ 2. Double-click on the failed test in the JUnit view Expected result: Should open the testIsFirst() method Actual result: "Method 'testIsFirst[1]' not found" Proposed (quick, safe) solution: trim to first "[" if search for the method fails, and try again. Could prob trim to first "[" straight away, but I'm no expert on what chars are allowed in function names by the JVM. ---- import static org.junit.Assert.assertEquals; import java.util.Collection; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; @RunWith(Parameterized.class) public class SimpleParamTest { @Parameters public static Collection<?> data() { return Parameterized.eachOne("First", "Second"); } private final String o; public SimpleParamTest(String o) { this.o = o; } @Test public void testIsFirst() throws Exception { assertEquals("First", o); } } | verified fixed | 39850a8 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/OpenTestAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-11T16:45:37Z" | "2009-05-07T15:26:40Z" |
275,668 | Bug 275668 [open type] revert using new API to open several editors at once | null | verified fixed | ee22c39 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenTypeAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-11T16:01:56Z" | "2009-05-11T13:53:20Z" |
275,286 | Bug 275286 [compare] createStructure is called three times for both sides when opening compare editor | null | verified fixed | 393c216 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureDiffViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-11T15:24:32Z" | "2009-05-07T12:40:00Z" |
275,370 | Bug 275370 [toString] Generator uses wrong suffixes and prefixes | Steps To Reproduce: When "Limit number of items..." option is selected, the maxLen variable in generated toString() method has parameter prefix and suffix appended instead of local variable ones. | verified fixed | 33295df | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateToStringTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/AbstractToStringGenerator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-11T12:40:01Z" | "2009-05-07T21:00:00Z" |
275,360 | Bug 275360 [toString] Wrong code generated with String concatenation | When String concatenation style is used, wrong code is generated, for example: public class A { String ss[]; @Override public String toString() { final int maxLen = 10; return "A [ss=" + ss != null ? Arrays.asList(ss).subList(0, Math.min(ss.length, maxLen)) : null + "]"; } } The "ss != null ? .. : null" fragments should be enclosed in parenthesis, otherwise there's a compilation error or unexpected behavior. | verified fixed | 13822b2 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateToStringTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/StringConcatenationGenerator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-11T10:16:50Z" | "2009-05-07T18:13:20Z" |
274,474 | Bug 274474 [call hierarchy] Expand With Constructors action should cancel all other current jobs running | Build ID: I20090427-1800 Steps To Reproduce: 1.Invoke call hierarchy in callers mode on any method that takes time to search for callers 2.open the context menu and click on "Expand With Constructors" Both jobs are running concurrently and both results are displayed => Should cancel all the searches that are happening on the same node when the action is invoked, and display only the new results. More information: | verified fixed | df71dda | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/MethodWrapper.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/DeferredMethodWrapper.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/ExpandWithConstructorsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-08T16:17:45Z" | "2009-04-30T08:26:40Z" |
97,228 | Bug 97228 [navigation] NLSKeyHyperlink to reveal/goto the key in the properties file editor | if you go to the key in the properties file editor in NLSKeyHyperlink, when the user klicks on a key in the java editor, you work with "hard coded" code! this is very bad because plugins like Jinto(which support a own properties file editor) have no chance to goto the right line in its editor! please go over IAdaptable(IGoToMarker???) and let make the editor do its job!!! | verified fixed | 9186068 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlink.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-08T09:06:35Z" | "2005-05-30T13:33:20Z" |
273,615 | Bug 273615 [Help][Context] NPE when trying to open help (F1) in drop-down. | null | verified fixed | b5b7cc3 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-07T15:20:49Z" | "2009-04-24T16:20:00Z" |
275,291 | Bug 275291 [clean up] clean up on save does too much if 'Additional actions' is unchecked | I20090506-2000. Clean up on save does too much if 'Additional actions' is unchecked: instead of just creating the import and format clean ups it creates and loops over all of them (but with disabled options). This can lead to nasty side effects up to executing other clean ups. Test Case: 1. import the attached project into your workspace 2. start target workspace 3. open a CU 4. change it 5. save ==> bad clean up is executed (see first line ;-) | verified fixed | a3035ec | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CleanUpPostSaveListener.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CleanUpRegistry.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-07T13:11:22Z" | "2009-05-07T12:40:00Z" |
274,412 | Bug 274412 [toString] custom toString builder dialog should offer help | The "Configure custom toString builder" dialog should offer a help icon to directly jump to the "toString() Generator: Code Styles" page. | verified fixed | 85d700a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-07T12:48:59Z" | "2009-04-29T21:20:00Z" |
133,518 | Bug 133518 [JUnit] Wording of new 'enable assertions JUnit preference | I20060328-0010. We normally avoid to use 'Enable xyz' after a checkbox. In addition we should not use "JUnit launch configurations" because this could be misinterpreted: the preference also affects the 'JUnit Plug-in Test' launch config. Better might be: "Add '-ea' to VM arguments when creating new launch configuration". | verified fixed | ae05c7f | ["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/JUnitPreferencePage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-06T11:12:59Z" | "2006-03-28T12:46:40Z" |
267,776 | Bug 267776 [content assist] Wrong post-qualification for constructor and anonymous type completion | I20090309-0100. The post-qualification should not include the type and in the default package it looks strange. | verified fixed | 5613e27 | ["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 | "2009-05-05T14:45:58Z" | "2009-03-10T07:26:40Z" |
274,364 | Bug 274364 [quick fix] NPE in ASTNodeFactory when method return type is missing | I20090428-0100 Invoking quick fix on "foo" results in an NPE: public class Snippet { abstract foo(); } If Snippet is declared as interface the quick fix works fine. | verified fixed | d61e47b | ["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 | "2009-05-05T13:43:28Z" | "2009-04-29T18:33:20Z" |
274,833 | Bug 274833 [content assist] inserting anonymous type proposal not correctly formatted | 3.5 M7. 1. type "new Runnable(" 2. content assist ==> new Runnable(){ ==> there's a missing space This is not a regression introduced by the new proposal kind but was already an issue in 3.4. The reason is that the string used to format is not always correct. | verified fixed | b1b749c | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/CodeCompletionTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-05T09:17:29Z" | "2009-05-04T15:13:20Z" |
274,473 | Bug 274473 [call hierarchy] callers and constructor color updating broken | I20090429-1800. 1. open Call Hierarchy with some expanded constructors 2. change the 'Inherited Members' color 3. click 'Apply' or 'OK' ==> most of the time nothing happens i.e. the color is not updated but sometimes all nodes collapse. Expected: the color is updated on 'Apply' and 'OK' and no nodes are collapsed. | verified fixed | a3b0576 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoredViewersManager.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoringLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-05-04T17:51:50Z" | "2009-04-30T05:40:00Z" |
274,091 | Bug 274091 [call hierarchy] Wrong behavior of Expand With Constructors on multi-selection with parent/child | I20090428-0100. When having a multi-selection of children (not siblings) in the Call Hierarchy the behavior of 'Expand With Constructors' is wrong: it only applies it on the first selected item. Either we should not offer the action in this case or we apply the state to all selected elements, so that when I later expand one of the callers I get the constructors as well. NOTE: multi-selection on siblings works as expected. | verified fixed | 9ce9ace | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/ExpandWithConstructorsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-29T14:00:50Z" | "2009-04-28T14:46:40Z" |
274,269 | Bug 274269 [tostring] 'Configure...' button is clipped at the bottom | I20090429-0100. The 'Configure...' button is clipped at the bottom in the toString dialog. | verified fixed | 6ecdcfc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-29T12:51:28Z" | "2009-04-29T10:13:20Z" |
271,436 | Bug 271436 Reminder: mark activate editor tests gray if Platform UI does not fix the regression | null | verified fixed | 15d806d | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/performance/ActivateTextEditorTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-29T12:43:08Z" | "2009-04-07T10:26:40Z" |
274,041 | Bug 274041 [JUnit] unable to add JUnit library to build path if eclipse install has space in path | null | verified fixed | af117b2 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-29T12:39:00Z" | "2009-04-28T14:46:40Z" |
274,086 | Bug 274086 [call hierarchy] blue constructor label decoration confusing/noisy | I20090428-0100. The blue [constructor] label decoration is noisy when there are more than the usual 1 constructor and it's confusing with the [callers] root node which is also rendered in blue. I would remove that. | verified fixed | 859692c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoringLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-29T12:09:59Z" | "2009-04-28T14:46:40Z" |
271,446 | Bug 271446 [call hierarchy] cannot restart canceled search for callers | I20090401-1325 - Call Hierarchy in Callers mode - expand a node where the search for references takes a long time (e.g. Object#hashCode()) - click 'Cancel Current Search' in view toolbar => expanded node gets a child 'The search was canceled' Now, there's no way to restart the canceled search again without refreshing the whole view. I don't think we need the 'The search was canceled' node at all. The cancel button should just collapse the node again, and when the user expands the node again, we should start the search as if the node had never been touched before. | resolved fixed | cd58a9b | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/MethodWrapper.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/DeferredMethodWrapper.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-26T21:39:35Z" | "2009-04-07T13:13:20Z" |
270,462 | Bug 270462 [toString] toString wizard generates wrong code | I20090325-1135 + plug-in export. Generating toString using MessageFormat produces wrong result: public String toString() { return MessageFormat.format("a [i={1}, j={2}, k={3}]", new Object[] { Integer.valueOf(i), Integer.valueOf(j), Integer.valueOf(k) }); } Pattern starts with 0. Please also verify all other generated code. | verified fixed | 895934b | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateToStringTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/StringFormatGenerator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-26T15:32:40Z" | "2009-03-30T13:33:20Z" |
267,710 | Bug 267710 [toString] finish toString() builder wizard | null | resolved fixed | d8b937a | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/GenerateToStringTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/CodeGenerationMessages.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/ApacheBuilderSpringCreatorGenerator.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/CustomBuilderGenerator.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/GenerateToStringOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/ToStringGenerationContext.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/ToStringGenerationSettings.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-26T15:05:25Z" | "2009-03-09T20:20:00Z" |
246,003 | Bug 246003 [clean up] Save action error dialog should link to project-specific preferences | null | resolved fixed | 0807be6 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CleanUpPreferenceUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-24T13:34:00Z" | "2008-09-02T18:26:40Z" |
264,421 | Bug 264421 [quick assist] convert to enhanced for loop applied incorrectly | Build ID: M20080911-1700 Steps To Reproduce: Perhaps this isn't the prettiest code in the world, but it was encountered in real code. I can happily point to a public svn repo to prove it :-). Anyway, this is the original code public class ForLoopTest { public static void main(String[] args) { String[] src = new String[] { "1", "2", "3", "4" }; for (int i = 0; i < src.length; i++) { String path = src[i]; String output = path; if (output.length() == 1) { output = output + "-XXX"; } System.err.println("path="+ path + ",output="+output); } } } After applying the logic to convert the for loop, this is the result: public class ForLoopTest { public static void main(String[] args) { String[] src = new String[] { "1", "2", "3", "4" }; for (String path : src) { if (path.length() == 1) { path = path + "-XXX"; } System.err.println("path="+ path + ",output="+path); } } } Running the two versions of the program produce different output :-( Output before: path=1,output=1-XXX path=2,output=2-XXX path=3,output=3-XXX path=4,output=4-XXX Output after: path=1-XXX,output=1-XXX path=2-XXX,output=2-XXX path=3-XXX,output=3-XXX path=4-XXX,output=4-XXX More information: | verified fixed | b2ef680 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-24T11:31:35Z" | "2009-02-10T21:06:40Z" |
269,595 | Bug 269595 [clean up] Clean-Up of For-Each plus use final produces extra 'final' modifier | The Clean-Up option 'Convert for loops to enhanced for loops' produce an extra 'final' modifier if the loop-variable was defined as final, resulting in two final modifiers on the same variable after clean-up. Example: Before Clean-Up: int[] array = new int[] { 1, 2, 3 }; for( int i = 0; i < array.length; i++ ) { final int value = array[i]; System.out.println( value ); } After Clean-Up: final int[] array = new int[] { 1, 2, 3 }; for( final final int value : array ) { System.out.println( value ); } | verified fixed | 5f45db6 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-24T11:00:42Z" | "2009-03-21T15:40:00Z" |
273,440 | Bug 273440 [implementation] NPE from Java editor | eclipse.buildId=I20090421-0930 java.fullversion=J2RE 1.5.0 IBM J9 2.3 Windows XP x86-32 j9vmwi3223-20070201 (JIT enabled) J9VM - 20070131_11312_lHdSMR JIT - 20070109_1805ifx1_r8 GC - 200701_09 BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Command-line arguments: -os win32 -ws win32 -arch x86 Noticed these in my log. Not sure exactly what triggers it. org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:3881) at org.eclipse.swt.SWT.error(SWT.java:3796) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:137) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3855) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3476) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2401) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2365) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2217) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:615) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1287) at org.eclipse.equinox.launcher.Main.main(Main.java:1263) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.selectionChanged(JavaEditor.java:2214) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$4.run(CompilationUnitEditor.java:1613) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) ... 23 more | resolved fixed | c9b164b | ["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 | "2009-04-24T05:54:32Z" | "2009-04-23T15:20:00Z" |
260,865 | Bug 260865 [compare] Clicking on the structure view breaks the compare editor viewers | Build id: N20090110-2000 Steps: 1) Create a java project and two classes inside (A.java and B.java). They can be very simple, e.g. public class A { // class A } 2) Compare them using Compare With > Each Other 3) In the compare editor, change something in A.java, e.g. // comment public class A { // class A } 4) Double click on a node in the structure view 5) Notice that the content of the viewer with A.java changed to // comment public class A { // 6) Save, still the content is wrong 7) Open A.java in the java editor, it looks ok | resolved fixed | 89cd507 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureDiffViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-23T15:04:40Z" | "2009-01-13T15:20:00Z" |
272,465 | Bug 272465 [jar exporter] DBCS3.5: Runnable JAR file can not find class names wiith non-ascii characters | null | closed fixed | f15441b | ["org.eclipse.jdt.ui/jar", "in", "jar", "loader/org/eclipse/jdt/internal/jarinjarloader/RsrcURLConnection.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-23T12:19:02Z" | "2009-04-16T08:20:00Z" |
272,366 | Bug 272366 [ltk] LTK RefactoringWizardOpenOperation opens window with no window title text | If your wizard does not have any user input pages, but performs changes that have a preview, the preview window is opened automatically. However, this preview window does not contain the text that was set using RefactoringWizard#setWindowTitle(). If a user page was specified, it does contain work. | resolved fixed | e9e2837 | ["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 | "2009-04-22T17:35:53Z" | "2009-04-15T18:26:40Z" |
266,962 | Bug 266962 JUnit to consume hamcrest.core from orbit. | null | resolved fixed | ea8ff25 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/JUnitPreferencesConstants.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/BuildPathSupport.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/JUnitContainerInitializer.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/JUnitHomeInitializer.java", "org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/BuildPathSupport.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/JUnitContainerInitializer.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/JUnitHomeInitializer.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.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 | "2009-04-22T12:35:12Z" | "2009-03-04T01:26:40Z" |
272,836 | Bug 272836 [implementation][content assist] Broken extension point XSD and UI: proposalSorter is missing activate attribute | Build ID: M20080911-1700 Steps To Reproduce: 1. Add javaCompletionProposalSorters extension point 2. Add proposalSorter 3. Implement your proposal sorter 4. Test sorter: Open preferences and choose your sorter (Java->Editor->Content Assist->Sort proposals) 5. Even though it is chosen, your sorter will not execute and you can see NPE in log: org.eclipse.jdt.internal.ui.text.java.ProposalSorterHandle.sortProposals(ProposalSorterHandle.java:191) More information: The reason why it doesn't work is that ProposalSorterHandle instance has "activate" field set to false. To fix this, you must manually edit your plugin.xml and add activate="true" attribute to proposalSorter element. XSD should be enhanced to contain 'activate' attribute and UI should be enhanced to offer activate combo with true/false as other extensions do (e.g. javaCompletionProposalComputer). | resolved fixed | eccb581 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ProposalSorterHandle.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-21T16:08:00Z" | "2009-04-19T19:40:00Z" |
102,281 | Bug 102281 [call hierarchy] shouldn't be stopped by anonymous inner classes | Here's a common scenario for me: I have a method deep in the innards of Eclipse, and I'm curious about the paths through which it might be called. I open call hierarchy on it, and search through the tree at leisure. At some point, I get stopped, because I come across a method like TestRunnerViewPart.showFailure: private void showFailure(final TestRunInfo failure) { postSyncRunnable(new Runnable() { public void run() { if (!isDisposed()) fFailureTrace.showFailure(failure); } }); } the caller of fFailureTrace.showFailure is Runnable.run. However, it's useless to expand that call hierarchy node, because it will show me every possible invocation of Runnable.run in the whole system (there are 88, of which only one is actually relevant). What I'm really wanting to do is to continue my search up through TestRunnerViewPart.showFailure. To do so, I must open up a new call hiearchy search, which consigns my old, carefully built-up search tree to the History List. One solution would be to actually employ some context-sensitivity in the call hierarchy analysis. This is probably not a good idea in terms of cost/benefit analysis. A better solution, for my money, would be to have a new option on the context menu on a node in the Call Hierarchy: "Expand with constructors". This would let me expand thusly (edited for clarity, I hope) showFailure(TestRunInfo) - ...FailureTrace run() - ...TestRunnerViewPart.showFailure(...).new Runnable() {...} [constructors] Runnable() {...} showFailure(TestRunInfo) - ...TestRunnerViewPart testReran(...) - ...TestRunnerViewPart handleTestSelected(TestRunInfo) - ...TestRunnerViewPart (2 matches) | verified fixed | ca2d947 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/CallerMethodWrapper.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/MethodWrapper.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/RealCallers.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/ExpandWithConstructorsAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-21T11:12:22Z" | "2005-06-30T08:26:40Z" |
272,583 | Bug 272583 [Dialogs] OK button is in the wrong position if dialog explicitly calls layout() before initializeBounds() | Select a project in the Package Explorer and hit delete. When the Delete Resources dialog pops up for confirmation, the 3 buttons are displayed in the following order: Preview, OK, Cancel. On the Mac this should be: Preview, Cancel, OK. Appears to be a problem on both Cocoa and Carbon on Eclipse 3.5 Version: 3.5.0 Build id: I20090414-0800 | verified fixed | 68f9be8 | ["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 | "2009-04-20T20:32:17Z" | "2009-04-16T22:13:20Z" |
272,742 | Bug 272742 ImagesOnFileSystemRegistry is not thread safe | null | resolved fixed | c663b21 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ImagesOnFileSystemRegistry.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-20T09:25:05Z" | "2009-04-17T17:40:00Z" |
272,737 | Bug 272737 [working sets] 'Other Projects' keeps label when starting with another locale | I20090416-1053 The 'Other Projects' working set keeps the label in the original language when I start the same workspace with another locale. | resolved fixed | 742df83 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetModel.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-17T18:07:27Z" | "2009-04-17T17:40:00Z" |
165,434 | Bug 165434 [Structure Viewers] Reconcile structure upon document changes | I20061121-1845 I often get confused when using the compare views by the stale information in the structure comparison which only updates on safe. I'd like to have the option that the structure compare updates when the content changes, e.g. when I move a change from right to left or the other way around. | verified fixed | f72a1bb | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaStructureDiffViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-17T13:36:56Z" | "2006-11-22T10:06:40Z" |
271,375 | Bug 271375 [nls tooling] Externalize Strings wizard always defaults to the "legacy" mechanism | The Externalize Strings wizard offers the option "Use Eclipse's string externalization mechanism" which is a superior choice. However, it does not default to that option when available nor does it remember the user's selection of that option for future invocations of the wizard. It should be encouraging use of the newer mechanism, especially since converting form the old to the new is a tedious manual process. | resolved fixed | 060cc11 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSRefactoring.java", "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 | "2009-04-17T09:30:24Z" | "2009-04-06T20:33:20Z" |
272,567 | Bug 272567 [javadoc][hovering] Rendered Javadoc should strip out * at beginning of line | I20090415-1348 Rendered Javadoc should strip out * at beginning of line. This works mostly fine, but there are people who put the * at the very beginning of the line, i.e. without any space before, e.g. com.ibm.icu.text.Collator. The result in Javadoc hover and view is a text with * measles. | resolved fixed | 7cc73ad | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavadocContentAccess2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-16T20:00:01Z" | "2009-04-16T19:26:40Z" |
272,354 | Bug 272354 [JUnit] NPE while initializing Java tooling | Got that while launching an Eclipse workspace in debug mode. Version: 3.5.0 Build id: I20090407-1430 java.lang.NullPointerException at org.eclipse.jdt.internal.junit.buildpath.P2Utils.findBundle(P2Utils.java:166) at org.eclipse.jdt.internal.junit.buildpath.P2Utils.findBundle(P2Utils.java:142) at org.eclipse.jdt.internal.junit.buildpath.BuildPathSupport.getJUnitLibraryEntry(BuildPathSupport.java:81) at org.eclipse.jdt.internal.junit.buildpath.BuildPathSupport.getJUnit3LibraryEntry(BuildPathSupport.java:67) at org.eclipse.jdt.internal.junit.buildpath.JUnitContainerInitializer.getNewContainer(JUnitContainerInitializer.java:100) at org.eclipse.jdt.internal.junit.buildpath.JUnitContainerInitializer.initialize(JUnitContainerInitializer.java:90) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer(JavaModelManager.java:2609) at org.eclipse.jdt.internal.core.JavaModelManager$11.run(JavaModelManager.java:2515) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers(JavaModelManager.java:2555) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer(JavaModelManager.java:1774) at org.eclipse.jdt.core.JavaCore.initializeAfterLoad(JavaCore.java:3407) at org.eclipse.jdt.internal.ui.InitializeAfterLoadJob$RealJob.run(InitializeAfterLoadJob.java:35) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) | resolved fixed | fce2509 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/P2Utils.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-16T06:59:09Z" | "2009-04-15T18:26:40Z" |
271,757 | Bug 271757 TextMergeViewer.createSourceViewer(...) should return SourceViewer | null | resolved fixed | 1d99309 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaMergeViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-15T07:48:03Z" | "2009-04-09T12:26:40Z" |
36,595 | Bug 36595 [templates] 'systrace' template produces incorrect string in anonymous classes | public class Test { public static void main(String[] args) { Object test = new Object() { public String toString() { // systrace: Expected "Object.toString()", got: System.out.println("Bug.main()"); return null; } }; } } | resolved fixed | 3923d4b | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitContextType.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-06T17:30:23Z" | "2003-04-16T19:06:40Z" |
19,027 | Bug 19027 [javadoc wizard] Ok after validating Javadoc location pref page opens browser [javadoc] | null | verified fixed | 3d9bc28 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavadocConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-02T09:30:30Z" | "2002-06-04T14:13:20Z" |
268,950 | Bug 268950 [Commands] New APIs in IWorkbenchCommandConstants are missing '_' separators | 3.5 M6. The new constants in IWorkbenchCommandConstants are missing '_' separators which make them hard to read and which make them differ from the action constant. Examples: - action is called CLOSE_ALL but constant is FILE_CLOSEALL instead of FILE_CLOSE_ALL - action is called CLOSE_PERSPECTIVE but constant is WINDOW_CLOSEPERSPECTIVE instead of WINDOW_CLOSE_PERSPECTIVE I'm sorry I did not notice before the API freeze. I suggest to ask the PMC to change that for final 3.5. | verified fixed | f5a4040 | ["org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/views/ASTView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesSearchResultPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/AbstractInformationControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposalComputer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/BuildActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenViewActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ProjectActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-04-01T16:15:21Z" | "2009-03-17T11:40:00Z" |
125,296 | Bug 125296 [JUnit] Eclipse shows only one failure or error from the JUnit test result | null | resolved fixed | 2a877dd | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/model/TestElement.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/model/TestElement.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-30T16:32:36Z" | "2006-01-26T10:06:40Z" |
267,918 | Bug 267918 [toString] dialog should center widgets | I20090310-0100. The dialog should center its widgets. | verified fixed | 345c82d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-30T13:03:56Z" | "2009-03-10T18:33:20Z" |
267,904 | Bug 267904 [toString] toString template variable proposals info should start with uppercase | I20090310-0100. toString template variable proposals info should start with uppercase. | verified fixed | 3373a62 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/CodeGenerationMessages.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/tostringgeneration/ToStringTemplateParser.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-30T10:45:07Z" | "2009-03-10T15:46:40Z" |
56,576 | Bug 56576 [navigation] Quick outline: first member not selected when switching to inherited mode | 3.0M8: Quick outline: first member not selected when switching to inherited mode - open type org.eclipse.swt.widgets.Text - press Ctrl+O - type "getM" (-> list becomes empty) - press Ctrl+O again -> expected: "getMenu()" is selected in the background; Enter key should go to it -> was: no item selected; Enter key does nothing | resolved fixed | 558da3f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaOutlineInformationControl.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyInformationControl.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-30T09:56:45Z" | "2004-03-29T14:20:00Z" |
270,342 | Bug 270342 [toString] can't add new format template | null | resolved fixed | 4c625e2 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-30T09:53:27Z" | "2009-03-28T00:26:40Z" |
267,916 | Bug 267916 [toString] Template edit dialog has usability issues | I20090310-0100. Th toString Template edit dialog usability is bad: - switching templates via drop down discards all my edits (lost work) - I can delete the default template (but in fact it's not deleted) - each click on the 'New' button inserts a template - all named the same - each click on 'Delete' deletes a template without asking and | verified fixed | f4a4fd5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/GenerateToStringDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-27T18:51:05Z" | "2009-03-10T18:33:20Z" |
269,814 | Bug 269814 [working sets] 'Assign Working Set...' in Package Explorer with 'Top Level Elements > Projects' shows invalid UI element | I20090317-1745. 1. choose 'Top Level Elements > Working Sets' 2. choose 'Top Level Elements > Projects' 3. 'Assign Working Set...' ==> it shows invalid 'Show only Package Explorer working sets' check box which is not applicable | verified fixed | 7ef3a90 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/ConfigureWorkingSetAssignementAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-26T14:06:04Z" | "2009-03-24T13:06:40Z" |
214,046 | Bug 214046 [package explorer] package explorer does not always show task working sets | Mylyn's task working sets may contain projects as well as Mylyn queries. The package explorer working sets configuration dialog only lists these working sets if they contain projects only. Once a task working set is made visible it is possible to add queries to it and it will remain to be visible. It would be better if the behavior was consistent and task working sets would always be selectable (i.e. if they contain at least one project). The corresponding filtering code checks if all elements are adaptable to IProject and not just at least one: WorkingSetConfigurationDialog$Filter.isCompatible(IWorkingSet) line: 117 (The work around to make a task working set visible in the package explorer is to remove all queries from it and add at least one project, select it in the package explorer working set configuration dialog, and then add the queries back to the working set.) | verified fixed | aeb2201 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-25T16:14:05Z" | "2007-12-31T22:26:40Z" |
269,524 | Bug 269524 [working sets] 'Assign Working Set...' in Package Explorer with 'Top Level Elements > Projects' throws NPE | HEAD - have Package Explorer in 'Top Level Elements > Projects' mode - select a Java Project that is not in any working set - open context menu and choose 'Assign Working Set...' - select (check) a working set - click OK !ENTRY org.eclipse.ui 4 0 2009-03-20 15:36:47.660 !MESSAGE Unhandled event loop exception !STACK 0 java.lang.NullPointerException at org.eclipse.jdt.internal.ui.workingsets.ConfigureWorkingSetAssignementAction.getActiveWorkingSets(ConfigureWorkingSetAssignementAction.java:733) at org.eclipse.jdt.internal.ui.workingsets.ConfigureWorkingSetAssignementAction.updateWorkingSets(ConfigureWorkingSetAssignementAction.java:692) at org.eclipse.jdt.internal.ui.workingsets.ConfigureWorkingSetAssignementAction.run(ConfigureWorkingSetAssignementAction.java:634) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:274) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:250) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:586) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:503) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:413) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:87) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3880) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3473) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2393) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2357) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2209) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:492) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:556) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:511) at org.eclipse.equinox.launcher.Main.run(Main.java:1284) at org.eclipse.equinox.launcher.Main.main(Main.java:1260) | resolved fixed | d709160 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/ConfigureWorkingSetAssignementAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-24T09:30:20Z" | "2009-03-20T14:40:00Z" |
238,540 | Bug 238540 [preferences][content assist] Content assist cycling preferences ignored | Build ID: I20080617-2000 Steps To Reproduce: 1. Start a clean eclipse and, a clean workspace. 2. Make a java project containing any package or class file. 3. Open a java editor 4. Try and use ctrl+space multiple times to cycle the options. 5. Compare the list of items that it scrolled through to the one in the preferences page (Java->Editor->Content Assist->Advanced. 6. It appears to be the list for items that should be appended to the default list instead of the ones to cycle through. More information: Eclipse Ganymede 3.4 final java package: eclipse-java-ganymede-win32.zip Workaround: If you enter the prefrences page and apply (click the apply button) the content assist cycling will act normal again BUT only for the current session, that means restart eclipse and the bug is back. | resolved fixed | 92e9894 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistAdvancedConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/CompletionProposalCategory.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/CompletionProposalComputerRegistry.java", "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 | "2009-03-23T17:25:02Z" | "2008-06-26T08:46:40Z" |
253,674 | Bug 253674 [clean up] does not work after going back from preview | I20081030-1917 - smoke test setup - open clean up wizard - select the configured profile for the project - Next - Back - select custom profile - configure to only organize imports - Next => AssertionFailedException below Removing the assertion in AbstractCleanUp.java:47 removes the exception, but still does too much (e.g. adds @Override). | resolved fixed | f451723 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CleanUpRefactoringWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-23T16:13:21Z" | "2008-11-04T12:00:00Z" |
267,237 | Bug 267237 [clean up] CleanUpPerfTest fails with AFE in AbstractCleanUp.setOptions() | I20090303-0800 CleanUpPerfTest fails with AFE in AbstractCleanUp.setOptions(). E.g. testNullCleanUp: org.eclipse.core.runtime.AssertionFailedException: assertion failed: at org.eclipse.core.runtime.Assert.isTrue(Assert.java:110) at org.eclipse.core.runtime.Assert.isTrue(Assert.java:96) at org.eclipse.jdt.internal.ui.fix.AbstractCleanUp.setOptions(AbstractCleanUp.java:47) at org.eclipse.jdt.internal.corext.fix.CleanUpRefactoring.setOptionsFromProfile(CleanUpRefactoring.java:724) at org.eclipse.jdt.internal.corext.fix.CleanUpRefactoring.checkFinalConditions(CleanUpRefactoring.java:654) at org.eclipse.ltk.core.refactoring.Refactoring.checkAllConditions(Refactoring.java:160) at org.eclipse.ltk.core.refactoring.CheckConditionsOperation.run(CheckConditionsOperation.java:81) at org.eclipse.ltk.core.refactoring.CreateChangeOperation.run(CreateChangeOperation.java:121) at org.eclipse.ltk.core.refactoring.PerformRefactoringOperation.run(PerformRefactoringOperation.java:102) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1782) at org.eclipse.jdt.ui.tests.performance.views.CleanUpPerfTest.performRefactoring(CleanUpPerfTest.java:452) at org.eclipse.jdt.ui.tests.performance.views.CleanUpPerfTest.doCleanUp(CleanUpPerfTest.java:433) at org.eclipse.jdt.ui.tests.performance.views.CleanUpPerfTest.testNullCleanUp(CleanUpPerfTest.java:160) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:195) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3855) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3476) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2388) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2352) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2204) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:499) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:333) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:492) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:138) at org.eclipse.test.UITestApplication.run(UITestApplication.java:60) at org.eclipse.test.UITestApplication.start(UITestApplication.java:210) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:556) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:511) at org.eclipse.equinox.launcher.Main.run(Main.java:1284) at org.eclipse.equinox.launcher.Main.main(Main.java:1260) at org.eclipse.core.launcher.Main.main(Main.java:30) | resolved fixed | 61afab0 | ["org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/Accessor.java", "org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/CleanUpPerfTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-23T16:05:00Z" | "2009-03-05T16:20:00Z" |
141,906 | Bug 141906 don't suppress classpath entities at their original locations | When a jar that is part of a java project is added to that project's classpath, the Package Explorer view suppresses the jar from being displayed at its original location in the file system tree. The same behavior is seen with class and source directories. While this behavior might be ok for classpath entries added manually, this behavior is bad when classpath entries are contributed automatically by a classpath container. WTP has a classpath container that automatically adds jars from web project's WEB-INF/lib directory to its classpath. As soon as a jar is dropped into the WEB-INF/lib directory it is picked up by the container. This makes it disappear from the original location in the Package Explorer view (drop target) leaving the users befuddled. Not only that, but once the jar has been added in order to delete the jar they have to switch to the Resource Navigator view. WTP has received at least half a dozen bugs reports pertaining to this behavior. Would it be possible to continue displaying resources at their original locations after they are added to the classpath? | verified fixed | b8955ed | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/StandardJavaElementContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-23T15:16:26Z" | "2006-05-15T21:53:20Z" |
266,931 | Bug 266931 [surround with] quick menu shows too many entries for word in Javadoc | null | resolved fixed | fa25759 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickTemplateProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-23T14:52:07Z" | "2009-03-03T22:40:00Z" |
269,611 | Bug 269611 [nls tooling] Error "Must be in Externalized State !" when externalizing strings | Build ID: M20090211-1700 Steps To Reproduce: 1. Source --> Externalize Strings --> select some file with strings to externalize 2. click into the Key column so that the cell editor is enabled 3. click Ignore button --> error message java.lang.IllegalStateException: Must be in Externalized State ! at org.eclipse.jdt.internal.corext.refactoring.nls.NLSSubstitution.setKey(NLSSubstitution.java:118) at org.eclipse.jdt.internal.ui.refactoring.nls.ExternalizeWizardPage$CellModifier.modify(ExternalizeWizardPage.java:195) at org.eclipse.jface.viewers.ColumnViewer$2.setValue(ColumnViewer.java:274) at org.eclipse.jface.viewers.EditingSupport.saveCellEditorValue(EditingSupport.java:109) at org.eclipse.jface.viewers.ColumnViewerEditor.saveEditorValue(ColumnViewerEditor.java:454) at org.eclipse.jface.viewers.ColumnViewerEditor.applyEditorValue(ColumnViewerEditor.java:311) at org.eclipse.jface.viewers.ColumnViewerEditor.handleEditorActivationEvent(ColumnViewerEditor.java:438) at org.eclipse.jface.viewers.ColumnViewer.triggerEditorActivationEvent(ColumnViewer.java:680) at org.eclipse.jface.viewers.ColumnViewer.handleMouseDown(ColumnViewer.java:664) at org.eclipse.jface.viewers.ColumnViewer.access$0(ColumnViewer.java:660) at org.eclipse.jface.viewers.ColumnViewer$1.mouseDown(ColumnViewer.java:89) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:179) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482) at org.eclipse.swt.widgets.Control.sendTrackEvents(Control.java:3024) at org.eclipse.swt.widgets.Control.kEventControlTrack(Control.java:2104) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:375) at org.eclipse.swt.widgets.Display.controlProc(Display.java:862) at org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(Native Method) at org.eclipse.swt.widgets.Table.kEventMouseDown(Table.java:2275) at org.eclipse.swt.widgets.Widget.mouseProc(Widget.java:1326) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2929) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3051) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation$1.run(RefactoringWizardOpenOperation.java:144) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation.run(RefactoringWizardOpenOperation.java:156) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate(RefactoringStarter.java:37) at org.eclipse.jdt.internal.ui.refactoring.nls.ExternalizeWizard$1.run(ExternalizeWizard.java:74) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70) at org.eclipse.jdt.internal.ui.refactoring.nls.ExternalizeWizard.open(ExternalizeWizard.java:70) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction$2.widgetDefaultSelected(ExternalizeStringsAction.java:483) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:113) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482) at org.eclipse.swt.widgets.Control.sendTrackEvents(Control.java:3024) at org.eclipse.swt.widgets.Control.kEventControlTrack(Control.java:2104) at org.eclipse.swt.widgets.Widget.controlProc(Widget.java:375) at org.eclipse.swt.widgets.Display.controlProc(Display.java:862) at org.eclipse.swt.internal.carbon.OS.CallNextEventHandler(Native Method) at org.eclipse.swt.widgets.Table.kEventMouseDown(Table.java:2275) at org.eclipse.swt.widgets.Widget.mouseProc(Widget.java:1326) at org.eclipse.swt.widgets.Display.mouseProc(Display.java:2929) at org.eclipse.swt.internal.carbon.OS.SendEventToEventTarget(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3051) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction.showResults(ExternalizeStringsAction.java:308) at org.eclipse.jdt.ui.actions.ExternalizeStringsAction.run(ExternalizeStringsAction.java:183) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:274) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:250) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:583) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1561) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1585) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1570) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1360) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3482) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3068) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) | resolved fixed | c551374 | ["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 | "2009-03-23T12:00:14Z" | "2009-03-22T13:53:20Z" |
262,732 | Bug 262732 [compare] [common navigator] duplicate changes in model compare (folder and source folder) | null | resolved fixed | 8bdbdcc | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/model/JavaSynchronizationContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-19T18:03:00Z" | "2009-01-28T10:53:20Z" |
269,167 | Bug 269167 many exceptions in .log due to JavaElementResourceMapping after deleting a package | I20090317-1745. I got many exceptions in .log due to JavaElementResourceMapping after deleting a class. !ENTRY org.eclipse.team.cvs.ui 4 0 2009-03-18 11:32:13.416 !MESSAGE Errors occurred while applying CVS decorations to resources. !STACK 1 Java Model Exception: Java Model Status [org.eclipse.jface.layout [in src [in org.eclipse.ltk.ui.refactoring]] does not exist] at org.eclipse.jdt.internal.core.JavaElement.newJavaModelException(JavaElement.java:502) at org.eclipse.jdt.internal.core.Openable.generateInfos(Openable.java:246) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed(JavaElement.java:515) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:252) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:238) at org.eclipse.jdt.internal.core.PackageFragment.getNonJavaResources(PackageFragment.java:300) at org.eclipse.jdt.internal.corext.util.JavaElementResourceMapping.getPackageFragmentTraversals(JavaElementResourceMapping.java:196) at org.eclipse.jdt.internal.corext.util.JavaElementResourceMapping.access$1(JavaElementResourceMapping.java:189) at org.eclipse.jdt.internal.corext.util.JavaElementResourceMapping$PackageFragmentResourceMapping.getTraversals(JavaElementResourceMapping.java:184) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.getTraversalRoots(CVSLightweightDecorator.java:261) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.isSupervised(CVSLightweightDecorator.java:248) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.decorate(CVSLightweightDecorator.java:209) at org.eclipse.team.internal.ccvs.ui.CVSLightweightDecorator.decorate(CVSLightweightDecorator.java:161) at org.eclipse.ui.internal.decorators.LightweightDecoratorDefinition.decorate(LightweightDecoratorDefinition.java:263) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager$LightweightRunnable.run(LightweightDecoratorManager.java:81) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.decorate(LightweightDecoratorManager.java:365) at org.eclipse.ui.internal.decorators.LightweightDecoratorManager.getDecorations(LightweightDecoratorManager.java:347) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.ensureResultCached(DecorationScheduler.java:374) at org.eclipse.ui.internal.decorators.DecorationScheduler$1.run(DecorationScheduler.java:334) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) !SUBENTRY 1 org.eclipse.jdt.core 4 969 2009-03-18 11:32:13.416 !MESSAGE org.eclipse.jface.layout [in src [in org.eclipse.ltk.ui.refactoring]] does not exist | verified fixed | b6a463c | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/model/ContentProviderTests.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaElementResourceMapping.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-19T17:41:36Z" | "2009-03-18T12:40:00Z" |
267,682 | Bug 267682 [navigation] 'Open Implementation' on super method invocation should not open quick type hierarchy | null | resolved fixed | c52d582 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaElementImplementationHyperlink.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-16T14:53:42Z" | "2009-03-09T17:33:20Z" |
267,358 | Bug 267358 [package explorer][working sets][dnd] When sorted, should not show drop target for WS | I20090304-0834 When the Package Explorer shows working sets and sorting is enabled, rearranging them via drag and drop makes no sense. The drop targets before and after working sets should be inactive then (but DND of an element into another WS should still work). | resolved fixed | 6eaa029 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/WorkingSetDropAdapter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-16T14:45:32Z" | "2009-03-06T14:33:20Z" |
267,554 | Bug 267554 [ccp] Canceling a file copy operation causes an error | Build id: I20090224-0800 1. File > New > Other... 2. General > Project > Next 3. Give the project a name, click 'Finish'. 4. File > New > Other... 5. General > File 6. Create a file with an arbitrary name in the project created in step 3. 7. Open the 'Package Explorer'. 8. Select the created file. 9. Invoke Ctrl+C to copy, then invoke Ctrl+V to paste. 10. Click 'Cancel' to cancel the operation. 11. An error appears. "Cannot import 'test.txt'. The source and destination are the same." 12. Repeat steps 8 to 10 with the 'Project Explorer'. The same error from step 11 will be seen again. The trace below may be of assistance: Thread [main] (Suspended) CopyFilesAndFoldersOperation.displayError(String) line: 903 CopyFilesAndFoldersOperation.copyFileStores(IContainer, IFileStore[], boolean, IProgressMonitor) line: 788 CopyFilesAndFoldersOperation.copyFiles(String[], IContainer) line: 698 PasteAction$FilePaster.paste(IJavaElement[], IResource[], IWorkingSet[], TransferData[]) line: 1205 PasteAction.run(IStructuredSelection) line: 267 PasteAction(SelectionDispatchAction).dispatchRun(ISelection) line: 274 PasteAction(SelectionDispatchAction).run() line: 250 PasteAction(Action).runWithEvent(Event) line: 498 | resolved fixed | 0515bd0 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/PasteAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-16T14:34:36Z" | "2009-03-08T16:33:20Z" |
267,829 | Bug 267829 [working sets] [package explorer] Working sets not resorted when name changes | I20090310-0100 Have Package Explorer in working set mode, sorted. Change the name of a working set via context menu > Properties. => Working sets are not sorted alphabetically any more in the Package Explorer. Open the Configure Working Sets dialog and edit a working set's name => Working sets are not sorted alphabetically any more in the dialog. | resolved fixed | 89e2cea | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/WorkingSetAwareContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetFilterActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetModel.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-16T14:27:11Z" | "2009-03-10T13:00:00Z" |
220,002 | Bug 220002 [hovering] Add 'Show in Properties File' action to NLS key hover | I20080219-1124 We can add an action in the toolbar or a link in the hover to open the properties file and go to the key. Same action as Ctrl-Alt-Click. But Ctrl-Alt-Click is not easy to discover. With the new AbstractInformationControl this should be almost trivial to implement. | verified fixed | ef859f3 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlink.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaHoverMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/NLSStringHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | "2009-03-13T18:26:39Z" | "2008-02-22T17:06:40Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.