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,835 | 74,801 | Bug 74801 [Progress] Invalid Thread Access in AllTypesCache | I20040921-2000-gtk When importing a type, I go this: org.eclipse.swt.SWTException: Invalid thread access at org.eclipse.swt.SWT.error(SWT.java:2691) at org.eclipse.swt.SWT.error(SWT.java:2616) at org.eclipse.swt.SWT.error(SWT.java:2587) at org.eclipse.swt.widgets.Widget.error(Widget.java:379) at org.eclipse.swt.widgets... | 2004-09-23 12:17:28 | 1,095,960,000 | verified fixed | 33378f9 | 1,099,330,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/AllTypesCache.java | JDT |
3,836 | 72,920 | Bug 72920 InvocationTargetException when in-lining a method [refactoring] [inline method] | Version 3.1.M1. When in-lining: static Logger LOG = Logger.getLogger(MQEnvironmentValueHolder.class); /** * @return */ protected Logger getLOG() { return LOG; } I get: !ENTRY org.eclipse.ltk.ui.refactoring 4 10000 Aug 30, 2004 15:33:58.890 !MESSAGE Internal Error !STACK 0 java.lang.reflect.InvocationTargetException at ... | 2004-08-30 18:39:26 | 1,093,910,000 | resolved fixed | 82c3112 | 1,099,330,000 | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_in/TestExplicitStaticThisFieldReceiver.java org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/receiver_in/TestExplicitStaticThisMethodReceiver.java org.eclipse.jdt.ui.tests.refactoring/resources/InlineMe... | JDT |
3,837 | 76,348 | Bug 76348 'import static' becomes 'import' while renaming package | Using build I20041013. I've following test case: s1/j/l/S.java package s1.j.l; public class S { public final static String out = "out"; public final static String in = "in"; public static class Member { public static int RED = 0; } } s1/B.java: package s1; import static s1.j.l.S.*; public class B { public void foo() { ... | 2004-10-15 08:20:32 | 1,097,840,000 | verified fixed | e6f30bd | 1,099,310,000 | org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testStatic1/in/s1/B.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testStatic1/in/s1/j/l/S.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testStatic1/out/s1/B.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePack... | JDT |
3,838 | 77,314 | Bug 77314 [implementation] Deadlock of text hover presenter with ChangeTypeAction | 20041029 Got the following deadlock after replacing a word in a new class just created by the new type wizard. - The main thread comes from the ChangeTypeAction triggered by a document change event and wants to do a reconcile (not sure if it a good idea to do work in a test selection change event - The text hover is in... | 2004-10-29 12:39:42 | 1,099,070,000 | resolved fixed | 6f5eb4b | 1,099,300,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ChangeTypeAction.java | JDT |
3,839 | 76,649 | Bug 76649 New 'Inexact Argument for Varargs' compiler option | * COMPILER / Reporting Inexact Argument for Varargs Method/Constructor Invocation * When enabled, the compiler will issue an error or a warning whenever a varargs method/constructor is invoked with an inexact * argument (e.g. Class.getMethod(String name, Class ... args ) invoked with arguments ("foo", null)) * with ine... | 2004-10-20 09:13:27 | 1,098,280,000 | resolved fixed | fbcac25 | 1,099,070,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java | JDT |
3,840 | 35,933 | Bug 35933 JUnit package test runner doesn't find empty tests [JUnit] | The JUnit package test runner doesn't run TestCases that don't contain any test* methods themselves (but instead only inherit them). Consider the following example: public class SimpleTest extends TestCase { public void testParser() { Parser p = getParser(); assert(...); } protected Parser getParser() { return new Simp... | 2003-04-01 14:24:53 | 1,049,230,000 | resolved fixed | 98f11eb | 1,099,060,000 | org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/util/TestSearchEngine.java org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/util/TestSearchEngine.java | JDT |
3,841 | 76,764 | Bug 76764 Unqualified class name from content assist in Move refactoring dialog [refactoring] [move] | I20041019 - invoke Move refactoring on some static method in CU1 - use content assist to enter name of CU2 _in the same package as CU1_ -> content assist inserts the unqualified name -> Move refactoring dialog does not allow to continue | 2004-10-21 13:52:19 | 1,098,380,000 | resolved fixed | 741db11 | 1,099,060,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java | JDT |
3,842 | 76,031 | Bug 76031 [search] Unexpected behavior while refactoring member class | Using I200410050800. I have following class in my project: C.java: class C { void method() {} void foo() { method(); } } class CC extends C { void call() { method(); new CC().method(); } void method() {} } I copy it with new name D. I got following class: D.java class D { void method() {} void foo() { method(); } } cla... | 2004-10-11 13:19:54 | 1,097,520,000 | resolved wontfix | b08fef3 | 1,099,060,000 | 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/rename/RenameFieldProcessor.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameMethodProcessor.java o... | JDT |
3,843 | 76,579 | Bug 76579 Formatter setup export: If file exists, overwritten w/o warning [code formatter] | On exporting java code formatter settings: If the selected file already exists, it is overwritten without warning. | 2004-10-19 13:17:57 | 1,098,210,000 | resolved fixed | 678f271 | 1,099,040,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/CodingStyleConfigurationBlock.java | JDT |
3,844 | 77,193 | Bug 77193 Properties File Editor doesn't show QuickDiff hovers | I200410260800 The Properties File Editor doesn't show QuickDiff hovers. | 2004-10-28 10:57:16 | 1,098,980,000 | resolved fixed | 5ea2aea | 1,098,980,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertiesFileSourceViewerConfiguration.java | JDT |
3,845 | 76,643 | Bug 76643 Code Formater UI: Allow multi-selection in Line Wrapping tree | 20041020 To configure the line wrapping settings it is currently necessary to do that separatly for each setting. It would be nice if this could be done once for all or for a subset. The idea would be to allow multiple selection of the tree (including parent nodes) and allow to use the configuration controls on the bot... | 2004-10-20 05:39:19 | 1,098,270,000 | resolved fixed | ffc5e19 | 1,098,980,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/LineWrappingTabPage.java | JDT |
3,846 | 77,083 | Bug 77083 "Move member type to new file" produces extraneous import of even more inner classes [refactoring] | Create a class like this: package foo; public class OuterClass { static class InnerClass{ InnerInnerClass myInnerInner; class InnerInnerClass{ } } } Apply "move member type to new file" on InnerClass. The new InnerClass top level class will get look like this: package foo; import foo.OuterClass.InnerClass.InnerInnerCla... | 2004-10-27 04:41:14 | 1,098,870,000 | resolved fixed | e2dba02 | 1,098,980,000 | org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_40/in/A.java org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_40/out/A.java org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_40/out/Inner.java org.eclipse.jdt.ui.tests.refa... | JDT |
3,847 | 66,843 | Bug 66843 Generate delegate methods dialog doesn't focus on right field [code manipulation] | if you have several fields MyClass c = null; YourClass b = null; Properties properties = null; And you select 'properties' in your text view, right click it and go to 'source'>'Generate delegate methods' then the MyClass type will be shown at the top, completely opened so that all its methods will be shown. the Propert... | 2004-06-12 19:04:20 | 1,087,080,000 | resolved fixed | 3f6a3f4 | 1,098,970,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddDelegateMethodsAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddGetterSetterAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateNewConstructorUsingFieldsA... | JDT |
3,848 | 66,593 | Bug 66593 NPE in JavaDocCompletionProcessor | I am trying to extend the JavaEditor, so I wrote a simple editor that extends CompilationUnitEditor (I wish I could subclass a class that doesn't belong in the internal package, but I don't see any other way). I declare my editor in the plugin.xml, attach it to a particular file extension but when I try to trigger Java... | 2004-06-10 17:02:22 | 1,086,900,000 | verified fixed | 5cebad9 | 1,098,950,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionEvaluator.java | JDT |
3,849 | 76,167 | Bug 76167 Quick FIx: create local variable deletes comment above it | null | 2004-10-13 11:11:48 | 1,097,680,000 | resolved fixed | 7dd440c | 1,098,900,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java | JDT |
3,850 | 76,099 | Bug 76099 Search results unsorted [search] | build I20040930 - with platform-ui module in source, - open type on Action (from org.eclipse.jface.action) - Ctrl+Shift+G - in Search view, choose Flat Layout and Sort By > Parent Name - the results are unsorted (and unstable) For example: org.eclipse.ui.tests.api.IActionBarsTest.java org.eclipse.ui.views.tasklist.Task... | 2004-10-12 12:37:26 | 1,097,600,000 | resolved fixed | 11168bf | 1,098,890,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/NameSorter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ParentSorter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/PathSorter.java | JDT |
3,851 | 76,674 | Bug 76674 Code assist always proposes current type in @see tag | Using build I200410190941. Test case: "IXX.java", "/**\n" + " * @see IYY\n" + " */\n" + "public interface IXX {}", "IYY.java", "public interface IYY {}" In IXX.java, set cursor just after @see IYY and launch completion. Then, you get 2 proposals in the list: IXX.java IYY.java This is not correct, first proposal (curren... | 2004-10-20 12:53:16 | 1,098,290,000 | resolved fixed | 77008be | 1,098,880,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionEvaluator.java | JDT |
3,852 | 77,030 | Bug 77030 NPE in LocalWorkingSetManager | I20041026 After starting Eclipse on an existing workspace and opening the package explorer I get this NPE: !ENTRY org.eclipse.core.runtime 4 2 2004-10-26 18:31:28.646 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.jdt.intern... | 2004-10-26 12:46:26 | 1,098,810,000 | resolved fixed | 9cc13e3 | 1,098,810,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java | JDT |
3,853 | 76,574 | Bug 76574 Refactor inner class of an interface [refactoring] | How to reduce the behavior: =========================== 1) Have a _public_ inner class in a public java interface. The class does _not_ contain the public modifier explicitly, but implicitly the class is public. 2) Select the class name 3) Refactor via "Move Member Type to New File" What results: ============= Everythi... | 2004-10-19 12:31:26 | 1,098,200,000 | resolved fixed | 79d97bf | 1,098,800,000 | org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test24/out/Inner.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | JDT |
3,854 | 76,756 | Bug 76756 Project properties UI: Required projects can not be removed | Once a project has been added to the required projects list, it is impossible to remove this project from the list using the properties UI, because the "Remove" button remains disabled. Furthermore, deleting the childs of this required project (that is "Included: (All)" and "Excluded: "None") leads to the following err... | 2004-10-21 11:45:41 | 1,098,370,000 | verified fixed | 38fc99b | 1,098,450,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/ProjectsWorkbookPage.java | JDT |
3,855 | 76,283 | Bug 76283 [performance] Problems requested twice when opening a Java editor | I20041013 When opening a Java editor, problems are requested once during ICompilationUnit#becomeWorkingCopy and once during ICompilationUnit#reconcile. The IProblemRequestor should be disabled during #becomeWorkingCopy so as to avoid to compute problems (which involves the full resolution of the working copy). | 2004-10-14 12:53:45 | 1,097,770,000 | resolved fixed | 65a3288 | 1,098,360,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/IProblemRequestorExtension.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaReconcilingStrategy.java | JDT |
3,856 | 69,240 | Bug 69240 [reconciling] Editor shows "stale" compilation error | Eclipse has always has a small problem in that occaisionally it would show an error in the editor window (red-squiggly, with a marker) even though the error had been fixed and no longer appeared in the Tasks/Problem view. I usually just type "Space-Backspace" and save the file and it goes away. In 3.0, this is MUCH mor... | 2004-07-03 07:33:27 | 1,088,850,000 | resolved fixed | 314d7d3 | 1,098,350,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaReconciler.java | JDT |
3,857 | 75,432 | Bug 75432 Pull up refactoring leaves unused imports | After using the pull up refactoring on a method, the method is removed from the sub class and put into the super class, but the sub class still has unused imports from before the refactoring. Can the refactoring be enhanced in a way that the imports of the sub class are organized after the refactoring? | 2004-10-01 03:46:47 | 1,096,620,000 | closed fixed | c266f62 | 1,098,280,000 | org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test12/out/B.java org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test4/out/B.java org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/testGenerics12/out/B.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/PullUpTests.... | JDT |
3,858 | 74,022 | Bug 74022 Unsupported major.minor version 49.0 during quick fix. | I use Sun JDK 1.4.2 to run Eclipse 3.1 200409140800 and Sun JDK 1.5.0 RC to run my application. Eclipse is configured to compile for JDK 1.5. I get error message "Unsupported major.minor version 49.0" when I try to use "Add generated serial version ID" quickfix for the following class ------------ package test.cheetah;... | 2004-09-15 17:10:39 | 1,095,280,000 | resolved fixed | f74dcd3 | 1,098,270,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/SerialVersionQuickFixTest.java org.eclipse.jdt.ui/serial support/org/eclipse/jdt/internal/ui/text/correction/SerialVersionComputer.java org.eclipse.jdt.ui/serial support/org/eclipse/jdt/internal/ui/text/correction/SerialVersionMessages.java org.eclipse.jdt.u... | JDT |
3,859 | 45,033 | Bug 45033 Usability: Code Formatter Preferences Page Resizes Poorly | Eclipse 3.0 M4 This is just a single example of a common UI problem that exists in a wide variety of places in Eclipse, not just JDT. If you're going to allow a dialog/window to be resized (which I think you should), then some careful thought needs to go into how the widgets resize. Look at the preferences page for the... | 2003-10-16 14:09:12 | 1,066,330,000 | resolved fixed | bad5794 | 1,098,260,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/LineWrappingTabPage.java | JDT |
3,860 | 72,315 | Bug 72315 Add new code formatter option | null | 2004-08-19 17:17:06 | 1,092,950,000 | resolved fixed | dfa333e | 1,098,200,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/NewLinesTabPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceOptions.java | JDT |
3,861 | 73,984 | Bug 73984 Editing user library jar path after path change does not work [build path] | 1) Create a directory containing jar file 2) Add this jar file to a new user library 3) Rename directory from 1) 4) Update the path to jar file in user libraries (select old jar reference, select new location in browser, open -> path is not updated, but old path is still used | 2004-09-15 10:31:16 | 1,095,260,000 | resolved fixed | d4c8605 | 1,098,190,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/UserLibraryPreferencePage.java | JDT |
3,862 | 76,439 | Bug 76439 Classfile editor: Allow source attachment option for classes in class folders | 20041017 When you open a class file for a class folder that has no source attchment you see a message 'No source available...' but no button that brings you to the source attachment page like it is done for JARs. ClassfileEditor line 225 is too restrictive, the test .isArchive() seems to be too much | 2004-10-17 07:48:08 | 1,098,010,000 | resolved fixed | b115662 | 1,098,090,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java | JDT |
3,863 | 76,363 | Bug 76363 NPE in AdvancedQuickAssistProcessor.getFullyCoveredNodes | null | 2004-10-15 11:35:19 | 1,097,850,000 | resolved fixed | 5cce2be | 1,098,090,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AdvancedQuickAssistProcessor.java | JDT |
3,864 | 35,381 | Bug 35381 Newly added items are not inserted at correct position in package explorer | I20030319 (RC3) On MacOS X: - create new Java project "test" - select project - create folder "A" inside this project Observe: "A" shows up as last child of "test" - collapse tree node "test" - exapnd tree node "test" Observe: now "A" shows up at correct position | 2003-03-20 11:53:28 | 1,048,180,000 | verified fixed | 1ac0e02 | 1,098,000,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementSorter.java | JDT |
3,865 | 69,817 | Bug 69817 Externalize Strings Wizard: should not touch escaped characters [nls] [refactoring] | Eclipse 3.0 Externalize a string containing escaped characters "\r\n\t\f". The cell editor on the table shows only "square" characters insted of the escape sequences. Said characters should not be translated when editing strings. They are (correctly) not changed when written to the .properties file without change. | 2004-07-12 06:18:05 | 1,089,630,000 | resolved fixed | 3952584 | 1,097,770,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java | JDT |
3,866 | 76,242 | Bug 76242 NPE in Unimplemented Methods Completion Proposal | !SESSION Oct 14, 2004 12:22:52.857 eclipse.buildId=I200409300800 java.version=1.4.2_05 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB Command-line arguments: -J-Xmx512m !ENTRY org.eclipse.ui 4 4 Oct 14, 2004 12:22:52.857 !MESSAGE Unhandled event loop exception !ENTRY org.... | 2004-10-14 07:37:36 | 1,097,750,000 | resolved fixed | d207d96 | 1,097,770,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java | JDT |
3,867 | 66,170 | Bug 66170 Different implementation of method override - ctrl+space vs Override/Implement method dialog [code manipulation] | I'm in a class that extends Wizard. Seems strange (wrong) to me that when I type "createp" and ctrl+space in the editor I get: public void createPageControls(Composite pageContainer) { // TODO Auto-generated method stub } But when I use the Source > Override/Implement Methods... to get the dialog and select createContr... | 2004-06-08 12:35:49 | 1,086,710,000 | resolved fixed | 416f1f9 | 1,097,770,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CodeCompletionTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/OverrideCompletionProposal.java | JDT |
3,868 | 49,353 | Bug 49353 Javadoc preference does not indicate bad exe until field is edited. [javadoc] | I upgarded from Sun Java 1.4.2_02 to 1.4.2_03. When I open the Javadoc preference page, the entry fields shows "C:\Java\sun\1.4.2_02\bin\javadoc.exe", which no longer exists but the error icon and message is NOT displayed at the top of the pane. If I edit the field but leave the entry still bogus, THEN the error icon a... | 2003-12-26 17:16:21 | 1,072,480,000 | resolved fixed | f8486b5 | 1,097,590,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocTreeWizardPage.java | JDT |
3,869 | 75,954 | Bug 75954 Changing anything on Launcher blows away JUnit Test Method | null | 2004-10-08 15:32:59 | 1,097,260,000 | resolved fixed | 724dbe7 | 1,097,590,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java | JDT |
3,870 | 75,824 | Bug 75824 [UI] Menu in the package explorer view doesn't work anymore | With Eclipse in Linux/GTK Menu in the package explorer doesn't work anymore. We cannot "select a working set", "filter", "sort" etc... in this view | 2004-10-07 12:40:00 | 1,097,170,000 | resolved fixed | 4a87457 | 1,097,490,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetMenuContributionItem.java | JDT |
3,871 | 73,671 | Bug 73671 [1.5] Signature.getTypeArguments should also tolerate normal types | 20040910 Currently, when using Signature.getTypeArguments on a normal (non-parametrized) type you get a IAE. It would be nicer (and IMO also more correct) to get an empty array | 2004-09-10 10:54:52 | 1,094,830,000 | verified fixed | 0f88a25 | 1,097,250,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/TypeVariableUtil.java | JDT |
3,872 | 75,839 | Bug 75839 [implementation] Export templates doesn't release the file | If you do an export templates from Window->Preferences->Java->Code Style->Code Templates, the file exported into is not released. That means it can't be accessed by anyone else (for example, I tried to use wordpad to look at it and it wouldn't because it was locked). It is only released when you close out Eclipse entir... | 2004-10-07 15:37:21 | 1,097,180,000 | resolved fixed | 5ddeb83 | 1,097,230,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeTemplateBlock.java | JDT |
3,873 | 75,193 | Bug 75193 Add a quick-fix for "'enum' should not be used as an identifier [...]" | Version 3.1.M2. Add a quick-fix for: 'enum' should not be used as an identifier, since it is a reserved keyword from source level 1.5 The quick-fix would do a rename on local variable called 'enum' to 'enumeration'. | 2004-09-28 13:45:59 | 1,096,390,000 | resolved fixed | 5278e81 | 1,097,230,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedNamesAssistProposal.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java | JDT |
3,874 | 69,586 | Bug 69586 [misc] BadLocationException in AbstractLineTracker.getLineNumberOfOffset() | Eclipse 3.0 final Just saw the following exception in my log. I can't tell what I was doing at that time, though. --- snip --- org.eclipse.jface.text.BadLocationException at org.eclipse.jface.text.AbstractLineTracker.getLineNumberOfOffset(AbstractLineTracker.java:155) at org.eclipse.jface.text.AbstractDocument.getLineO... | 2004-07-08 06:46:35 | 1,089,280,000 | resolved fixed | c25c22b | 1,097,230,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistLightBulbUpdater.java | JDT |
3,875 | 75,296 | Bug 75296 Quick fix "Add throws declaration" resets existing javadoc | If a method already has javadoc @throws declared for SOME of the exceptions thrown from the method causing the Quick fix to appear, and I apply the quick fix, then my javadoc @throws declarations for ALL concerning exceptions are reset :-( | 2004-09-29 11:36:28 | 1,096,470,000 | resolved fixed | dcb5544 | 1,097,170,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/LocalCorrectionsSubProcessor.java | JDT |
3,876 | 67,614 | Bug 67614 After "create field", additional text is inserted at multiple locations | I wrote the following method call: assertEquals(1.0d, blah(), delta); The field "delta" is not yet declared. I press Ctrl-1 and select "create field". The resulting line is: private Object delta; By typing the following sequence of keys: [Tab] double [Tab] [Right] = 0.0001d I change that manually to: private double del... | 2004-06-17 08:05:11 | 1,087,470,000 | resolved fixed | 8168b45 | 1,097,170,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedCorrectionProposal.java | JDT |
3,877 | 70,079 | Bug 70079 [rulers] override indicators for anonymous classes | Must have function override indicators for Anonymous classes as well | 2004-07-15 00:24:09 | 1,089,870,000 | resolved fixed | 6a42200 | 1,097,160,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/OverrideIndicatorManager.java | JDT |
3,878 | 75,786 | Bug 75786 [typing] correct indentation fails for indented braces | null | 2004-10-07 08:35:52 | 1,097,150,000 | resolved fixed | 81d02e4 | 1,097,160,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaIndenter.java | JDT |
3,879 | 67,644 | Bug 67644 "Organize Imports" imports inner classes but the compiler think it unnecessary [code manipulation] | Here is an example. There are two packages, a and b. Class A is in package a, with an inner class named AA (showed in the code following). ----- A.java --------------------------------------- package a; public class A { public class AA { }; } And there is a class named B in package b that use class A and A.AA: ----- B.... | 2004-06-17 10:58:55 | 1,087,480,000 | resolved fixed | 2b33101 | 1,097,150,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/dom/ScopeAnalyzer.java | JDT |
3,880 | 75,155 | Bug 75155 NLS wizard does not detect accessor and properties file in some cases | 3.1 M2 1. open CopyResourceChange rev. 1.11 2. in line 41 remove the //$NON-NLS-1$ 3. save 4. open the NLS wizard ==> it does not detect the accessor nor the properties file It should be smarter (assume some //$NON-NLS-1$ got lost) and detect the correct values | 2004-09-28 07:04:54 | 1,096,370,000 | resolved fixed | 57a1a0e | 1,097,140,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSHint.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSHintHelper.java | JDT |
3,881 | 75,711 | Bug 75711 AstProvider should not create AST if requested by SelectionListenerWithASTManager | 3.1 M2 If SelectionListenerWithASTManager waits for an AST and the editor closes we should not create an AST for that one but return null instead. | 2004-10-06 08:43:19 | 1,097,070,000 | resolved fixed | 42c5061 | 1,097,080,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ASTProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClipboardOperationAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/OverrideIndic... | JDT |
3,882 | 75,200 | Bug 75200 [Decorators] Color and Font decorators dissapear in Package Explorer | 3.0 M2 The CVS font/color decorations dissapear in the packages explorer, or do not apply to all the elements they should. I will investigate on our end, but this seems to be a package explorer problem since the navigator always shows these decorations correctly. | 2004-09-28 14:29:47 | 1,096,400,000 | resolved fixed | 1d6b34b | 1,096,970,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ResourceToItemsMapper.java | JDT |
3,883 | 75,423 | Bug 75423 [projection] NPE and IAE in ProjectionDocument | Build 20040930 Linux-GTK I've found today's build very unstable. The following exceptions appear many times in my .log file: !ENTRY org.eclipse.ui 4 0 Sep 30, 2004 13:26:26.402 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jface.text.projection.ProjectionDocument.normali... | 2004-09-30 17:17:59 | 1,096,580,000 | verified fixed | 0695460 | 1,096,640,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/BracketInserterTest.java org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/JdtTextTestSuite.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | JDT |
3,884 | 75,316 | Bug 75316 [preferences] Provide a generic way to update dependencies | I200409280800 On the spelling preference page, check to spell-check comments Click Restore defaults The nested checkboxes under "spell-check comments" remain enabled. | 2004-09-29 12:51:38 | 1,096,480,000 | resolved fixed | 59eea85 | 1,096,540,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/SpellingConfigurationBlock.java | JDT |
3,885 | 75,264 | Bug 75264 [typing] BadLocationException with LinkedCorrectionProposal | I200409281200 public class MyClass { public MyClass(Comparable theThing) { } } - set caret into theThing - invoke QuickAssist and apply "Assign parameter to new Field" - press Tab => This stacktrace goes to the log 3 times: org.eclipse.jface.text.BadLocationException at org.eclipse.jface.text.AbstractDocument.get(Abstr... | 2004-09-29 07:33:20 | 1,096,460,000 | resolved fixed | 949bc1e | 1,096,460,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedCorrectionProposal.java | JDT |
3,886 | 74,004 | Bug 74004 Undo for Encapsulate Field did not undo changes in subclass | 20040914088 I used the encapsulate field refactoring and this caused changes in both the type and its subclass. The Undo operation correctly undid the changes in the type but the changes in the subclass remaind. | 2004-09-15 13:55:55 | 1,095,270,000 | resolved fixed | ba5f4fa | 1,096,460,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/sef/AccessAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/sef/SelfEncapsulateFieldRefactoring.java | JDT |
3,887 | 74,580 | Bug 74580 formatting for condition quick assists | 3.1 M2 test pass The formatting of conditionals modified by the new quick assists is misleading. Consider the following: if (c1) { one(); } else if (c2) { two(); } else { three(); } translates into: if (!c1) if (c2) { two(); } else { three(); } else { one(); } which is correct, but it is barely visible from the formatt... | 2004-09-22 11:44:40 | 1,095,870,000 | resolved fixed | 33df946 | 1,096,360,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AdvancedQuickAssistTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AdvancedQuickAssistProcessor.java | JDT |
3,888 | 73,890 | Bug 73890 [1.5] Convert to enhanced for loop quick assist should not be available if counter is used in loop | I20040907 Have the following: for (int i= 0, length= numbers.length; i < length; i++) { int number= numbers[i]; System.out.println("Number " + i + ": " + new Integer(numbers[i])); } The quick assist allows me to convert this into code which causes a compile error: for (int element : numbers) { System.out.println("Numbe... | 2004-09-14 12:29:45 | 1,095,180,000 | resolved fixed | eceb532 | 1,096,310,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertForLoopQuickFixTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ConvertForLoopProposal.java | JDT |
3,889 | 74,928 | Bug 74928 NPE in AdvancedQuickAssistProcessor$3.isCovered | eclipse.buildId=I200409231635 java.fullversion=J2RE 1.4.2 IBM J9 2.2 Windows XP x86-32 j9n142-20040915 (JIT enabled) J9VM - 20040914_1123_lHdSMR JIT - r7_level20040912_1800 BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_CH Command-line arguments: -update -keyring c:\eclipse\.keyring -application org.eclipse.... | 2004-09-24 03:16:02 | 1,096,010,000 | resolved fixed | edf7636 | 1,096,050,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AdvancedQuickAssistProcessor.java | JDT |
3,890 | 74,540 | Bug 74540 Invalid implementation of BatchSimilarSchedulingRule | null | 2004-09-22 10:11:44 | 1,095,860,000 | resolved fixed | 4f9fe12 | 1,096,050,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/DeferredMethodWrapper.java | JDT |
3,891 | 57,464 | Bug 57464 No 'Refactor > Rename' on constructors [refactoring] | 20040405 1. In the following code example select 'A' of the constructor in the editor and open the context menu: No rename available Note that methods have a rename public class A { public A() { super(); } } | 2004-04-05 11:36:59 | 1,081,180,000 | resolved fixed | cffa4ff | 1,096,040,000 | org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/RenameJavaElementAction.java | JDT |
3,892 | 67,805 | Bug 67805 Java Editor 'Show In > Package Explorer' beeps even when element selected [package explorer] | 200406180010 Open a Java editor and choose 'Navigate > Show In > Package Explorer'. The Package Explorer is shown and the right element is selected. Nevertheless, there's a Display#beep() which should only occur when the element could not be shown. The problem is that PackageExplorerPart#revealAndVerify(..) sets the se... | 2004-06-18 09:40:48 | 1,087,570,000 | resolved fixed | b37b61f | 1,096,040,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java | JDT |
3,893 | 74,614 | Bug 74614 Code formatter preference page: bogus preview code | 3.1 M2: Code Formatter > White Space > Parameterized type > Parameterized type Preview: "Map<String, Element> map = new<String, Element> HashMap();" is wrong. BTW, in tree double "Parameterized type" is ugly, why not use something like "Type" on the second level. | 2004-09-22 12:57:51 | 1,095,870,000 | resolved fixed | 4d3a801 | 1,095,950,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceOptions.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceTabPage.java | JDT |
3,894 | 74,505 | Bug 74505 Indent Line removes tabs inside switch statement | I200409212000 Indent Line removes tabs inside switch statement. Test Case: 1. open ResourceFileBuffer rev. 1.16 2. select line 119 - 169 3. Indent Line ==> break and other statements get alligned to "switch" | 2004-09-22 05:21:11 | 1,095,840,000 | resolved fixed | 8820d49 | 1,095,940,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaIndenter.java | JDT |
3,895 | 74,568 | Bug 74568 Convert for loop QA too sensitive on caret position | 3.1 M2: The "Convert for loop" QA is only available if the caret is on the "for" keyword or after the second semicolon (inside the third controlling expression). I'd expect to have this QA on all three expressions. | 2004-09-22 11:15:53 | 1,095,870,000 | resolved fixed | a222b4f | 1,095,940,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.java | JDT |
3,896 | 74,504 | Bug 74504 Close parenthesis option does no longer work | Using build I200409212000. Although "Close brackets and parenthesis" option is not checked, when I type "if(" in Java editor, it add automatically the closing parenthesis and then I get "if ()" I've tried to set/unset it to see whether it could be a wrong initialization after build update but it did not change anything... | 2004-09-22 05:14:27 | 1,095,840,000 | resolved fixed | ef3c487 | 1,095,940,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | JDT |
3,897 | 74,513 | Bug 74513 NPE in JavaSourceViewerConfiguration when changing compiler level | I200409212000 Tried to change compiler compliance level between 1.4 and 1.5. The folowing class was open in a java editor: package a; public class Ref { enum Cards { } } Error Sep 22, 2004 12:12:02.814 java.lang.NullPointerException java.lang.NullPointerException at org.eclipse.jdt.ui.text.JavaSourceViewerConfiguration... | 2004-09-22 06:29:41 | 1,095,850,000 | resolved fixed | 7dacc70 | 1,095,870,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java | JDT |
3,898 | 73,295 | Bug 73295 No javadoc comment inserted with new serialVersionUID field | When the code: private static final long serialVersionUID = 1L; is generated, the new field comment is not used. Version 3.1.M1. | 2004-09-05 13:09:37 | 1,094,400,000 | resolved fixed | 1de3316 | 1,095,770,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/SerialVersionQuickFixTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AbstractSerialVersionProposal.java | JDT |
3,899 | 74,171 | Bug 74171 [preferences] Pref page; Restore defaults does not reset error status correctly | Version: 3.1.0 Build id: 200409140800 @@@@ Window/Preferences/Java/Editor/Hovers Select "Variable Values" Enter "Ctrl" as its hover. Delete "Ctrl" in text area so that it is empty. Click on "Restore Defaults". Observe the error will still be there. | 2004-09-17 09:42:55 | 1,095,430,000 | verified fixed | 5dae3b6 | 1,095,430,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorHoverConfigurationBlock.java | JDT |
3,900 | 55,325 | Bug 55325 [typing] Starting Javadoc comment inserts @param tags for next method | build I20040318 - open type TrimLayout - before method setSpacing, start a new method by typing a Javadoc comment - you get @param tags for the next method (even though it has its own Javadoc) For example: Type this: /**<Enter> Before this: /** * Sets the empty space surrounding the center area. This whitespace is * lo... | 2004-03-18 22:36:14 | 1,079,670,000 | verified fixed | 3a832a3 | 1,095,410,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocAutoIndentStrategy.java | JDT |
3,901 | 72,510 | Bug 72510 Move field adds field to end of type | I200408170800. I moved field TestResult.fFailures to TestSuite and could not find it until I realized that it got appended to the end of TestSuite. | 2004-08-24 11:32:32 | 1,093,360,000 | resolved fixed | 37ab6f3 | 1,095,270,000 | org.eclipse.jdt.ui.tests.refactoring/resources/Copy/test_initializer_yes_type/out/A.java org.eclipse.jdt.ui.tests.refactoring/resources/Copy/test_method_yes_type/out/A.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgPolicyFactory.java | JDT |
3,902 | 71,267 | Bug 71267 [Search][Javadoc] SearchMatch in class javadoc reported with element of type IImportDeclaration | null | 2004-08-03 04:34:27 | 1,091,520,000 | verified fixed | 7cf6be8 | 1,095,250,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/RenamePackageTests.java | JDT |
3,903 | 73,337 | Bug 73337 New compiler option (COMPILER_PB_ENUM_IDENTIFIER) needs UI | null | 2004-09-06 11:51:57 | 1,094,490,000 | resolved fixed | 485674e | 1,094,820,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java | JDT |
3,904 | 73,579 | Bug 73579 Source view: StringOutOfBounds error after changing encoding | I got the following error after doing these steps: 1) create a new java class in the default package called dddd.java, open it 1b) open a second file in an editor 1c) switch back to dddd.java (i.e. make it the active editor) 2) change the encoding for that file to "UTF-16 (little-endian)" from the Edit > Encoding menu ... | 2004-09-09 12:15:07 | 1,094,750,000 | resolved fixed | 01e181f | 1,094,800,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/SourceView.java | JDT |
3,905 | 72,046 | Bug 72046 Add new options in the code formatter preference page [code formatter] | Adding the new 1.5 constructs in the code formatter led to the additions of the following constants: FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION FORMATTER_BRACE_POSITION_FOR_ENUM_CONSTANT FORMATTE... | 2004-08-16 14:39:46 | 1,092,680,000 | resolved fixed | d8eee48 | 1,094,750,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/BracesTabPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/IndentationTabPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/JavaPreview.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/intern... | JDT |
3,906 | 72,388 | Bug 72388 No types available after opening a closed project | hi, I am using: Version: 3.1.0 Build id: 200408170800 I had a few java projects that were closed before the last shutdown of hte eclipse platform. When I restarted the platform, i used the context menu to open one of the projects. I waited till i saw that the progress monitor showing that it had started building the cl... | 2004-08-21 13:59:56 | 1,093,110,000 | closed fixed | 13b9dc4 | 1,094,650,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/AllTypesCacheTest.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/AllTypesCache.java | JDT |
3,907 | 72,912 | Bug 72912 Cannot extract static [refactoring] | When I have the string "Windows" selected in: public static final boolean IS_OS_WINDOWS = getOSMatches("Windows"); Right-click/Refactor does not let me extract "Windows" as a static. Version 3.1.M1. | 2004-08-30 17:08:05 | 1,093,900,000 | resolved fixed | ebe9a9e | 1,094,580,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaTextSelection.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractConstantAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractMethodAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractTempAction.java | JDT |
3,908 | 73,347 | Bug 73347 NPE in AdvancedQuickAssistProcessor.getInverseConditionProposals | I20040901 + plug-in export, J9 JXE Got this in log several times a day. No steps. !ENTRY org.eclipse.jdt.ui 4 10001 Sep 06, 2004 18:46:20.502 !MESSAGE Internal Error !STACK 0 java.lang.NullPointerException at org.eclipse.jdt.internal.ui.text.correction.AdvancedQuickAssistProcessor.getInverseConditionProposals(Unknown S... | 2004-09-07 02:35:48 | 1,094,540,000 | resolved fixed | a9ae524 | 1,094,550,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AdvancedQuickAssistProcessor.java | JDT |
3,909 | 35,590 | Bug 35590 JUnit window doesn't report errors from junit.extensions.TestSetup [JUnit] | The class junit.extensions.TestSetup is a decorator to set up additional fixture state once before tests are run. I have a TestSuite wrapped into a TestSetup for that purpose. The JUnit window in the Java perspective shows neither errors (exceptions) nor failures (assertions) that happen in my TestSetup.setUp() method.... | 2003-03-24 13:18:46 | 1,048,530,000 | resolved fixed | b5279a6 | 1,094,550,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestHierarchyTab.java org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java | JDT |
3,910 | 73,353 | Bug 73353 [syntax highlighting] 'Abstract Method Invocation' highlighting also matches declaration | I200409011200 | 2004-09-07 04:54:31 | 1,094,550,000 | resolved fixed | bcea293 | 1,094,550,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightings.java | JDT |
3,911 | 72,547 | Bug 72547 Junit view doesn't select failure [JUnit] | When I run unit tests, and get a failure, JUnit does not select any of the failures automatically. This means to get any details, I need to select one by hand. Very annoying. Another user here reports that it does select one for him. | 2004-08-24 16:20:24 | 1,093,380,000 | resolved fixed | d95682c | 1,094,250,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java | JDT |
3,912 | 66,635 | Bug 66635 AddImportOnSelectionAction passes null process monitor to all types cache | I20040611_0100 Title says it all. We should avoid passing in null since the operation can take a while. | 2004-06-11 04:20:10 | 1,086,940,000 | resolved fixed | 3e20510 | 1,094,230,000 | org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/AddImportsOperation.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/AddImportOnSelectionAction.java | JDT |
3,913 | 71,754 | Bug 71754 Ctrl-1 on "extends SomeInterface" does not suggest changing to "implements SomeInterface" [quick fix] | I created a local class, where I used "extends PropertyChangeListener" which is an interface, so the proper syntax is "implements PropertyChangeListener". The compiler catches that PropertyChangeListener is not a class, but Ctrl-1 only suggsts "Rename in file". | 2004-08-11 04:11:47 | 1,092,210,000 | resolved fixed | 470f56b7 | 1,094,230,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java | JDT |
3,914 | 70,570 | Bug 70570 Show Junit view on error preference totally broken [JUnit] | R3.0 The state of the Java > JUnit > "Show Junit results view only if errors or failures occur" has no effect at all i.e. the view opens whether this preference is checked or not (minor detail: if JUnit is a fast view then the pref seems to work). While this is not yet a major bug it unfortunately also affects whether ... | 2004-07-21 14:08:17 | 1,090,430,000 | resolved fixed | 93bd9dd | 1,094,220,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java | JDT |
3,915 | 72,923 | Bug 72923 Delete from Package Explorer removes file but not empty package [package explorer] | This process is a little inconsistant. Sometimes it will work, but most of the time it will not remove the empty package structure. 1. Delete a java file in a package from the Package Explorer 2. Both java file and the empty package disappear from the Package Explorer 3. Add another file to the project 4. Click Refresh... | 2004-08-30 20:07:09 | 1,093,910,000 | resolved fixed | 2aacedd | 1,094,200,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java | JDT |
3,916 | 71,244 | Bug 71244 New Quick Assist's [quick assist] | I've added several new useful (at least for me) quick assist's in class QuickAssistProcessor (from 3.0 release). Here is list of them: 1. Split condition. For example you have following code: if (condition_1 && condition_2) { do_something2(); } Now you decide that you need also execute do_something3() when condition_1 ... | 2004-08-02 13:08:16 | 1,091,470,000 | verified fixed | 8a2319d | 1,094,120,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/AdvancedQuickAssistProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.java | JDT |
3,917 | 72,903 | Bug 72903 Add variable expansion for Test Class in JUnit launch configurations [JUnit] | null | 2004-08-30 15:41:16 | 1,093,890,000 | resolved fixed | 1513726 | 1,094,080,000 | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitBaseLaunchConfiguration.java org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitLaunchConfiguration.java org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java | JDT |
3,918 | 72,992 | Bug 72992 Projects View no longer properly handles opened/closed projects | The Projects View (Java Browsing) no longer stops displaying closed projects, nor does it display newly opened projects. Eclipse I20040831 (but been around since I20040817?) Linux, GTK2. | 2004-08-31 13:45:18 | 1,093,970,000 | resolved fixed | 40eb7c0 | 1,094,050,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingContentProvider.java | JDT |
3,919 | 71,283 | Bug 71283 Type Hierarchy View should show active working set in content description [type hierarchy] | Eclipse 3.0 The type hierarchy should show the active working set in the content description. Instead of WorkbenchPart#setTitle(), it should use setContentDescription() to display the focus type and active working set. | 2004-08-03 10:04:54 | 1,091,540,000 | resolved fixed | 0a3b0af | 1,094,050,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java | JDT |
3,920 | 67,851 | Bug 67851 SelectionListenerWithASTManager should synchronized access to listener list | RC2, for post 3.0: SelectionListenerWithASTManager.PartListenerGroup should protect the access to the ListenerList from the job. | 2004-06-18 13:28:57 | 1,087,580,000 | resolved fixed | b3e67cb | 1,094,040,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java | JDT |
3,921 | 72,962 | Bug 72962 [1.5][Java Element Image Provider] Does not enumerate IJavaElement.TYPE_PARAMETER | 20040824: Image provider does not have a case statement for type parameter java elements and fails with AFE Steps to reproduce: - Create non-generic class C - Insert method declaration static <S> S wassup() { return null; } - Select wassup in the java outline | 2004-08-31 09:44:00 | 1,093,960,000 | resolved fixed | 46bb862 | 1,094,030,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementImageProvider.java | JDT |
3,922 | 71,153 | Bug 71153 Is this a mistake in SourceActionDialog.java | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java CVS Revision 1.24 from line 364 to 379 commentButton.setLayoutData(new GridData(GridData.HORIZONTAL_ALIGN_FILL)); ... ... GridData gd= new GridData(GridData.HORIZONTAL_ALIGN_FILL); gd.horizontalSpan= 2; commentButton.setLayoutData(gd); wh... | 2004-07-30 09:49:31 | 1,091,200,000 | resolved fixed | 8948312 | 1,093,970,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SourceActionDialog.java | JDT |
3,923 | 70,457 | Bug 70457 Code assist in javadoc completion for links to inner class members does not work correctly for not fully-classified classes [javadoc] | In the case I write the javadoc comment and use the javadoc tak {@link ...} then there is the problem in the code assist - the code assist does not display the list of the members of the inner class in the case the enclosing master- class of the inner class is not classified with the full package name. This happens if ... | 2004-07-20 14:04:01 | 1,090,350,000 | resolved fixed | 21f786a | 1,093,970,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionEvaluator.java | JDT |
3,924 | 68,311 | Bug 68311 "Quick Fix" sometimes gets the type wrong [quick fix] | I had the following code: PaymentRoute[] routes = ... PaymentRoute test = null; for (int i=0; i<routes.length; i++) { if (METHOD.equals(routes[i].getMethod())) test = routes[i]; } The error was that METHOD was undefined, I wanted a new constant for it. PaymentRoute.getMethod() returns String, therefore I'd have expecte... | 2004-06-23 11:22:28 | 1,088,000,000 | resolved fixed | 3292ac1 | 1,093,970,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java | JDT |
3,925 | 72,793 | Bug 72793 Ctrl+Shift+U (Find Occurrences) does not mark write access to qualified field [search] | I200408241200 1. open file TextFileDocumentProvider rev. 1.45 2. select FileInfo.fCachedReadOnlyState 3. Ctrl+Shift+U 4. step through the matches ==> some of them are write access but this is not shown in the Search view | 2004-08-27 11:48:19 | 1,093,620,000 | resolved fixed | 45ef985 | 1,093,870,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesFinder.java | JDT |
3,926 | 72,520 | Bug 72520 Cannot delete unsaved file | Once a file is marked dirty and I try deleting it it wont allow me to delete it till I save it. | 2004-08-24 13:02:00 | 1,093,370,000 | resolved fixed | aa5ffeb | 1,093,450,000 | org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/AbstractDeleteChange.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/DeleteFileChange.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/DeleteFo... | JDT |
3,927 | 68,592 | Bug 68592 rename method exception with method in local type [refactoring] | Was renaming method in nested interface where implementing classes were nested in the same class. java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:284) at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.run(RefactoringWizardDialog2.java:282) ... | 2004-06-25 07:48:32 | 1,088,160,000 | resolved fixed | 27e95ea | 1,093,350,000 | org.eclipse.jdt.ui.tests.refactoring/resources/RenameVirtualMethodInClass/test40/in/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenameVirtualMethodInClass/test40/out/A.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/RenameVirtualMethodInClassTests.java org.eclipse.jdt... | JDT |
3,928 | 66,831 | Bug 66831 Unable to copy project / package to window file system in 'Package Explorer' [ccp] [package explorer] | Build id: 200406111814 [test case] 1. In Package Explorer, Select project 2. Right Click -> Copy In OS File System(ex. MS Windows Explorer), unable to 'Paste' [supplementation] -In Eclipse 2.1.3, I can copy. -In Resource Navigator, I can copy. I don't know that this behavior is correct or not. | 2004-06-12 12:17:12 | 1,087,060,000 | resolved fixed | d239651 | 1,093,280,000 | org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/reorg/CopyTest.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/reorg/CopyToClipboardActionTest.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/reorg/PasteResourcesFromClipboardActionTest.... | JDT |
3,929 | 70,922 | Bug 70922 Convert to Enhanced For [quick assist] | I implemented as a QuickAssist a convertion from old For loop to the EnhancedFor in Java 1.5 In order to activate it you should place the cursor over the for keyword and trigger the QuickAssist (Ctrl + 1). If the preconditions for this refactoring are satisfied, one would be offered to "Convert to Enhanced For". If you... | 2004-07-27 13:17:29 | 1,090,950,000 | resolved fixed | c4ecbf6 | 1,093,270,000 | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ConvertForLoopQuickFixTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/QuickFixTest.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/te... | JDT |
3,930 | 72,024 | Bug 72024 UndoManager creates potential memory leak [refactoring] | 3.0 The refactoring undo manager doesn't call dispose in all cases where a undo/redo object is no longer needed. This can result in a memory leak since the undo/redo object could register for listeners and therefore relies on the fact the dispose is called correctly. Cases where dispose isn't called: - if the undo stac... | 2004-08-16 11:25:03 | 1,092,670,000 | verified fixed | 851e4b5 | 1,093,270,000 | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/UndoManager.java org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringWizardDialog2.java org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/ui/refactoring/RefactoringWizard.java | JDT |
3,931 | 69,689 | Bug 69689 "pull up" field placement [refactoring] | I did a pull up of a private field, and it added at the very end of the class, after all the methods. It should place it just like quickfix does when a field is created (at the top); | 2004-07-08 20:31:45 | 1,089,330,000 | resolved fixed | bc4f461 | 1,093,260,000 | org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/positive/DifferentArgs1.java org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/positive/DifferentArgs2.java org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/positive/DifferentArgs3.java org.eclipse.jdt.ui.tests.refactoring/reso... | JDT |
3,932 | 71,784 | Bug 71784 [syntax highlighting] deprecated needs a default color | 1) enable semantic highlighting 2) enable deprecated highlighting -> the default color is black and no default style There should be a reasonable default style. My first choice would be strikethrough which we currently cannot do. Some dark yellow for "warning" would be my second choice | 2004-08-11 09:27:53 | 1,092,230,000 | resolved fixed | f8824f5 | 1,092,990,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightings.java | JDT |
3,933 | 40,038 | Bug 40038 [typing] Smart semicolon fooled by method braces | Build: I20030710 Start writing a setter method, like this: public void setValue(int i) {} Then position cursor between the braces and fill in the method body. You end up with this: public void setValue(int i) {this.value=i}; Problem: when you type the semicolon, it jumps over the closing method body brace and places it... | 2003-07-14 13:46:44 | 1,058,200,000 | resolved fixed | b1721f2 | 1,092,930,000 | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/SmartSemicolonAutoEditStrategyTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/SmartSemicolonAutoEditStrategy.java | JDT |
3,934 | 71,554 | Bug 71554 [1.5][syntax highlighting] JDK 5.0: enum should be marked as a keyword. | Under cheetah, the word enum should be highlighted as a keyword such as public and protected. | 2004-08-06 07:33:59 | 1,091,790,000 | resolved fixed | ee00d2a | 1,092,730,000 | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCodeScanner.java | JDT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.