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 |
|---|---|---|---|---|---|---|---|---|---|---|
3,635 | 84,269 | Bug 84269 [implementation] Leak: Java Editor preference page: listener in SmartTypingConfigurationBlock | N20050202-0010 The SmartTypingConfigurationBlock adds a property change listener to the JavaPlugin combined preference store. This listener is not removed --> results in leakage for each open close of the Java preference pages. Test case: Window>Preferences>Java>Editor For each open close the state associated with the ... | 2005-02-02 15:24:10 | 1,107,380,000 | resolved fixed | b0604f1 | 1,107,430,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/SmartTypingConfigurationBlock.java | JDT |
3,636 | 82,950 | Bug 82950 Extract local fails on switch statement [refactor] | I20050112-1200 case IJavaElement.METHOD: { final IMethod methodReferenced= (IMethod) referenced; final ICompilationUnit referencedUnit= methodReferenced.getCompilationUnit(); switch (referencingType) { case IJavaElement.COMPILATION_UNIT: final ICompilationUnit unit= (ICompilationUnit) referencing; if (referencedUnit !=... | 2005-01-17 04:54:06 | 1,105,960,000 | resolved fixed | 128df45 | 1,107,360,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java | JDT |
3,637 | 83,593 | Bug 83593 Rename of enum type does not update constructor / throws ClassCastException | I20050118-1015 + jdt.core v_532b ICompilationUnit#rename(..) of an enum type does not update constructors. For consistency with rename of a class, enum constructors should be updated too. After uncommenting the enum constant TURQUOISE, renaming Color yields the ClassCastException below. public enum Color { PINK, // TUR... | 2005-01-25 04:47:47 | 1,106,650,000 | verified fixed | 79363df | 1,107,290,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/RenameTypeTests.java | JDT |
3,638 | 81,421 | Bug 81421 Closing a project with open editors leaves stale elements in Package Explorer's working set layout | I20041216-0800 Closing a project with open editors leaves stale elements in Package Explorer's working sets mode. This only affects CUs not normal resources. | 2004-12-16 11:46:31 | 1,103,220,000 | resolved fixed | ad555ea | 1,107,280,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/HistoryWorkingSetUpdater.java | JDT |
3,639 | 84,004 | Bug 84004 OpenCloseWorkingSetAction actions visible when no selection | Version: 3.1.0 Build id: I20050125-0800 When there is no selection in the package explorer (when you have collapsed a tree item for example) the context menu contains actions for "open project", "open projects" and "close projects". The only one that does anything is "open project", although it shouldn't be visible. Op... | 2005-01-30 03:43:31 | 1,107,070,000 | resolved fixed | 35d2583 | 1,107,280,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/OpenCloseWorkingSetAction.java | JDT |
3,640 | 81,140 | Bug 81140 [nls tooling] Too many false positives when navigating from a key in properties file editor to Java editor | I200412142000 Currently properties key references are determined by a text search. The text search results should be filtered, such that the final results contain only matches from string partitions. | 2004-12-15 09:10:09 | 1,103,120,000 | verified fixed | 163e4ef | 1,107,280,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertyKeyHyperlink.java | JDT |
3,641 | 77,502 | Bug 77502 Change method signature dialog displays error status on unchanged settings [refactoring] | 200411010800: Steps to reproduce - Invoke change method signature on a method with a parameter - Click on the parameter type until the table cell is in edit mode - Leave without any changes -> Status dialog is showing an error status | 2004-11-02 13:15:13 | 1,099,420,000 | resolved fixed | 6349992 | 1,107,270,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeParametersControl.java | JDT |
3,642 | 82,507 | Bug 82507 Jar creation wizard omits directory entries | Below is email from the customer working on WSAD. I have recreated this behaviour on Eclipse 2.1.1 and 3.0 on Windows 2000 I have viewed the jar files in hex and validated that the Java jar command actually puts additional entries in the .jar compared to Eclipse/WSAD. Both the customer and I believe the Java JAR spec d... | 2005-01-10 15:33:55 | 1,105,390,000 | resolved fixed | 6918e0c | 1,107,260,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/jarpackager/JarPackageData.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/jarpackager/JarWriter.java | JDT |
3,643 | 84,021 | Bug 84021 StackOverflow in TypeVariable#getPrettySignature(..) for recursive type variable definition | I20050126-0800 StackOverflow in TypeVariable#getPrettySignature(..) for recursive type variable definition. E.g. try to print the return type of Collections.min(..), which is "<T extends Object & Comparable<? super T>>". The problem is that "T" in "<? super T>" is not just printed as "T", but it is erroneously expanded... | 2005-01-31 03:52:10 | 1,107,160,000 | resolved fixed | 4f99622 | 1,107,260,000 | org.eclipse.jdt.ui.tests.refactoring/resources/TypeEnvironment/TestProject/signature/TestTypeVariables.java org.eclipse.jdt.ui.tests.refactoring/resources/TypeEnvironment/TestProject/signature/TestWildcardTypes.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/typeconstraints/PrettySignature... | JDT |
3,644 | 84,070 | Bug 84070 IAE in new Java Project wizard when giving name of folder without a linked folder location | I20050126-0800 + ZRH-plugins from 20050128 - New workspace, New Java Project wizard, use project as source folder - Click Next, click toolbar icon "Link additional Source to Project" - Press tab and enter a "Folder name" without specifying a "Linked folder location" On each keystroke, the log gets one of these: !ENTRY ... | 2005-01-31 13:20:56 | 1,107,200,000 | resolved fixed | 7e2b2b1 | 1,107,250,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/newsourcepage/LinkFolderDialog.java | JDT |
3,645 | 83,397 | Bug 83397 Problem with inheritance from Generics [code generation] | Hi, I used the class wizard to create a new class (HashMapTest) that extends HashMap, with "Constructors from superclass" selected. The wizard created this constructor: public HashMapTest(Map< ? extends K, ? extends V> arg0) { super(arg0); } the compiler gives errors that K and V cannot be resolved into types. The same... | 2005-01-21 09:39:23 | 1,106,320,000 | resolved fixed | 3f00cc5 | 1,107,170,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewAnnotationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewClassWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewEnumWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewInterfaceWizardPage.java org.eclipse.jdt.ui/u... | JDT |
3,646 | 83,952 | Bug 83952 Unconventional order of add-remove-edit buttons in Change Method Signature | I20050126-0800: The order of the buttons in the parameters tab is currently: Add Edit... Up Down Remove The 'Remove' button should be placed directly after the 'Add' button | 2005-01-28 12:31:00 | 1,106,930,000 | resolved fixed | 42eee5f | 1,107,170,000 | org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testVararg01_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testVararg01_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testVararg02_in.java org.eclipse.jdt.ui.tests.refact... | JDT |
3,647 | 83,523 | Bug 83523 Refactoring: Create package in move dialog is blocking | 20050124 - Select a compilation unit, choose Refactor -> Move - In the dialog select a source folder and press 'Create folder...' - Enter a package name and press ok - Blocked dialog shows up. 'Operation blocked by background work', but no background operation visible It seems the operation blocked itself out. The 'cre... | 2005-01-24 05:03:26 | 1,106,560,000 | verified fixed | 3929403 | 1,106,910,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewElementWizard.java | JDT |
3,648 | 83,729 | Bug 83729 Enum constructor: should have private method icon | null | 2005-01-26 12:28:49 | 1,106,760,000 | resolved fixed | baab00a | 1,106,850,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementImageProvider.java | JDT |
3,649 | 81,098 | Bug 81098 Quick Fix 'Change workspace compliance settings to 5.0' with project specific settings [quick fix] | M4 test pass. The Quick Fix 'Change workspace compliance settings to 5.0' does not make much sense when the project already has project specific settings. Either the Quick Fix should not appear when the project overrides workspace settings, or the user should be asked whether the project should take over workspace sett... | 2004-12-15 06:12:23 | 1,103,110,000 | resolved fixed | bcb235f | 1,106,820,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReorgCorrectionsSubProcessor.java | JDT |
3,650 | 83,697 | Bug 83697 [misc] Inline tags are not rendered when in the content of a block tag | Version: 3.1.0 Build id: I20050125-0800 The javadoc manual states that is possible to use inline tags (eg {@link}) in the content of block tags (such as @param). This simple case renders as "foo {@link String bar}" when it should be "foo bar": /** * @param foo {@link String bar} */ public void fred(String foo){} | 2005-01-26 05:48:40 | 1,106,740,000 | resolved fixed | b00d5c6 | 1,106,760,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JavaDoc2HTMLTextReaderTester.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDoc2HTMLTextReader.java | JDT |
3,651 | 81,181 | Bug 81181 [5.0] [refactoring] change method signature on enum constructor | 20041215 changing the signature of the 'Enu' contructor results in a NPE public enum Enu { A(1, 3), B(1, 3), C(1, 3); public Enu(int i, int j) { } } java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring$DeclarationUpdate.getFullTypeName(ChangeSignatureRefacto... | 2004-12-15 10:51:26 | 1,103,130,000 | resolved fixed | 4a3e8d8 | 1,106,740,000 | org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testEnum01_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testEnum01_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testEnum02_in.java org.eclipse.jdt.ui.tests.refactoring/... | JDT |
3,652 | 80,098 | Bug 80098 newTypeHierarchy(IRegion,...) should not be constrained to an IJavaProject | As Dirk has discussed with Philippe and Jerome, we need API to build a supertypes hierarchy on an arbitrary IRegion that crosses project boundaries. This API is required for the new implementation of the RippleMethodFinder. Currently, IJavaProject has methods newTypeHierarchy(IRegion, IProgressMonitor) newTypeHierarchy... | 2004-12-03 08:41:26 | 1,102,080,000 | verified fixed | 0751ec4 | 1,106,650,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RippleMethodFinder2.java | JDT |
3,653 | 82,242 | Bug 82242 JavaElementImageProvider gives wrong adornments for annotations/enums | I20050104-1600 In general, the JavaElementImageProvider also shows "implicit" element modifiers. Here's an example showing where types and members are missing adornments: class C { } interface MyInt { int X= 12; } @interface MyTag { // missing "default access" adornment int X= 12; // missing "static final" adornment } ... | 2005-01-05 09:59:41 | 1,104,940,000 | resolved fixed | 9f331be | 1,106,590,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JdtFlags.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/i... | JDT |
3,654 | 73,535 | Bug 73535 [1.5][model] Method to validate type parameter names missing in JavaConventions | Build I200409011200: For consistency, class JavaConventions should provide a method to syntactically validate the name of a type parameter | 2004-09-09 08:35:57 | 1,094,730,000 | verified fixed | b881b70 | 1,106,580,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java | JDT |
3,655 | 20,644 | Bug 20644 [hovering] Javadoc hover cannot handle link tag | null | 2002-06-19 09:52:43 | 1,024,490,000 | resolved fixed | 019de7c | 1,106,580,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JavaDoc2HTMLTextReaderTester.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDoc2HTMLTextReader.java | JDT |
3,656 | 83,476 | Bug 83476 NPE setting inclusion/exclusion filters for build path [build path] | Version: 3.1.0 Build id: I20050118-1015 When you "remove" an inclusion or exclusion filter a NPE is thrown when you try to edit the filter. 1. Open java build path properties 2. select libraries tab 3. select an inclusin or exclusion filter 4. press the remove button 5. press the edit button (nothing happens, NPE logge... | 2005-01-21 20:58:38 | 1,106,360,000 | resolved fixed | 860ef4c | 1,106,560,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CPListElement.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/LibrariesWorkbookPage.java | JDT |
3,657 | 83,440 | Bug 83440 NullPointerException in refactoring preview dialog | When refactoring a private member class into a top-level class using "Move Member Type to New File...", in the preview dialog, clicking on the name of the class in the preview (to see the detailed changes), or any member of that class nested under it in the tree, causes a NullPointerException. A test case that fails on... | 2005-01-21 14:36:44 | 1,106,340,000 | resolved fixed | b538789 | 1,106,500,000 | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/TextChange.java | JDT |
3,658 | 82,536 | Bug 82536 Surround with doesn't use OLD ast rewrite anymore | therefore the following // SurroundWithTryCatchRefactoring still uses modifying rewrite - pass in a copy ASTParser parser= ASTParser.newParser(ASTProvider.AST_LEVEL); parser.setSource(cu); parser.setResolveBindings(true); parser.setFocalPosition(selectedNode.getStartPosition()); CompilationUnit newRoot= (CompilationUni... | 2005-01-11 05:00:33 | 1,105,440,000 | resolved fixed | 9d09640 | 1,106,480,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java | JDT |
3,659 | 82,475 | Bug 82475 SurroundWithTryCatchRefactoring modifies source ranges | 20050110 SurroundWithTryCatchRefactoring still modifies the AST using ASTNodes.expandRange | 2005-01-10 10:01:53 | 1,105,370,000 | resolved fixed | e8e39a5 | 1,106,420,000 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/parameterName_out/A_test906.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/validSelection_in/A_test366.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/Extrac... | JDT |
3,660 | 73,975 | Bug 73975 Search View displays potential match instead of accurate one [search] | null | 2004-09-15 07:53:27 | 1,095,250,000 | resolved fixed | fa051d1 | 1,106,330,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/PostfixLabelProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchLabelProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SortingLabelProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaUILabe... | JDT |
3,661 | 82,504 | Bug 82504 [compiler][1.5] ClassCastException when parsing a CastExpression between an array type and a type variable | I20050104-1600 + jdt.core v_530a class F<T> { Object[] objectArr; void foo() { T x= (T) objectArr; } } Error 2005-01-10 21:22:57.662 An internal error occurred during: "Java AST creation". java.lang.ClassCastException at org.eclipse.jdt.internal.compiler.ast.Expression.checkCastTypesCompatibility(Expression.java:300) a... | 2005-01-10 15:28:49 | 1,105,390,000 | verified fixed | 1318ffe | 1,106,330,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/TypeRulesTest.java | JDT |
3,662 | 83,041 | Bug 83041 Error inlining with overlapping edits [refactoring] | Build: I20050112 Test case: public class A { public static String foo(String s) { return s; } } class C { void bar() { System.out.println(A.foo(A.foo("hello"))); } } Run Refactor > Inline on A.foo(). An error occurs: org.eclipse.text.edits.MalformedTreeException: Overlapping text edits at org.eclipse.text.edits.TextEdi... | 2005-01-17 17:45:19 | 1,106,000,000 | resolved fixed | e8accc1 | 1,106,320,000 | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestNestedCalls.java org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_in/TestTwoCalls.java org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/simple_out/TestNestedCal... | JDT |
3,663 | 76,087 | Bug 76087 [navigation] Initial Quick Outline size too small | 20041012 When you use the quick outline with 'Rememeber size and location' turned off, the initial size is of the dialog is too small and not usable as is. Note that I had to turn off 'Rememeber size and location' for multi monitor problems | 2004-10-12 11:42:46 | 1,097,600,000 | verified fixed | 39c064c | 1,106,220,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java | JDT |
3,664 | 78,003 | Bug 78003 [navigation] Quick outline is initially to large | Build 20041105 Linux-GTK The Quick outline (ctrl+o in the Java editor) window is enormous on Linux. What have you guys been feeding it? :-) | 2004-11-05 18:12:25 | 1,099,700,000 | resolved fixed | 5d17bca | 1,106,220,000 | 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 |
3,665 | 80,345 | Bug 80345 [navigation] Expand Selection|Enclosing Element should work on boundaries | Take this example (the caret is at the |): updateTable(keepSameLeavesVisible|, true); When you now invoke Expand Selection|Enclosing Element, the whole line gets selected, but I want keepSameLeavesVisible to be selected. The reason is, that I just from word to word using Ctrl-Left/Right and this stops at the word begin... | 2004-12-07 04:24:01 | 1,102,410,000 | resolved fixed | 2ec40a1 | 1,106,180,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/actions/StructureSelectionActionTests.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/Selection.java | JDT |
3,666 | 75,465 | Bug 75465 [5.0][hovering] JavaSourceHover should handle type parameters | null | 2004-10-01 11:33:43 | 1,096,640,000 | resolved fixed | da62f6a | 1,106,150,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaSourceHover.java | JDT |
3,667 | 82,992 | Bug 82992 NullPointerException during "pull up" refactoring | In 3.1M4, NullPointerException occurs in JDT when attempting a Refactoring "pull up" operation. Here is the error log: !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 2005-01-17 09:01:23.765 !MESSAGE Internal Error !STACK 0 java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalC... | 2005-01-17 12:27:12 | 1,105,980,000 | resolved fixed | 9a38ec7 | 1,106,130,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MemberVisibilityAdjustor.java | JDT |
3,668 | 83,161 | Bug 83161 Can't access public field from private subclass | Since I20050118 this code does not compile anymore. The access to 'publicField' is marked as 'not visible' public class A { private static class PrivateInner { public int publicField; } public static class PublicInner extends PrivateInner { } } class B { void foo(Object o) { A.PublicInner x; int i= ((A.PublicInner)o).p... | 2005-01-19 04:03:50 | 1,106,130,000 | verified fixed | 878a47d | 1,106,130,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ChangeMethodSignatureProposal.java | JDT |
3,669 | 81,083 | Bug 81083 [preferences] Mark Occurences enablement not adhered to | I200412142000 - open preference page with Mark Occurences preferences - enable Mark Occurences - Apply - Restore Defaults - OK -> toolbar shows Mark Occurences as 'enabled', editor marks occurences -> on preference page the preference is disabled | 2004-12-15 05:41:56 | 1,103,110,000 | resolved fixed | 3c5b66e | 1,105,710,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ToggleMarkOccurrencesAction.java | JDT |
3,670 | 82,832 | Bug 82832 move static member conent assist failure if target in same package (name not fully qualified) | using the move static memeber refactoring, try move a constnt filed form one class to another in the same package after typing the firts letters of the target class, invoke content assist the target class will be pasted in the text field without the package prefix and the dialog will comaplain that a fully qualified na... | 2005-01-14 05:08:30 | 1,105,700,000 | resolved fixed | 26cfdfe | 1,105,710,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveStaticMembersProcessor.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveMembersWizard.java | JDT |
3,671 | 82,783 | Bug 82783 Javadoc wizard "broken" [javadoc] | Build I20050111-0800 The immediately visible problem is, that the javadoc wizard ignores an access modifier which may be specified on the first page. This is because the temporary parameter file for javadoc contains "... -classpath -private ..." - the classpath is missing. The problem could be, that in org.eclipse.jdt.... | 2005-01-13 15:47:46 | 1,105,650,000 | resolved fixed | 97df667 | 1,105,700,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocOptionsManager.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocTreeWizardPage.java | JDT |
3,672 | 81,816 | Bug 81816 Missing org.eclipse.jdt.text* performance results on Linux and Windows | In build N20041222-0010, there are a number of scenarios which do not have results available (i.e. n/a). I assume this is a problem based on the assumption that the performance tests run the same way on Linux and Windows. | 2004-12-22 14:55:00 | 1,103,750,000 | resolved fixed | 41dacaf | 1,105,700,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/performance/InvocationCountPerformanceMeter.java org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/performance/TypingInvocationCountTest.java | JDT |
3,673 | 82,356 | Bug 82356 NPE in surround with try/catch refactoring [refactoring] | Build: I20050104 I found several instances of the following stack trace in my log at the end of today. I don't know exactly what I was operating on at the time. I never noticed any error dialogs or other side-effects. Hopefully the stack alone is useful: java.lang.NullPointerException at org.eclipse.jdt.internal.corext... | 2005-01-06 18:20:46 | 1,105,050,000 | resolved fixed | 8dfb4a4 | 1,105,640,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/CodeScopeBuilder.java | JDT |
3,674 | 82,655 | Bug 82655 Search dialog does not store more than 6 pattern strings | Using build I200401110800. Perform 6 different java searches in a brand new workspace. Now open search dialog, select Java tab and enter a string to search ("XXXXXXX" for example) and perform the search (whatever kind of search...). Now reopen the dialog and look at previous search. I expect to see "XXXXXXX" in the lis... | 2005-01-12 06:46:49 | 1,105,530,000 | verified fixed | 9f26900 | 1,105,530,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java | JDT |
3,675 | 38,570 | Bug 38570 Source generation wizards; Add button to open preference page | M1 The Getter/Setter wizard should offer an access to the Code Generation Preference page: Field prefix/suffix, getter/setter body content, method comment template Add delegate, constructor and override could have a button for the method comment template The code to open a preference page programatically can be copied ... | 2003-06-06 07:10:40 | 1,054,900,000 | resolved fixed | 8ffc052 | 1,105,470,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/OverrideMethodDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeTemplateBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeTem... | JDT |
3,676 | 77,933 | Bug 77933 [5.0] Adding unimplemented methods with quick fix produces unknown types | Using I200411042000 In this example: public class X implements Set<String>{} Adding unimplemented methods with QuickFix also produces methods like: public T[] toArray(T[] a) { // TODO Auto-generated method stub return null; } Where type T cannot be resolved. | 2004-11-05 06:40:05 | 1,099,650,000 | resolved fixed | f132372 | 1,105,460,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/RemoveDeclarationCorrectionProposal.java | JDT |
3,677 | 68,586 | Bug 68586 [implementation] Reconciling should be more robust | null | 2004-06-25 06:37:22 | 1,088,160,000 | verified fixed | 09b27fd | 1,105,460,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java | JDT |
3,678 | 82,173 | Bug 82173 [5.0][typing] Angle Bracket<> auto closing should work in more situations | I20041221-0800 Angular Bracket auto closing does not work for a field type. In this example: void m() { HashMap hm= new HashMap(); ... ... an opening bracket < is - automatically closed when inserted between HashMap and () - not automatically closed when inserted between HashMap and hm. It should be closed in both case... | 2005-01-04 14:32:15 | 1,104,870,000 | resolved fixed | 0d35030 | 1,105,440,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/BracketInserterTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaHeuristicScanner.java | JDT |
3,679 | 79,419 | Bug 79419 [Preferences] Need a link component | We need to create a some sort of component for preference pages to use for linking. We should look into pushing down the org.eclipse.ui.views.framelist mechanism possibly. | 2004-11-24 12:48:25 | 1,101,320,000 | resolved fixed | 43abacb | 1,105,380,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/AbstractConfigurationBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CHyperLink.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CHyperLinkText.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/Java... | JDT |
3,680 | 82,417 | Bug 82417 Using uninitialized field instead of parameter in MethodStubsSelectionButtonGroup | The constructor of org.eclipse.jdt.internal.junit.wizards. MethodStubsSelectionButtonGroup contains this line: if (fButtonsStyle == SWT.RADIO) { Since fButtonsStyle is not initialized from the parameter buttonsStyle at that moment, what actually was meant is this: if (buttonsStyle == SWT.RADIO) { BTW: I found this bug ... | 2005-01-08 05:15:32 | 1,105,180,000 | resolved fixed | 29778a4 | 1,105,350,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/MethodStubsSelectionButtonGroup.java | JDT |
3,681 | 82,394 | Bug 82394 [preferences][templates] NPE trying to edit code templates | build i0104-1600 I went into my preferences and tried to change my code template for a new Java file (change the copyright to be 2005 now) but clicking on the Edit button did nothing. When I checked my log file, I found the following exception: !ENTRY org.eclipse.ui 4 0 2005-01-07 13:36:38.677 !MESSAGE java.lang.NullPo... | 2005-01-07 13:39:14 | 1,105,120,000 | verified fixed | c9264b3 | 1,105,350,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/EditTemplateDialog.java | JDT |
3,682 | 82,330 | Bug 82330 IAE exception in Inline Method [refactoring] | 20050104: Steps to reproduce: private static boolean isEF(IField iField) throws JavaModelException { return JdtFlags.isPublic(iField) && JdtFlags.isStatic(iField) && JdtFlags.isFinal(iField); } private static boolean isEMe(IMember iMember) throws JavaModelException { switch (iMember.getElementType()) { case IJavaElemen... | 2005-01-06 11:09:06 | 1,105,030,000 | resolved fixed | e74b248 | 1,105,110,000 | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/controlStatement_in/TestEnhancedForOne.java org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/controlStatement_in/TestEnhancedForTwo.java org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestC... | JDT |
3,683 | 82,219 | Bug 82219 Drag and drop of method to Call Hierarchy logs assertion failure | I20050104-1600 - close all instances of the Call Hierarchy view - open Call Hierarchy view - drag and drop an IMethod to the Call Hierarchy -> Assertion failure below in log (but call hierarchy still shows up) - drag and drop another IMethod to the Call Hierarchy -> The drop is only accepted on the sash line. Previousl... | 2005-01-05 04:58:30 | 1,104,920,000 | resolved fixed | 49947d2 | 1,105,110,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dnd/BasicSelectionTransferDragAdapter.java | JDT |
3,684 | 82,342 | Bug 82342 java search filters dialog broken layout on GTK [search] | the Java serach filters dialog has a broken layout on linux GTK - see screenshot: the first scrollable area with checkbopxes for selecting matches to exclude is way too short. this happened with 3.1 M3 and happens still with 3.1M4. | 2005-01-06 12:42:03 | 1,105,030,000 | resolved fixed | 04e050d | 1,105,110,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FiltersDialog.java | JDT |
3,685 | 82,315 | Bug 82315 [nls tooling] Link to properties file does not work if file is open(ed) in text editor | I20050104-1600 The editor is opened but the key is not found. | 2005-01-06 07:15:24 | 1,105,010,000 | resolved fixed | 27f5c6b | 1,105,090,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlink.java | JDT |
3,686 | 81,128 | Bug 81128 [nls tooling] Accessor class detection constrained to those generated by NLS Wizard | 200412142000: Steps to reproduce: - Open "HelpSearchPage.class" from binary project "org.eclipse.help.ide" -> The accessor class HelpIdeResources uses an unconventional resource bundle field. Search for static fields of type ResourceBundle whose name contains "bundle" independent of letter case. | 2004-12-15 08:34:04 | 1,103,120,000 | resolved fixed | 6b407ec | 1,105,030,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/nls/NLSHintHelperTest.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/AccessorClassReference.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSHint.java org.eclipse... | JDT |
3,687 | 81,091 | Bug 81091 Extract Interface shows duplicated warning message for unconventional type names | 200412142000: Steps to reproduce: - Extract new interface named "t" | 2004-12-15 05:57:05 | 1,103,110,000 | resolved fixed | 66051c9 | 1,105,020,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceRefactoring.java | JDT |
3,688 | 82,311 | Bug 82311 [correction] Add '@throws' tag does not insert the exception type name | Version: 3.1.0 Build id: 200412210800 When you have javadoc compiler checks turned on and have a method like the following the quick fix to add a throws tag does not insert the name of the exception. The add all missing tags quick fix does add the exception type so the information should be available. I did figure out ... | 2005-01-06 05:18:51 | 1,105,010,000 | resolved fixed | 2e3f488 | 1,105,010,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/JavadocQuickFixTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavadocTagsSubProcessor.java | JDT |
3,689 | 78,698 | Bug 78698 [format] Space before ? should default to false | 200411111200 Not to be changed for I20041116. The code formatter setting for White Space > Insert Space > Before question mark should default to false for all profiles. Was: List< ? extends Number> Expected: List<? extends Number> | 2004-11-16 04:25:08 | 1,100,600,000 | verified fixed | 423bc36 | 1,104,950,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedMethodsQuickFixTest.java | JDT |
3,690 | 81,146 | Bug 81146 Move non-static member annotation to new file creates illegal annotation [refactoring] [5.0] | null | 2004-12-15 09:18:31 | 1,103,120,000 | resolved fixed | 10757cb | 1,104,950,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | JDT |
3,691 | 81,143 | Bug 81143 [refactoring] pull up reports unnecessary visibility problems | 20041215 class A { } class B extends A { void foo(List<String> args) { } } class C extends A{ void foo(List<String> args) { } } -> pull up 'B.foo' reports: 'method foo in C has visibility less than protected which will result in compiler errors' package visibility is ok here too | 2004-12-15 09:13:35 | 1,103,120,000 | resolved fixed | 725d263 | 1,104,950,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/PullUpTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/PullUpRefactoring.java | JDT |
3,692 | 81,138 | Bug 81138 [refactoring] push down ignores method type parameters | 20041215 class A { <X, Y> void foo() { } } class B extends A { } -> push down 'foo' results in: class A { } class B extends A { void foo() { } } Also note the unneccesary (3) spaces in front of the closing bracket | 2004-12-15 09:07:32 | 1,103,120,000 | resolved fixed | b39627f | 1,104,940,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/HierarchyRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/PullUpRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/P... | JDT |
3,693 | 79,698 | Bug 79698 [jobs] suspend/resume causes concurrency failures | null | 2004-11-29 14:14:54 | 1,101,760,000 | resolved fixed | c763bb0 | 1,104,940,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/RefactoringExecutionHelper.java | JDT |
3,694 | 77,589 | Bug 77589 ResourceException while moving CUs | I200411022000 Found the following exceptions in the log after moving CUs from package to package. 1.5 support is enabled, I was testing static imports. !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 2004-11-03 11:41:06.154 !MESSAGE Internal Error !STACK 1 org.eclipse.jdt.core.JavaModelException[966]: org.eclipse.core.in... | 2004-11-03 06:21:30 | 1,099,480,000 | resolved fixed | 234671c | 1,104,940,000 | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/UIPerformChangeOperation.java org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/WorkbenchRunnableAdapter.java org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/ui/refactoring/RefactoringWizardOpenOperation.java | JDT |
3,695 | 81,878 | Bug 81878 cannot edit working sets from package explorer [package explorer] | 3.1 M4 1. open pkg explorer and select a working set. 2. run "edit active working set" from the pkg explorer view menu. 3. select another project to include in the active working set. 4. selection finish. The dialog doesn't close and the pkg explorer doesn't update. If you cancel the dialog, turn off the working set fi... | 2004-12-23 15:39:23 | 1,103,830,000 | verified fixed | c1d193e | 1,104,930,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/ViewActionGroup.java | JDT |
3,696 | 81,589 | Bug 81589 [1.5] 3.1M4 static import of enum [organize import] | when there is a switch/case statement involving typesafe enum constants, organize imports adds 'static import...' statements... but then compiler throws warning saying that import is never used, although it actually is.... so its a spurious compiler warning. | 2004-12-18 08:28:31 | 1,103,380,000 | resolved fixed | 1f792f4 | 1,104,920,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ImportOrganizeTest.java | JDT |
3,697 | 82,167 | Bug 82167 [typing] Smart Typing Preferences: Plural of "parenthesis" is "parentheses" | Smart Typing Preferences says: Typing > Automatically close... - Strings - Brackets and parenthesis' - Braces [..] The correct plural of "parenthesis" is "parentheses". I would find it more convenient, if the characters of the bracket classes would also be part of the preference names, e.g.: - (Parentheses), [square] a... | 2005-01-04 13:42:48 | 1,104,860,000 | resolved fixed | f184586 | 1,104,920,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | JDT |
3,698 | 82,123 | Bug 82123 [refactoring] StackOverflowError in move instance method | I20041221-0800-gtk No steps yet, does not always happen. Will add steps as soon as I know more. !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 2005-01-04 10:44:16.953 !MESSAGE Internal Error !STACK 0 java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:303) at org... | 2005-01-04 05:37:16 | 1,104,840,000 | verified fixed | a4e3d80 | 1,104,920,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInstanceMethodProcessor.java | JDT |
3,699 | 81,135 | Bug 81135 Organize Imports throws away annotation imports [5.0] | M4 test pass (I20041214-2000-gtk) 1. have this code: package com.example.m4testing; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; public class Test { @Documented @Re... | 2004-12-15 09:00:24 | 1,103,120,000 | resolved fixed | 1de9da0 | 1,104,860,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/ImportOrganizeTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/ImportReferencesCollector.java | JDT |
3,700 | 81,130 | Bug 81130 move method prompts for parameter name even if not needed | M4 test pass (I20041214-2000-gtk) 1. have the type below 2. move 'method' to 'Inner' note that method does not reference anything from type 'Test', and the refactoring correctly does not introduce a parameter to reference the original type. The dialog that comes up first still prompts me for a name of that parameter, w... | 2004-12-15 08:35:44 | 1,103,120,000 | resolved fixed | b8f5a53 | 1,104,850,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInstanceMethodProcessor.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodWizard.java | JDT |
3,701 | 81,177 | Bug 81177 [refactoring] switch with enums: disable extract refactorings | 20041215 In the following code you can do various extractions on 'A', but most fail as it seems that it's not allowed to have something else but the enum constant private void foo(Enu e) { switch (e) { case A: break; } } | 2004-12-15 10:46:25 | 1,103,130,000 | resolved fixed | a5d4e8c | 1,104,850,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java | JDT |
3,702 | 82,089 | Bug 82089 Preview for whitespace before/after question mark should show unbound wildcard [formatter] | null | 2005-01-03 08:50:47 | 1,104,760,000 | resolved fixed | 4f8b94b | 1,104,770,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceOptions.java | JDT |
3,703 | 80,126 | Bug 80126 [assist] CompletionRequestor.setIgnored should allow POTENTIAL_METHOD_DECLARATION | 20041203 The code in CompletionRequestor.setIgnored should be updated as new constants POTENTIAL_METHOD_DECLARATION and METHOD_NAME_REFERENCE are larger than VARIABLE_DECLARATION public final void setIgnored(int completionProposalKind, boolean ignore) { if (completionProposalKind < CompletionProposal.ANONYMOUS_CLASS_DE... | 2004-12-03 12:33:51 | 1,102,100,000 | verified fixed | 9f7978f | 1,104,770,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/JavaTypeCompletionProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/SimilarElementsRequestor.java | JDT |
3,704 | 82,061 | Bug 82061 (3.1M4) Fields of parameterized types don't appear in "generate delegate methods" dialog | Problem dialog found in Source->Generate Delegate Methods... class BugDemo { Comparable<Object> parameterized; // does NOT appear in delegate method generation dialog! Comparable raw; // does appear Integer unparameterized; // does appear } | 2005-01-01 14:44:41 | 1,104,610,000 | resolved fixed | 61f2d60 | 1,104,770,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java | JDT |
3,705 | 81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | 2004-12-15 05:45:08 | 1,103,110,000 | verified fixed | 7664dcc | 1,104,770,000 | org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test10/in/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test10/out/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test11/in/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test... | JDT |
3,706 | 81,625 | Bug 81625 [hovering] Combined Hover does not work in ja_JP locale with NLPack | A combined hover does not work correctly in JavaEditor with NLPack. An opened hover does not display javadoc documents but sources. In org.eclipse.jdt.ui.nl1_3.0.1/plugin_ja.properties sequentialHover=\u6700\u9069\u306A\u5439\u304D\u51FA\u3057 I delete this line, hover works fine. eclipse.buildId=I200406251208 java.ver... | 2004-12-19 20:44:50 | 1,103,510,000 | resolved fixed | 2e288e7 | 1,104,770,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaEditorTextHoverDescriptor.java | JDT |
3,707 | 82,083 | Bug 82083 Configure Workspace Settings... for Code Formatter jumps to Code Style | I20041221-0800 On a java project without project-specific Code Formatter settings, open the "Code Formatter" properties page and press "Configure Workspace Settings..." The "Code Style" preferences page is opened (expected: guess what ;-). | 2005-01-03 05:51:39 | 1,104,750,000 | resolved fixed | 5376dcb | 1,104,760,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeFormatterPreferencePage.java | JDT |
3,708 | 82,041 | Bug 82041 [misc] ClassFileEditor uses generic names for method arguments when source info is available in class file | Version: 3.1.0 Build id: 200412210800 When you open a class file that has no source attachment but has full debugging information the editor does not show the real names of method arguments. 1. Open a class file editor on a class file that does not have a source attachment but has local variable debugging info. 2. Noti... | 2004-12-31 01:45:37 | 1,104,480,000 | resolved fixed | 2d269e3 | 1,104,750,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java | JDT |
3,709 | 81,612 | Bug 81612 Invalid thread access while refactoring | 3.1M4 running Java5, compliance set to 1.4/default Having package foo.bar; public interface IConstant { String FOO = "Foo"; } package foo.bar; public class AClass { } package foo.bar; public class BClass { public static final String FOO = "Foo"; } Moving "FOO" from the Interface to A fails with an invalid thread accesa... | 2004-12-19 12:08:04 | 1,103,480,000 | verified fixed | 0e4b91e | 1,104,750,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveStaticMembersProcessor.java | JDT |
3,710 | 45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | 2003-10-17 06:06:12 | 1,066,390,000 | resolved fixed | 482f5f3 | 1,104,450,000 | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/invalid/TestInterruptedExecutionFlow.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallIn... | JDT |
3,711 | 71,287 | Bug 71287 Reuse editor preference has no effect in tree mode | options -> Reuse editors to show matches in workbench -> search - has no effect | 2004-08-03 10:47:15 | 1,091,540,000 | resolved fixed | 6176aeb | 1,103,820,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchResultPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchEditorOpener.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java | JDT |
3,712 | 45,496 | Bug 45496 Global Search Dialog needs Persistent History Lists | Global Search Dialog should keep persistent history lists. At the moment all settings are lost after worckbench shutdown. I would recommend to limit the number of entries saved to 10. | 2003-10-24 09:40:28 | 1,067,000,000 | resolved fixed | 70f9cd9 | 1,103,810,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java | JDT |
3,713 | 53,641 | Bug 53641 [implementation] IllegalArgumentException: Argument not valid | i20040303 Selected a type in the "Open Type" dialog, and pressed ok. The type was not opened in an editor. Got an error dialog. Title is "Error Executing Command", message is "The command for the key you pressed failed", reason is "Argument not valid". After that, the editor did not redraw anymore, keeping the contents... | 2004-03-03 12:10:59 | 1,078,330,000 | verified fixed | 25e5d22 | 1,103,800,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaSourceViewer.java | JDT |
3,714 | 44,150 | Bug 44150 No Drag and Drop of .class files from Package Explorer | I am working on a GEF application that supports drag and drop of Java classes from the Package Explorer. With source code (.java files) this works fine, but when I try to drag a compiled class (.class from a JAR withtin a project) it seems that the drag doesn't even get initiated. It is possibly, however, to open .clas... | 2003-10-03 15:00:06 | 1,065,210,000 | resolved fixed | bd41b1c | 1,103,800,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgPolicyFactory.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgUtils.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/SelectionTransferDragAdapter.java | JDT |
3,715 | 42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | 2003-09-09 08:38:47 | 1,063,110,000 | resolved fixed | 844425c | 1,103,800,000 | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_in/A_test575.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_in/A_test576.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/loc... | JDT |
3,716 | 36,365 | Bug 36365 Surround w/ try/catch generates unique identifier for exception when it is not needed [refactoring] | null | 2003-04-10 13:26:57 | 1,050,000,000 | resolved fixed | 64df757 | 1,103,710,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/CodeScopeBuilder.java | JDT |
3,717 | 35,866 | Bug 35866 Refactoring doesn't handle resource changes [refactoring] | When you want to refactor and it affect some resources but those resources are read-only. You get a pop up saying they are read-only. when you then change those resources to writable outside of eclipse and click back on the pop-up and try to redo the refactoring you get an unhandled exception: Java Model Exception: Cor... | 2003-03-31 08:26:57 | 1,049,120,000 | resolved fixed | c465be9 | 1,103,710,000 | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/TextFileChange.java org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/Changes.java | JDT |
3,718 | 81,733 | Bug 81733 RefactoringWizardDialog - ErrorPage - action buttons "Next Problem", "Previous Problem" do not work correctly | If a refactoring (checkFinalConditions method) finishes with a refactoring status, that has several entries with different severities, the following situation can happen: Action buttons "Next Problem", "Previous Problem" do not work correctly. (For example the button "Previous" does nothing.) Explanation: There is a bu... | 2004-12-21 09:22:04 | 1,103,640,000 | resolved fixed | 2a044e5 | 1,103,710,000 | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringStatusViewer.java | JDT |
3,719 | 81,505 | Bug 81505 Search Again throws NPE if a search query cannot be rerun | I200412162000 - new workspace, new Java Propject with CU p/A.java: package p; public class A {} - Find identifier occurrences for A - activate the search result view and don't open the context menu - press F5 -> the problem seems to be that the query is rerun although it answers false to canRerun() Error 2004-12-17 12:... | 2004-12-17 06:11:15 | 1,103,280,000 | resolved fixed | b93c3da | 1,103,650,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesSearchQuery.java | JDT |
3,720 | 81,740 | Bug 81740 Package explorer not correctly updated when deleting more than one project | M4 - create two projects X and XX - switch to workingset mode - put both into a working set - select both and delete them observe: one project is still rendered as a closed project. | 2004-12-21 11:56:25 | 1,103,650,000 | resolved fixed | a56eeeb | 1,103,650,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetUpdater.java | JDT |
3,721 | 49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | 2004-01-08 08:05:34 | 1,073,570,000 | resolved fixed | 8e539d2 | 1,103,620,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/formatter/comment/JavaDocTestCase.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/text/comment/CommentRange.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/text/comment/ICommentAttributes.java org.eclipse.jdt.ui/core... | JDT |
3,722 | 67,327 | Bug 67327 [content assist] Method Parameter code assist is not working | Method parameter code assist is not working when method parameters wrapped to more then one line. Ff I format the same code to one line, the code assist works. | 2004-06-15 14:28:48 | 1,087,320,000 | resolved fixed | 8f49313 | 1,103,550,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaParameterListValidator.java | JDT |
3,723 | 75,806 | Bug 75806 [templates] Should be able to look up Templates by ID | Templates added to Eclipse using the extension point org.eclipse.ui.editors. templates have an ID and a name. In a template preference page that is the subclass of org.eclipse.ui.texteditor.templates.TemplatePreferencePage the name of the template is shown to the user, the ID is not. Therefore I would like to internati... | 2004-10-07 11:25:30 | 1,097,160,000 | resolved fixed | b0b3c39 | 1,103,300,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProjectTemplateStore.java | JDT |
3,724 | 60,297 | Bug 60297 [navigation] Find Occurrences: declaration of method parameter is write-access | Find Occurrences: declaration of method parameter is write-access (methods, constructors, anonymous class creation expr, ...). Currently, those are flagged as read-access. | 2004-04-28 14:02:04 | 1,083,180,000 | resolved fixed | 324e525 | 1,103,290,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesFinder.java | JDT |
3,725 | 81,131 | Bug 81131 IllegalArgumentException in SimpleName.setIdentifier when moving vararg method | M4 test pass (I20041214-2000-gtk) 1. have the type below 2. move 'method' to 'Inner' -> get the exception below --------- Test.java -------- package com.example.m4testing; public class Test { static class Inner { private Object fObject; public boolean check() { return true; } public Object get() { return fObject; } pub... | 2004-12-15 08:42:44 | 1,103,120,000 | verified fixed | 0f7bdfd | 1,103,190,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInstanceMethodProcessor.java | JDT |
3,726 | 81,078 | Bug 81078 [preferences] Restore Defaults duplicates list entries | I200412142000 Restore Defaults on Java > Editor > Appearance duplicates the "Appearance color options" entries. | 2004-12-15 05:35:56 | 1,103,110,000 | verified fixed | 57ae10a | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/AbstractConfigurationBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.java org.eclipse.jdt.ui/ui/or... | JDT |
3,727 | 81,082 | Bug 81082 NPE when testing switch to 5.0 quick fix [quick fix] [5.0] | I20041214-2000 I was testing the new quick fix which changes the compliance: added <T> as return type of Logo.paint(Graphics). I pressed the "Run in Background" button on the upcoming dialog. and continued working. When I now try to change the workspace compliance again I always get the NPE. java.lang.NullPointerExcept... | 2004-12-15 05:40:00 | 1,103,110,000 | verified fixed | fd4d8da | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReorgCorrectionsSubProcessor.java | JDT |
3,728 | 81,372 | Bug 81372 Package Explorer working set mode can't be restored anymore | M4 test pass - create project - go into this project - press go up to show all projects again - switch to working set mode - close Eclipe - restart observe: Package explorer comes up in project mode again. Even if you switch to working set mode again the package explorer will be in project mode on every restart. Proble... | 2004-12-16 03:51:42 | 1,103,190,000 | verified fixed | ebe5459 | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java | JDT |
3,729 | 81,329 | Bug 81329 Disable sort member action for enums | Tobias, can you please disable the sort member action for enums. JDT/Core can't fix the problem. | 2004-12-15 16:39:33 | 1,103,150,000 | verified fixed | a89b9d0 | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SortMembersAction.java | JDT |
3,730 | 81,195 | Bug 81195 [spell checking][nls toolsing] Add Quick Fix menu for Properties File editor | 3.1 M4 Candidate I've enabled spell checking and created a .properties file. If my values have spelling mistakes they are underlined, but I can't find a way to see the suggested words. If there quick fix in the properties editors? | 2004-12-15 11:03:20 | 1,103,130,000 | verified fixed | dbd2a21 | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertiesFileEditorActionContributor.java | JDT |
3,731 | 81,070 | Bug 81070 ElementMapper should not use Integer keys computed from System#identityHashCode | null | 2004-12-15 05:11:44 | 1,103,110,000 | verified fixed | bfe6bf2 | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetModel.java | JDT |
3,732 | 80,673 | Bug 80673 Package explorer using working sets does not display source folders correctly on project creation | Using I200412081200 Do the following steps: - Open new java project wizard and enter a name - set the location to the workpace and use the project folder as root - click next - click on "Add folder" and enter a name - on the following dialog, click "no" - click finish We just created a source folder, but the icon displ... | 2004-12-10 05:05:51 | 1,102,670,000 | verified fixed | 1b86745 | 1,103,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/OthersWorkingSetUpdater.java | JDT |
3,733 | 80,912 | Bug 80912 JUnit tests can't be launched with a 1.3 level jvm anymore | In latest 3.1 integration builds the eclipse textrunner doesn't work if you select a 1.3 level jvm for running the test. It crashes for a dependency from IdentityHashMap (java 1.4). Although eclipse need a 1.4 jre, selecting a 1.3 jre from the run/debug configuration should be possible: this is a show stopper for anyon... | 2004-12-14 05:19:49 | 1,103,020,000 | verified fixed | 43616bf | 1,103,190,000 | org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/CustomHashtable.java org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/IElementComparer.java org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java | JDT |
3,734 | 81,161 | Bug 81161 [nls tooling] Hyperlink navigation from ClassFile to .properties finds no key | I200412142000 - import o.e.ui.workbench.texteditor and dependencies as linked projects - open ContentAssistHandler - navigate from one of the two getString(...)s with Ctrl-Click to the properties file -> PropertiesFileEditor opens, but keys are not found | 2004-12-15 10:02:28 | 1,103,120,000 | verified fixed | 2b16141 | 1,103,140,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlink.java | JDT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.