id int64 1 6.5k | bug_id int64 2.03k 426k | summary stringlengths 9 251 | description stringlengths 1 32.8k ⌀ | report_time stringlengths 19 19 | report_timestamp int64 1B 1.39B | status stringclasses 6
values | commit stringlengths 7 9 | commit_timestamp int64 1B 1.39B | files stringlengths 25 32.8k | project_name stringclasses 6
values |
|---|---|---|---|---|---|---|---|---|---|---|
2,835 | 99,675 | Bug 99675 [build path] New source folders should always be inserted on top | RC2 - create a new project - create a new source folder sources - create a new source folder tests observe: the new source folder is appended at the end. Interesting is that source is prepended. Martin, can you please comment on this. | 2005-06-13 10:58:37 | 1,118,670,000 | resolved fixed | 77b6a05 | 1,134,730,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewSourceFolderWizardPage.java | JDT |
2,836 | 102,142 | Bug 102142 [quick fix] Change method signature quick fix renames parameter | In 3.1. Code: public class Foo { Foo(String string) { System.out.println("" + string); } private void bar() { new Foo(3); } } The compile error on new Foo(3) offers a quick fix: "Change constructor Foo(String) to Foo(int)". Selecting it changes not only the type, but the name of the parameter: String string becomes int... | 2005-06-29 08:36:03 | 1,120,050,000 | resolved fixed | d7d8b2a | 1,134,730,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedMethodsQuickFixTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ChangeMethodSignatureProposal.java | JDT |
2,837 | 119,846 | Bug 119846 [nls tooling] "Externalize Strings" default behavior damages navigation to Java properties-file editor | Have a String you wish to externalize, called LABEL (or STRING or BUTTON or TEXT, or the all-caps version of a String which just happens to be the name of a class on your class-path), in a class called, say FooClass. Run the externalize-Strings wizard (with all its default settings) on class "FooClass". The dialog will... | 2005-12-08 07:03:05 | 1,134,040,000 | resolved fixed | d9fa684 | 1,134,660,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java | JDT |
2,838 | 121,033 | Bug 121033 [navigation] Menu items References/Declarations->Workspace/Project/Working set not present in Outline view | Using build I20051214-0010. All items Workspace, Project, Working Sets... for References and Declarations popup menu items have disappeared in this build. Looking at Search main toolbar menu, these items are disabled. However, I can reach them thourgh other views or in editor. | 2005-12-15 05:07:08 | 1,134,640,000 | verified fixed | 501dc5c | 1,134,660,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java | JDT |
2,839 | 120,568 | Bug 120568 [content assist] @link proposal not inserted | I20051213-0010 1. Have the 2 following CUs: Reference.java public class Reference { public static int A_STATIC_FIELD = 0; } Test.java /** * Completion inside reference Reference#A_STATIC_F */ public class Test { } 2. Complete after Reference#A_STATIC_F 3. Choose {@link Reference#A_STATIC_FIELD} 4. Press Enter Observe: ... | 2005-12-13 09:28:22 | 1,134,480,000 | verified fixed | 9ea5a43 | 1,134,570,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/JavadocCompletionTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaMethodCompletionProposal.java | JDT |
2,840 | 120,839 | Bug 120839 [jar import] Does not work for methods with unqualified parameter types | I20051213-0010 Jar import currently does not work for methods with unqualified parameter types. The handle identifier is recorded when the refactoring is applied. During JAR import however, the method stubs are all fully qualified, resulting in a failure to recreate the handle. Should be fixed for M4 since Rename metho... | 2005-12-14 05:45:36 | 1,134,560,000 | verified fixed | 5bdf038 | 1,134,570,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameMethodProcessor.java | JDT |
2,841 | 120,586 | Bug 120586 [correction] Exceptions in log when renaming CU on quick fix | 20051213-0010 1. add '*.foo' as new Java extension to the Java Source File content type (restart required, pending bug in platform) 2. create a Java project and package 'p', and create a file (use new file wizard) 'E.foo' 3. Set content to package p; public class F { } 4. use quick fix on the wrong type name: Choose to... | 2005-12-13 10:47:42 | 1,134,490,000 | verified fixed | 772a70a | 1,134,560,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | JDT |
2,842 | 120,579 | Bug 120579 [quick fix] NullPointerException on Ctrl+1 quickfix suggestion | Build Id: I20051213-0010 Have the following code: ----------- package p; public class Bar { { char[] array= new char[0]; for (char element: array) { } } } ------------ Place cursor directly before "f" of the for loop. Press Ctrl+1 and wait a second -> Nullpointer: org.eclipse.swt.SWTException: Failed to execute runnabl... | 2005-12-13 10:13:23 | 1,134,490,000 | verified fixed | 93807d6 | 1,134,550,000 | 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/AbstractFix.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/UnusedCodeFix.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/u... | JDT |
2,843 | 120,610 | Bug 120610 [jar import] Fatal errors when renaming fields in external jar | Build Id: I20051213-0010 Steps to reproduce: 1. Create project "Bar". 2. Create Class: ---------- package bar; public class Bar { static String b; String a; } ---------- 3. Export the JAR to "a.jar" outside the workspace without Refactoring Information. 4. Rename field "a" to "a2" 5. Rename field "b" to "b2" 6. Rename ... | 2005-12-13 11:38:06 | 1,134,490,000 | verified fixed | cc333a4 | 1,134,550,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/binary/StubCreationOperation.java | JDT |
2,844 | 120,545 | Bug 120545 Misleading constant: CODEASSIST_TIMEOUT_FOR_PARAMETER_NAME_FROM_ATTACHED_JAVADOC | I20051213-0010 CODEASSIST_TIMEOUT_FOR_PARAMETER_NAME_FROM_ATTACHED_JAVADOC is not restricted to code assist but affects all clients using BinaryMethod.getParamterNames() which is OK. To be correct we should rename the constant to: TIMEOUT_FOR_PARAMETER_NAME_FROM_ATTACHED_JAVADOC. | 2005-12-13 06:46:31 | 1,134,470,000 | verified fixed | 5a231ce | 1,134,550,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlockInProgress.java | JDT |
2,845 | 120,603 | Bug 120603 [refactoring] Refactoring History resource mappings should override getModelProviderId() | null | 2005-12-13 11:32:20 | 1,134,490,000 | verified fixed | 2a0b699 | 1,134,500,000 | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/model/AbstractRefactoringDescriptorResourceMapping.java org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/model/AbstractRefactoringHistoryResourceMapping.java org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/m... | JDT |
2,846 | 120,144 | Bug 120144 [implementation] NPE in MethodExitsFinder | 20051209 The method exit finder doesn't like return statements in initialziers. public class A { { return 1; } } java.lang.NullPointerException at org.eclipse.jdt.internal.ui.search.MethodExitsFinder.markReferences(MethodExitsFinder.java:99) at org.eclipse.jdt.internal.ui.search.MethodExitsFinder.perform(MethodExitsFin... | 2005-12-09 13:24:36 | 1,134,150,000 | resolved fixed | b652cd1 | 1,134,380,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MethodExitsFinder.java | JDT |
2,847 | 119,719 | Bug 119719 Team Aware Content Provider | Now that JDT has a model provider and defines a team content provider, it is a short step to having a content provider that shows sync state. I already have a first cut at this. I will attach it as a patch. It would be really nice if it could make it into M4. | 2005-12-07 14:53:49 | 1,133,990,000 | resolved fixed | de45e63 | 1,134,380,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaElementResourceMapping.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/merge/JavaStreamMerger.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/merge/MergeMessages.java org.eclipse.jdt.... | JDT |
2,848 | 99,317 | Bug 99317 [quick fix] Wrong order of quickfix proposals for unhandled exception [quickfix] | null | 2005-06-10 05:19:38 | 1,118,400,000 | verified fixed | 46f2a72 | 1,134,380,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java | JDT |
2,849 | 111,509 | Bug 111509 [api] Need public api for EditorUtility.getActiveEditorJavaInput(..) | We are using internal jdt calls to perform some of our operations. We are using EditorUtility.getActiveEditorJavaInput(..) and would like to replace it with public api. We couldn't find public API to replace this usage. This is blocking our effort to remove access to JDT internal source. | 2005-10-04 15:13:00 | 1,128,450,000 | resolved fixed | c8a07b2 | 1,134,380,000 | org.eclipse.jdt.astview/src/org/eclipse/jdt/astview/EditorUtility.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/EditorUtility.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.java | JDT |
2,850 | 119,827 | Bug 119827 Window working set has strange name in type hierarchy view | Build id: I20051206-1200 Don't know if this is JDT/UI or Platform/UI but when the window working set is selected a strange name is presented in the title bar of the view (see attached screen shot) | 2005-12-08 03:53:46 | 1,134,030,000 | resolved wontfix | 3796ff6 | 1,134,340,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchUtil.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionComponent.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExpl... | JDT |
2,851 | 97,810 | Bug 97810 [preferences] Code template preference page buttons are not grayed out if invoked as project specific property page | 3.1 RC1 Steps to reproduce: - Invoke Override Method on a project with no project-specific settings - Follow link to code template preference page -> Edit, Import, ... buttons are disabled, but not grayed out -> Toggling 'Enable project specific settings twice correctly grays out the buttons | 2005-06-01 06:10:07 | 1,117,620,000 | verified fixed | 7b8562a | 1,134,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/ListDialogField.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/TreeListDialogField.java | JDT |
2,852 | 116,199 | Bug 116199 [render] Easy-to-read .jar file reference | In the "Package Explorer" one often ends up with complicated or long paths to the jar files that are rererenced, and because of this the file name often ends up outside the viewable area, the explorer being relatively narrow. The idea here is simply to replace the label text with "shortname (path)" in stead of "path/sh... | 2005-11-14 04:26:40 | 1,131,960,000 | resolved fixed | cf59482 | 1,134,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabels.java | JDT |
2,853 | 119,392 | Bug 119392 Misleading dialog caption for derived rename compilation unit [refactoring] | I20051130-1215 + ZRH plugin export Steps to reproduce: - Invoke Rename refactoring on cu - Choose to configure the name matching strategy -> Dialog shows "Rename Type", but should inherit the caption from the user input dialog. | 2005-12-06 05:55:53 | 1,133,870,000 | verified fixed | 14dad02 | 1,134,150,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/RefactoringMessages.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameTypeWizardSimilarElementsOptionsDialog.java | JDT |
2,854 | 118,423 | Bug 118423 [build path] Exception thrown in New Java Project Wizard | Create a new Java Project. On the first page of the wizard select Create Project from existing source. Specify an existing project. Click Next. Note that there are lots of file in the package explorer widget. Click the back button. Note in the Error Log that there are Internal Errors listed. This is important to us bec... | 2005-11-29 09:56:56 | 1,133,280,000 | verified fixed | 85e53f3 | 1,134,120,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/DialogPackageExplorer.java | JDT |
2,855 | 120,081 | Bug 120081 [clean up][infrastructure] Pass a CompilationUnitRewrite to IFixOperation#rewriteAST | Version: 3.2.0 Build id: I20051206-1200 | 2005-12-09 04:36:07 | 1,134,120,000 | resolved fixed | 12960a0 | 1,134,120,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/AbstractFix.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/CodeStyleFix.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/... | JDT |
2,856 | 120,078 | Bug 120078 [clean up][infrastructure] rename Convert*LoopProposal as Convert*LoopOperation and move to corext | Version: 3.2.0 Build id: I20051206-1200 | 2005-12-09 04:15:00 | 1,134,120,000 | resolved fixed | 92583d7 | 1,134,120,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/ConvertForLoopOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/ConvertIterableLoopOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/Java50Fix.java org.eclipse.jdt.ui/ui/org/eclips... | JDT |
2,857 | 119,923 | Bug 119923 [clean up][infrastructure] ConvertForLoop should use ContextSensitiveImportRewriteContext | Version: 3.2.0 Build id: I20051206-1200 | 2005-12-08 12:42:40 | 1,134,060,000 | resolved fixed | a69a0d0 | 1,134,060,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/LinkedFix.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertForLoopProposal.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertIterableLoopProposal.java | JDT |
2,858 | 119,875 | Bug 119875 [implementation] AFE when opening editor .java file from CVS Repositories view | I20051206-1200 + ZRH plugin export from 20051208_1013 AFE when opening editor .java file from CVS Repositories view: Error 2005-12-08 16:24:04.313 Unable to create editor ID org.eclipse.jdt.ui.CompilationUnitEditor: Assertion failed: org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclip... | 2005-12-08 10:26:30 | 1,134,060,000 | verified fixed | 42b7a54 | 1,134,060,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ASTProvider.java | JDT |
2,859 | 103,785 | Bug 103785 [content assist] sort methods with less arguments first | 3.1 List<String> li= null; li.ad |code assist The proposals are: add(int index, String element) add(String element) .. I checked that all proposals get the same relevance from jdt.core It would be better that for method with the same name, methods with less argumnets are ordered first. That would be consistent with the... | 2005-07-14 04:48:52 | 1,121,330,000 | resolved fixed | 3d9d689 | 1,134,060,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaMethodCompletionProposal.java | JDT |
2,860 | 117,493 | Bug 117493 [content assist] CompletionRequestor#completionFailure(IProblem)) is ignored | This got introduced after 3.2 M1 (i.e. broken in 3.2 M2 and newer). If completion fails we now always show: "No completion available." instead of the real error text. Example: for (Iterator i=things.iterator(); i.<ctrl-space> // Iterator not yet imported) | 2005-11-22 09:51:38 | 1,132,670,000 | resolved fixed | 781c3f0 | 1,134,050,000 | 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/CompletionProposalComputerDescriptor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ContentAssistProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/... | JDT |
2,861 | 114,098 | Bug 114098 [content assist] Camel case completions are not inserted | null | 2005-10-28 09:42:11 | 1,130,510,000 | resolved fixed | 5342939 | 1,134,050,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/AbstractCompletionTest.java org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/CamelCaseCompletionTest.java org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/ContentAssistTestSuite.java org.eclipse.jdt.tex... | JDT |
2,862 | 114,119 | Bug 114119 [ast rewrite] Following of bug 85298, the anonymous cannot be deleted | null | 2005-10-28 11:26:52 | 1,130,510,000 | resolved fixed | ea1e835 | 1,134,050,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ASTNodeDeleteUtil.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ASTNodeSearchUtil.java | JDT |
2,863 | 111,496 | Bug 111496 [API] access to AddUnimplementedMethodsOperation | We are using internal jdt calls to perform some of our operations. In order to add method stubs for unimplemented inherited members, we are using the following internal classes / apis - AddMethodStubOperation - IRequestQuery (requried for AddMethodStubOperation) - StubUtility2 (to find unimplemented methods) - ASTNodes... | 2005-10-04 14:39:13 | 1,128,450,000 | verified fixed | bff996d | 1,134,040,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/AddUnimplementedConstructorsTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/source/AddUnimplementedMethodsTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedConstructorsOperatio... | JDT |
2,864 | 109,041 | Bug 109041 [implementation] Occurrence finders should not compute current node each time | I20050906-1200 This is a minor performance improvement item: currently each occurrence finder computes the node at the caret location via NodeFinder. It would be more efficient to compute the node once and initialize each occurrence finder with that node. | 2005-09-08 06:57:15 | 1,126,180,000 | resolved fixed | c9ab2f3 | 1,133,970,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/BreakContinueTargetFinder.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ExceptionOccurrencesFinder.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/Implement... | JDT |
2,865 | 119,394 | Bug 119394 [refactoring] IndexOutOfBoundsException in Change Method Signature | Build id: I20051130-1215 Having: -------------- public class Foo { public void test() { Foo b= new Foo() { public void foo() { } }; } } -------------- Invoke Change Signature on foo(); add one parameter, press "Preview": java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalCo... | 2005-12-06 06:52:31 | 1,133,870,000 | verified fixed | f494290 | 1,133,960,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/TypeContextChecker.java | JDT |
2,866 | 119,532 | Bug 119532 [implementation] NPE in DocumentAdapter when setting the contents | I have a plugin that modifies buffers programmatically via IBuffer.setContents(). If this is called during a clean operation operation with the file open (so that the file itself gets deleted), I get the following exception: org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at or... | 2005-12-06 19:31:42 | 1,133,920,000 | verified fixed | 1c5150a | 1,133,960,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/DocumentAdapter.java | JDT |
2,867 | 119,528 | Bug 119528 [build path] "Add Java Source Attachment" default path should be Jar's path | When using Buildpath Jar-> Properties -> Add Java Source Attachment -> (External File Or External Folder), the default folders for the browse dialog can be improved to improve usability and productivity. The most appropriate starting folder for the dialog is surely the folder containing the Jar for which we are setting... | 2005-12-06 18:37:16 | 1,133,910,000 | verified fixed | e253b3d | 1,133,950,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceAttachmentBlock.java | JDT |
2,868 | 119,316 | Bug 119316 Changes in Logical Model support classes | I have dne some refactoring of the Team logical model support classes. Basically, I have moved several class from Team UI to Team Core. I have left stubs in Team UI so that LTK and JDT UI compile but they will not work until they are refactored to use the Core classes. I have also added an abstract class, ResourceMappi... | 2005-12-05 16:21:37 | 1,133,820,000 | resolved fixed | 53f875d | 1,133,950,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/model/JavaRefactoringAdapterFactory.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/model/JavaRefactoringCompareAdapter.java org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/ui/refactoring/model/AbstractRefactorin... | JDT |
2,869 | 119,414 | Bug 119414 [clean up][J2SE50] Failing test case in CleanUpTest#testJava5005 | Version: 3.2.0 Build id: I20051130-1215 With version 625 of core the order of problems in the array returned by CompilationUnit#getProblems has changed. This results in a changed order of @Override/@Deprecated annotations inserted by the J2se clean up. | 2005-12-06 10:13:42 | 1,133,880,000 | verified fixed | 01fdbe3 | 1,133,890,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/FixMessages.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/Java50Fix.java | JDT |
2,870 | 97,829 | Bug 97829 [api] Delegate isNotSynchronizedException() to document providers | null | 2005-06-01 09:30:43 | 1,117,630,000 | resolved fixed | 6f9a22b | 1,133,880,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ICompilationUnitDocumentProvider.java | JDT |
2,871 | 117,468 | Bug 117468 [misc] BadLocationException when moving type | I20051116-1332 + plugin-export 20051122_1135 Have a type in a non-default package. Open the type in the editor, put the caret into the last line. Now move the compilation unit into the default package (drag&drop or select Move... on the file in the package explorer). Move it back. Both move operations give the followin... | 2005-11-22 06:33:07 | 1,132,660,000 | verified fixed | 3c1e3d6 | 1,133,860,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | JDT |
2,872 | 119,170 | Bug 119170 [quickfix] "change access to static" fails when field or inner class hides static class name | null | 2005-12-03 10:10:27 | 1,133,620,000 | verified fixed | 481d9ab | 1,133,860,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ChangeNonStaticToStaticTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/QuickFixTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/... | JDT |
2,873 | 38,062 | Bug 38062 [api] Provide API that allows to use text search for a new search (page) | Use case: I wanted to take the basic TextSearch and change the LabelProvider in TextSearchResultCollector.aboutToStart(), since the one used there, FileLabelProvider(FileLabelProvider.SHOW_LABEL_PATH), displays filenames and java-related icons, while we wanted to display text and icons based on our Model. The LabelProv... | 2003-05-23 14:57:56 | 1,053,720,000 | resolved fixed | cc9ed9f | 1,133,810,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/util/QualifiedNameFinder.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertyKeyHyperlink.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/PatternConstructor.java | JDT |
2,874 | 118,882 | Bug 118882 Disable Back and Next buttons when showing progress in Rename Type wizard | I20051130-1215 The Back and Next buttons in the Rename Type wizard must be disabled while the wizard is showing progress. The Cancel button is the only one that should be enabled during transitions from one wizard page to the other (in both directions). Philip, could you please have a look? | 2005-12-01 12:39:56 | 1,133,460,000 | verified fixed | 94af45f | 1,133,550,000 | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringWizardDialog2.java | JDT |
2,875 | 118,399 | Bug 118399 [refactoring] Rename type with similar elements does not work for URL | code for I20051129-0800 Renaming classes with multiple consecutive uppercase characters does not work as expected. For a class like URL, variables are usually called url or fUrl, and not uRL or fURL. Currently, only the latter version is found. I guess single-character CamelCase hunks need special treatment. class URL ... | 2005-11-29 05:31:20 | 1,133,260,000 | verified fixed | 6f6d469 | 1,133,550,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/RenamingNameSuggestorTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenamingNameSuggestor.java | JDT |
2,876 | 118,897 | Bug 118897 ASTParser resolves bindings without request | I20051130-1215 ASTParser resolves bindings without request when certain conditions hold, although setResolveBindings(true) has not been called. The following extract from internalCreateAST(IProgressMonitor) looks suspicios: if (this.rawSource != null) { needToResolveBindings = this.unitName != null && this.project != n... | 2005-12-01 13:46:37 | 1,133,460,000 | verified fixed | 1aedbf7 | 1,133,470,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/TypeRulesTest.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractConstantRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java org.eclipse.j... | JDT |
2,877 | 104,441 | Bug 104441 [build path] "compiler settings changed" dialog appears multiple times | If compiler settings are changed on more than one preference pane (e.g., on "Java Compiler", "Building", and "Errors/Warnings"), and the user clicks OK, the Compiler Settings Changed dialog will then appear once for each modified preference pane. This is the dialog that asks "A rebuild of the project is required for ch... | 2005-07-19 20:55:06 | 1,121,820,000 | verified fixed | e2557b2 | 1,133,460,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/OptionsConfigurationBlock.java | JDT |
2,878 | 104,480 | Bug 104480 [build path] Warning message on Java Compiler page should link to Java Build Path as well | I20050627-1435 (3.1) The warning message on the Java Compiler project properties page should link to Java Build Path as well. I suggest to replace the "Configure..." link by two links "Configure Installed JREs" and "Configure Build Path...". The "Configure Build Path..." should just go to the Java Build Path page iff t... | 2005-07-20 07:17:26 | 1,121,860,000 | verified fixed | 78b06be92 | 1,133,460,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ComplianceConfigurationBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java | JDT |
2,879 | 118,799 | Bug 118799 [clean up][infrastructure] Clean Up Wizard array out of bound if started without preselected CU | Version: 3.2.0 Build id: I20051130-1215 | 2005-12-01 06:13:34 | 1,133,440,000 | verified fixed | 8920b71 | 1,133,450,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CleanUpRefactoringWizard.java | JDT |
2,880 | 118,430 | Bug 118430 Search looking in system libs even though told not too | Build 3.2m3 When searching for declaration of "wait*" methods in working set: Jdtcore+test projects, it finds matches inside system JARs, but the checkbox "Search the JRE system libraries" was deselected. The working set "Jdtcore+tests" contains the JDT/Core projects (including test ones). Amongst the unexpected matche... | 2005-11-29 10:17:47 | 1,133,280,000 | verified fixed | a77a7ff | 1,133,450,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java | JDT |
2,881 | 118,479 | Bug 118479 [api] Need a way to get a shared instance of JavaTextTools | JavaTextTools contains tools required to cofigure a java text viewer, and those tools can be shared via JavaTextTools. Currently, when clients want to use those tools, they need to first create a new instance of JavaTextTools and then share their instance of JavaTextTools in order to share the tools in JavaTextTools. T... | 2005-11-29 13:45:52 | 1,133,290,000 | verified fixed | 7db35a5 | 1,133,370,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaTextTools.java | JDT |
2,882 | 118,606 | Bug 118606 ResourcesPlugin.getWorkspace().getRoot().getLocationURI() has no trailing / | I20051129-1200 ResourcesPlugin.getWorkspace().getRoot().getLocationURI() used to return a URI with a trailing /, but in the latest I-build, the / is missing. Was this change intended? It leads to problems in other components, e.g. it breaks the new Java Project wizard. | 2005-11-30 05:14:34 | 1,133,350,000 | resolved fixed | 2439809 | 1,133,370,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardSecondPage.java | JDT |
2,883 | 116,848 | Bug 116848 [quick fix] Adapt JDT maker reolutions to WorkbenchMarkerResolution | null | 2005-11-17 06:07:39 | 1,132,230,000 | verified fixed | 24d8d25 | 1,133,280,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMarkerResolutionGenerator.java | JDT |
2,884 | 118,422 | Bug 118422 Quick fix causes CoreException | I20051129-0800 Each invocation of quick fix on the errors from the code below causes a CoreException. package pack; /** * Complete after: MyClass * MyClass * <code>My</code> * @see test.MyClass */ public class X { void foo() { Date d; } } | 2005-11-29 09:55:32 | 1,133,280,000 | verified fixed | 507eb6b | 1,133,280,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java | JDT |
2,885 | 117,466 | Bug 117466 [build path] Edited linked source can't be reedited | Version: 3.2.0 Build id: I20051116-1332 Java Project -> Configure Build Path Add a link to a source !link can't be edited Now close properties page and reopen properties page for build path Link can be edited Edit link !link can't be edited anymore | 2005-11-22 06:15:34 | 1,132,660,000 | verified fixed | c7a4f46 | 1,133,280,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/LinkFolderDialog.java | JDT |
2,886 | 118,204 | Bug 118204 [clean up][code style] Clean up "Qualify access to static field with declaring class" inserts fully qualified type | I20051123-1200 - xy/Try.java: package xy; public class Try { static String fgName; public static void main(String[] args) { System.out.println(fgName); } } - Clean up "Qualify access to static field with declaring class" changes reference to "xy.Try.fgName". Should be "Try.fgName". | 2005-11-28 05:09:24 | 1,133,170,000 | verified fixed | 73cb8c9 | 1,133,270,000 | 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/CodeStyleFix.java | JDT |
2,887 | 118,246 | Bug 118246 Definition of getJavaLikeExtensions() leads to programming errors | I20051123-1200 In contrast to all existing get*Extension* methods for file (names) in the Platform the new getJavaLikeExtensions() method is containing the '.'. This leads to programming errors when working with extensions in Eclipse: IFile.getFileExtension() returns 'java' for Foo.java IFileEditorMapping.getExtension(... | 2005-11-28 10:53:28 | 1,133,190,000 | verified fixed | 15e50a1 | 1,133,260,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertyKeyHyperlink.java | JDT |
2,888 | 118,222 | Bug 118222 [nls tooling] nls tooling is not .java agnostic | null | 2005-11-28 07:57:11 | 1,133,180,000 | resolved fixed | acb9ef1 | 1,133,190,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertyKeyHyperlink.java | JDT |
2,889 | 118,209 | Bug 118209 Rename type wizard does not close when pressing finish [refactoring] | I20051123-1200 + ZRH plugin export Steps to reproduce: - Create JUnit Project - Start Rename type on 'TestRunner' - Choose update references and similar elements only - Press Finish - Warning appears regarding broken scripts - Press Finish again -> Nothing happens | 2005-11-28 05:39:16 | 1,133,170,000 | verified fixed | 78248eb | 1,133,190,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameTypeWizardInputPage.java org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringWizardDialog2.java | JDT |
2,890 | 118,068 | Bug 118068 [working sets] 'Aggregate for window 1132932971442' working set name | Version: 3.2.0 Build id: N20051125-0010 In the Package Explorer menu of an empty working, open the 'Select Working Set...' dialog and select the 'Window Working Sets' option (no working sets exist) and click OK. The go back to the 'Edit Active Working Set...' dialog and you will be presented with the dialog and a worki... | 2005-11-25 10:40:48 | 1,132,930,000 | closed fixed | 14b83b2 | 1,133,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/EditWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetFilterActionGroup.java | JDT |
2,891 | 117,216 | Bug 117216 [preferences] Support JDK version 1.6 | I'm on 3.2M3. I'm using JDK 1.6 and "Infer Generic Type Arguments" shows an error dialog that this action is only available with Java 5 or better. I think, the problem is that org.eclipse.jdt.internal.corext.util.JavaModelUtil#is50OrHigherJRE only checks for JDK 1.5. I've changed the last line of that method to return ... | 2005-11-20 12:53:47 | 1,132,510,000 | verified fixed | 5534920 | 1,133,190,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardFirstPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathSupport.java | JDT |
2,892 | 118,152 | Bug 118152 If there is unsaved editor, jar export progress window blocks save dialog | I have saved jarexport description files. If there is any unsaved editors in the workbench and if I right click on jardesc file and select export, progress window is shown. Same time, save dialog pops up. Progress window is the top window and blocks. You cannot access to the save dialog. Cancelling the progress window ... | 2005-11-27 04:49:40 | 1,133,080,000 | verified fixed | 0d1ff4c | 1,133,180,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/CreateJarActionDelegate.java | JDT |
2,893 | 118,133 | Bug 118133 [refactoring] InvocationTargetException on a valid refactoring | In the constructor, I had code like: xyz = ClassA.staticMethod().someOtherMethod(); where xyz is declared as a final variable in the class. I also had in several methods the following code: abc = ClassA.staticMethod(); I selected "ClassA.staticMethod()" that was in the constructor, then chose to extract constant. I gav... | 2005-11-26 11:25:33 | 1,133,020,000 | verified fixed | eaee7af | 1,133,180,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractConstantRefactoring.java | JDT |
2,894 | 118,045 | Bug 118045 [refactoring] cannot pull up method from implementation to interface | I have a simple class Clazz implementing an interface Interfaze. I've written a new instance method in Clazz and now want to pull it up to Interfaze, but Eclipse does not allow me: "Pull up is not allowed on this type. Type has no super types.". Of course it has - the Interfaze. | 2005-11-25 07:27:06 | 1,132,920,000 | verified fixed | f12ba5d | 1,133,170,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/PullUpRefactoring.java | JDT |
2,895 | 116,573 | Bug 116573 wrong guess of binding with overloaded methods | Create two classes like this package var.creation.test; public class b { public final void m(int x, String y) {} // private final void m(String x) {} // public final void m(boolean x, String y, String z) {} } package var.creation.test; public class a { public a() { new b().m(first, second); } } Now applying "Quick Fix"... | 2005-11-15 22:49:05 | 1,132,110,000 | verified fixed | 767343f | 1,132,910,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ASTResolving.java | JDT |
2,896 | 93,162 | Bug 93162 [api] [open type] Require ability to extend the Type selection mechanism | The Visual Editor for Java has a ChooseBean dialog which directly extends the internal TypeSelectionDialog2. The ChooseBean dialog is used during UI designing to select a 'bean' from the existing 'types', and drop it onto the designing surface (like adding buttons to shells etc.) Optionally we have a text field to let ... | 2005-04-28 15:29:34 | 1,114,720,000 | closed fixed | 2de0323 | 1,132,850,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/TypeInfo.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/TypeInfoFilter.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeExceptionsControl.java org.eclipse.jdt.ui/ui refactoring/org/ecl... | JDT |
2,897 | 117,894 | Bug 117894 [clean up][code syle] Using NewImportRewrite | Version: 3.2.0 Build id: I20051122-1300 CodeStyleFix can make use of the NewImportRewrite class. | 2005-11-24 06:54:08 | 1,132,830,000 | verified fixed | 1372c2e | 1,132,840,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/AbstractFix.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/CodeStyleFix.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java | JDT |
2,898 | 115,832 | Bug 115832 [build path] Can't uncheck export of source folder | build I20051102-1600 In order to test compiling JFace against a reduced subset of core.runtime, I: - changed the build path of org.eclipse.jface to include its runtime-util source folder - removed the plug-in dependencies classpath container - added o.e.core.commands and SWT as explicit projects On the Libraries tab, t... | 2005-11-10 10:47:21 | 1,131,640,000 | verified fixed | b1e505e | 1,132,820,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/CheckedListDialogField.java | JDT |
2,899 | 114,153 | Bug 114153 CoreException: Cannot create file buffer - on rename package | 3.2M2 rename a package and specify to update reference to non-java files set *.* as the name matching pattern press preview scroll down to the bottom and open the 'textual qualified name modifications' there are some in class files, select any of them org.eclipse.core.runtime.CoreException: Cannot create file buffer. a... | 2005-10-28 13:24:44 | 1,130,520,000 | verified fixed | f8e4ea3 | 1,132,760,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/util/QualifiedNameFinder.java | JDT |
2,900 | 117,718 | Bug 117718 [clean up][infrastructure] Use flags for clean ups instead of boolean parameter list | Version: 3.2.0 Build id: I20051122-1300 Boolean parameter lists in constructors for ICleanUps do not scale. | 2005-11-23 09:11:27 | 1,132,760,000 | resolved fixed | 19c3dcb | 1,132,760,000 | org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/CleanUpPerfTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/CleanUpRefactoring.java org.eclipse.jdt.ui/core extension/org/eclipse/... | JDT |
2,901 | 117,696 | Bug 117696 ExtractInterfaceProcessor should not hardcode ".java" | null | 2005-11-23 05:48:43 | 1,132,740,000 | verified fixed | dfb3868 | 1,132,750,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceProcessor.java | JDT |
2,902 | 117,706 | Bug 117706 Replace With > Latest from HEAD gives NPE | I20051123-1300 1. change a file which is shared (CVS team provider) 2. close the editor 3. in the Package Explorer: Replace With > Latest from HEAD ==> NPE (see below) This is caused by the fact that the JavaElementResourceMapper uses "return JavaRefactoringModelProvider.JAVA_REFACTORING_MODEL_PROVIDER_ID;" as model ID... | 2005-11-23 07:14:06 | 1,132,750,000 | verified fixed | d10f403 | 1,132,750,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaElementResourceMapping.java | JDT |
2,903 | 117,328 | Bug 117328 Refactor/rename for non-java folder causes Java Model Exception | null | 2005-11-21 11:41:36 | 1,132,590,000 | verified fixed | e0a9252 | 1,132,750,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameResourceProcessor.java | JDT |
2,904 | 97,764 | Bug 97764 [refactoring] [rename] Exception attempting to rename linked binary project resources --> provide details to user | I was attempting to rename a file in a binary project and the operation fails with details. A big scary stack trace is dumped to the log with a very nice description of the problem. I would propose to present the details to the user so that the (dumb) user can remember that the plugin is linked :-) Caused by: org.eclip... | 2005-05-31 19:23:14 | 1,117,580,000 | resolved fixed | 168ce33 | 1,132,750,000 | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/UIPerformChangeOperation.java | JDT |
2,905 | 117,015 | Bug 117015 [refactoring] Rename type should not rely on ".java" | null | 2005-11-18 04:41:46 | 1,132,310,000 | verified fixed | 92ce3e9 | 1,132,740,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSRefactoring.java org.eclipse.jdt.ui/core refactorin... | JDT |
2,906 | 117,469 | Bug 117469 [clean up][infrastructure] Rename MultiFix to CleanUp | Version: 3.2.0 Build id: I20051116-1332 All multi fixes should be renamed to clean up. | 2005-11-22 06:42:39 | 1,132,660,000 | resolved fixed | a180bda | 1,132,670,000 | org.eclipse.jdt.ui.tests/performance/org/eclipse/jdt/ui/tests/performance/views/CleanUpPerfTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/fix/CleanUpRefactoring.java org.eclipse.jdt.ui/core extension/org/eclipse/... | JDT |
2,907 | 111,742 | Bug 111742 [quick fix] fix for assigning raw | When writting: List<Foo> l= new ArrayList(); A quick fix may be offered to convert to: List<Foo> l= new ArrayList<Foo>(); additionaly to the quick fix "add @SuppressWarnings("unchecked")". | 2005-10-06 05:31:29 | 1,128,590,000 | verified fixed | f9e2114 | 1,132,650,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/... | JDT |
2,908 | 114,368 | Bug 114368 [build path] New Java Project wizard: project not marked as exported on build path page | I20051031-0010 + ZRH plugins from 20051031_1611 Open the New Java Project wizard. On the second page on tab 'Order and Export', the package fragment root (source folder or project) is unchecked. After the project has been created, the 'Properties > Java Build Path' page shows it checked. It should already have been che... | 2005-10-31 10:31:25 | 1,130,770,000 | verified fixed | c31369e | 1,132,650,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/CheckedListDialogField.java | JDT |
2,909 | 117,055 | Bug 117055 [clean up][string fix] Wrong preview node name | Version: 3.2.0 Build id: I20051116-1332 Having: public class E { public String s1; //$NON-NLS-1$ public String s2 = ""; } Running Source -> Clean Up -> Add/Remove NON NLS tag The nodes for the edit groups on the preview page are: &Remove unneccessary '$NON-NLS$' tag &Add missing '$NON-NLS$'tag but there should be no '&... | 2005-11-18 10:44:30 | 1,132,330,000 | verified fixed | 469806d | 1,132,650,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/StringMultiFix.java | JDT |
2,910 | 101,004 | Bug 101004 Make package delete hierarchical | Using Eclipse 3.1 RC3, create a Java project and then a package, say: a.b.c.d.e Try to delete this package in the Java perspective. It will only delete one segment at a time. e.g.: 1 delete => a.b.c.d 2 deletes => a.b.c 3 deletes => a.b 4 deletes => a 5 deletes => finally deleted. This is highly unusable and I don't th... | 2005-06-20 23:40:11 | 1,119,330,000 | verified fixed | b152e79 | 1,132,650,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/ParticipantTesting.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/reorg/DeleteTest.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/RefactoringAvailabilityTester.java o... | JDT |
2,911 | 117,295 | Bug 117295 [clean up][infrastructure] Light clean up | null | 2005-11-21 05:51:12 | 1,132,570,000 | resolved fixed | 9d2b923 | 1,132,650,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/CleanUpAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CleanUpRefactoringWizard.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/Java50MultiFix.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/StringMultiFix.java org.eclipse... | JDT |
2,912 | 91,550 | Bug 91550 [navigation] Selecting 'return' should also mark method exits | Build 3.1m6 Identifying quickly all return statements using mark occurrences would be nice. | 2005-04-15 11:00:12 | 1,113,580,000 | resolved fixed | 6749a39 | 1,132,580,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MethodExitsFinder.java | JDT |
2,913 | 117,016 | Bug 117016 [refactoring] Move Inner to Top should not hardcode ".java" | null | 2005-11-18 04:59:40 | 1,132,310,000 | verified fixed | 22369ae | 1,132,570,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | JDT |
2,914 | 116,342 | Bug 116342 [refactoring] [extract method] Pre/post-increment/decrement in loops allowed to be extracted | Try an extract method refactoring on the following code, indicated by the comments: import junit.framework.TestCase; public class BugTest extends TestCase{ public void testLoop(){ int x = 0; for (int i = x; i < 10; i++) //extract here... assertEquals(i,x++); //...to here } } If the refactoring were behavior preserving,... | 2005-11-14 17:24:19 | 1,132,010,000 | verified fixed | 0d65b72 | 1,132,530,000 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_in/A_test577.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_out/A_test577.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/Extrac... | JDT |
2,915 | 100,212 | Bug 100212 [refactoring] Encapsulate field breaks static import statement. | To Import.x do Refactor>>EncapsulateField. See the resulting static import statement is illegal. -------------------- bug/Bug.java ---------------------- package bug; import static bug.Import.x; class Bug { int y=x; } -------------------- bug/Import.java ------------------- package bug; class Import { static int x; } | 2005-06-15 11:26:39 | 1,118,850,000 | verified fixed | b44ccf7 | 1,132,500,000 | org.eclipse.jdt.ui.tests.refactoring/resources/SefWorkSpace/SefTests/static_in/TestStaticImportNone.java org.eclipse.jdt.ui.tests.refactoring/resources/SefWorkSpace/SefTests/static_in/TestStaticImportRead.java org.eclipse.jdt.ui.tests.refactoring/resources/SefWorkSpace/SefTests/static_in/TestStaticImportReadWrite.java ... | JDT |
2,916 | 117,071 | Bug 117071 MembersOrderPreferenceCache leaking a propertyChangeListener | 20051109 org.eclipse.jdt.ui.PreferenceConstants#initializeDefaultValues adds a listener to JDT UI preference store but this is not deleted before shutdown. | 2005-11-18 11:23:14 | 1,132,330,000 | verified fixed | 1fbf2b4 | 1,132,400,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIPreferenceInitializer.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/MembersOrderPreferenceCache.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java | JDT |
2,917 | 117,025 | Bug 117025 Invalid "Unsupported search pattern" message while search again | This problem exist since 3.0 I guess, here's the scenario.. Test case is a simple class: class X { void foo() {} void bar() { foo(); } } Here are steps: 1) Search reference to foo() method => you get 1 match in Search view: OK 2) Rename foo (using refactoring or directly in code, it does not matter) 3) Go back to Searc... | 2005-11-18 07:26:12 | 1,132,320,000 | verified fixed | 1af6f11 | 1,132,400,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchQuery.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchMessages.java | JDT |
2,918 | 99,906 | Bug 99906 [JUnit] Recreating test suite throws exception for line delimiter | I20050610-1757 (3.1RC2) I have all line delimiter settings set to default (unchanged). - create test class MyTest.java: package tests; import junit.framework.TestCase; public class MyTest extends TestCase { public void test1() throws Exception { } } - select MyTest.java and choose New > JUnit Test Suite, click Finish -... | 2005-06-14 04:40:44 | 1,118,740,000 | verified fixed | 9450227 | 1,132,340,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/UpdateTestSuite.java org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/wizards/NewTestSuiteWizardPage.java | JDT |
2,919 | 102,811 | Bug 102811 [open type] Open Type should use current selection | null | 2005-07-06 03:28:58 | 1,120,630,000 | verified fixed | a31f5f7 | 1,132,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionDialog2.java | JDT |
2,920 | 99,918 | Bug 99918 [open type] Open Type dialog ignores cancel from blocking jobs dialog | 3.1 RC3 I started the workbench and hit Ctrl+Shift+T. The blocking jobs dialog appeared. I killed all jobs and clicked 'Cancel'. After letting me wait for a while the Open Type dialog came up despite of having cancelled it. | 2005-06-14 05:50:36 | 1,118,740,000 | verified fixed | c080a41 | 1,132,330,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/TypeInfoHistory.java | JDT |
2,921 | 114,492 | Bug 114492 [WorkingSets] working sets: edit dialog should not display an error on open | null | 2005-11-01 05:36:42 | 1,130,840,000 | verified fixed | f36800a | 1,132,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java | JDT |
2,922 | 108,282 | Bug 108282 [correction] Quick Fix (Ctrl+1) takes a long time to catch up with current state | The Quick Fix feature (pressing Ctrl+1) takes a very long time to correctly display the list of options. If I use a new class which is not in the import list the unknown type shows up as an error. Pressing Ctrl+1 to show a quick fix menu oftens lags behind so that the 'import type' is not shown on the menu. This is hig... | 2005-08-29 11:47:37 | 1,125,330,000 | verified fixed | 5f937a8 | 1,132,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ASTProvider.java | JDT |
2,923 | 93,093 | Bug 93093 [1.5][dom] Capture binding "? extends Number[]" has bound Object instead of Number[] | I20050426-1700 Vector< ? extends Number[] > wild= null; wild.get(0); The bounds of the capture binding for expression "wild.get(0)" are { Object }, but should be { Number[] }. | 2005-04-28 06:04:17 | 1,114,680,000 | verified fixed | d99c703 | 1,132,330,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/typeconstraints/TypeEnvironmentTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/types/CaptureType.java | JDT |
2,924 | 114,496 | Bug 114496 [working sets] working sets: counter-intuitive hiding of resource sets | null | 2005-11-01 05:47:52 | 1,130,840,000 | verified fixed | a683e40 | 1,132,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/ConfigureWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.java | JDT |
2,925 | 115,860 | Bug 115860 ModelProvider and ResourceMapping | JDT should create a ModelProvider (If you don't already have one for the refactoring history support) and should ensure that their ResourceMapping subclasses override the getModelProviderId to return the id of the JDT model provider. Once this is done, we can make the method in ResourceMapping abstract to force new sub... | 2005-11-10 12:07:44 | 1,131,640,000 | verified fixed | 109e324 | 1,132,310,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaElementResourceMapping.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/model/JavaRefactoringModelProvider.java | JDT |
2,926 | 115,099 | Bug 115099 Adapt Package explore tor new working set API isSelfUpdating | null | 2005-11-04 12:04:42 | 1,131,120,000 | verified fixed | ff6c53d | 1,132,250,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetConfigurationDialog.java | JDT |
2,927 | 114,946 | Bug 114946 Fold two JDT initialize Job back into one | M3 We have now two initialize Jobs. One for UI and one for Core. We should fold them back into one. Either Core has to provide another method or we remove the Job from the Core method. This has to be a coordinated effort since removing the Job in Core without adjusting the code in UI will result in a blocking UI thread... | 2005-11-03 11:54:28 | 1,131,040,000 | verified fixed | afea3bc | 1,132,240,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/InitializeAfterLoadJob.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIMessages.java | JDT |
2,928 | 116,844 | Bug 116844 JUnitBaseLaunchConfiguration should call this.getEnvironment | null | 2005-11-17 05:34:23 | 1,132,220,000 | verified fixed | d448759 | 1,132,230,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitBaseLaunchConfiguration.java | JDT |
2,929 | 113,841 | Bug 113841 [type hierarchy] Long UI freeze when clicking in outline after starutp | Build id: I20051025-0800 1) Running a large self-hosting workspace, in java perspective, with an editor open and the outline view is visible. 2) Shutdown and restart Eclipse. -> After startup, the "Initializing Java User Interface is running". That's fine. 3) Left-click a method in the outline view. -> At this point th... | 2005-10-26 12:03:03 | 1,130,340,000 | verified fixed | db92216 | 1,132,140,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/SuperTypeHierarchyCache.java | JDT |
2,930 | 116,419 | Bug 116419 code assist regression: POTENTIAL_METHOD_DECLARATION not offered anymore | 20051115 With v_621 we have a test failure in CodeCompletionTest.testConstructorCompletion: The call with 'POTENTIAL_METHOD_DECLARATION' is not occuring anymore. | 2005-11-15 05:53:49 | 1,132,050,000 | verified fixed | 825c6f5 | 1,132,050,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CodeCompletionTest.java | JDT |
2,931 | 113,665 | Bug 113665 [quick fix] 'add unimplemented methods' does not recognise RuntimeExceptions correctly | If the imlpementation of a method defined inan interface additionally (to the interface declaration) throws some RuntimeException - which is legal - quick fix will add a new method when run the next time. However, there is no error indocatur until something changes in the interface (eg a new method is added). After qui... | 2005-10-25 10:52:02 | 1,130,250,000 | verified fixed | 2c22b4c | 1,131,980,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility2.java | JDT |
2,932 | 115,460 | Bug 115460 [key binding] Move keybindings for word caret moving to dialogAndWindow context | null | 2005-11-08 06:31:54 | 1,131,450,000 | resolved wontfix | 4f60e6c | 1,131,740,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TextFieldNavigationHandler.java | JDT |
2,933 | 115,902 | Bug 115902 [content assist] Content assist in empty method parameter list inserts method again | I20051108-1011 public class Try { void m() { new String(); } } Put caret to after "new String(" and press Ctrl+Space Expected: proposals for constructors Was: new String(String|); | 2005-11-10 15:26:50 | 1,131,650,000 | verified fixed | 2a1b9db | 1,131,710,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaMethodCompletionProposal.java | JDT |
2,934 | 111,056 | Bug 111056 [refactoring] Move Member Type to New File does not make private member visible | null | 2005-09-29 09:20:09 | 1,128,000,000 | resolved fixed | 4ca6272 | 1,131,700,000 | org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test34/in/A.java org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test34/out/A.java org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test34/out/SomeClass.java org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerTo... | JDT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.