issue_id int64 2.03k 426k | title stringlengths 9 251 | body stringlengths 1 32.8k ⌀ | status stringclasses 6
values | after_fix_sha stringlengths 7 7 | updated_files stringlengths 29 34.1k | project_name stringclasses 6
values | repo_url stringclasses 6
values | repo_name stringclasses 6
values | language stringclasses 1
value | issue_url null | before_fix_sha null | pull_url null | commit_datetime timestamp[us, tz=UTC] | report_datetime timestamp[us, tz=UTC] |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
207,938 | Bug 207938 [call hierarchy] Call Hierarchy should allow to refresh/recompute | I20071030-0010. The Call Hierarchy should allow to refresh/recompute. | verified fixed | d112626 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-15T10:36:34Z | 2007-10-30T10:26:40Z |
206,949 | Bug 206949 [call hierarchy] filter field accesses (only write or only read) | null | verified fixed | e268b37 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/CallerMethodWrapper.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/callhierarchy/MethodWrapper.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyMessages.java", "org.ecli... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-15T09:22:34Z | 2007-10-19T18:53:20Z |
159,157 | Bug 159157 [preferences][content assist] Enhance code assist by allowing more character triggers | I have developed a minimal plugin that I use to great effect to maximize the use of code assist. The plugin merely sets the property for the auto-activation triggers to a long string (chars A-Z and a-z, as well as '.') in order to make all alpha keys plus the '.' triggers. The feature request, then, is trivial: please ... | verified fixed | b0015cf | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-15T09:03:30Z | 2006-09-28T16:13:20Z |
227,066 | Bug 227066 JUnit launch config tab does not provide id | JUnitLaunchConfigurationTab from org.eclipse.jdt.junit does not override the #getID method. This prevents clients from inserting tabs into JUnit tab group when a new tab is contributed via the org.eclipse.debug.ui.launchConfigurationTabs extension point. | resolved fixed | 43248fa | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationTab.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-15T08:43:12Z | 2008-04-15T03:26:40Z |
226,814 | Bug 226814 [rename] Not all refs linked in live rename when initiated from constructor name | Build ID: I20080207-1530 Steps To Reproduce: If you place the cursor over the name of a constructor and then hit Alt-Shift-R to rename and start typing, not all refs to the class name are linked in to the live rename, so if you hit Esc and don't opt for the full refactoring, you are left with broken refs to the class. ... | resolved fixed | 8f798d5 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/LinkedNodeFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-14T17:46:35Z | 2008-04-12T17:06:40Z |
225,950 | Bug 225950 [junit] JUnit 4 container has no source | 3.4 Since the change to individual source bundles, the JUnit 4 container can not find it's source bundle. | resolved fixed | 5490f77 | ["org.eclipse.jdt.junit.core/src/org/eclipse/jdt/internal/junit/buildpath/BuildPathSupport.java", "org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/buildpath/BuildPathSupport.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-14T14:50:39Z | 2008-04-07T12:06:40Z |
226,894 | Bug 226894 Wrong usage of IJavaProject.getPackageFragmentRoot(String) | null | resolved fixed | 7651665 | ["org.eclipse.jdt.ui.tests/test", "plugin/org/eclipse/jdt/testplugin/JavaProjectHelper.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-14T13:19:32Z | 2008-04-14T10:46:40Z |
104,021 | Bug 104021 [quick fix] Introduce new local with casted type applied more than once | 3.1 "Introduce new local with casted type" can be applied more than once resulting in compile errors. Starting with: class Foo { void bar(Object o) { if (o instanceof String) { } } } applying it twice results in: class Foo { void bar(Object o) { if (o instanceof String) { String string= (String) o; String string= (Stri... | resolved fixed | 6bd9928 | ["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 | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-11T14:59:42Z | 2005-07-15T15:06:40Z |
110,589 | Bug 110589 [quick fix] 'Remove invalid modifiers' does not appear for enums and annotations | M20050923-1430 The 'Remove invalid modifiers' quick fix does not appear for enums and annotations. In the example below, no quick fix is offered. abstract enum E1 { public BLUE; } final @interface Annot { public final String value(); } When I use class or interface instead of enum and annotation, then it works. | resolved fixed | 1896050 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ModifierCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-11T14:51:31Z | 2005-09-26T13:06:40Z |
107,923 | Bug 107923 [quick fix] Shouldn't offer "Add throws declaration" quickfix for overriding signature if result would conflict with overridden signature. | Applying the "Add throws declaration" quickfix results in illegal signature. ------------------------- Bug.java ------------------ class Bug implements Runnable { public void run() { Class.forName(null); } } | resolved fixed | 680e862 | ["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 | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-11T14:34:49Z | 2005-08-24T19:00:00Z |
226,319 | Bug 226319 [misc] ContentAssistTestSuite uses lots of memory | 20080409 I run the ContentAssistTestSuite and ran out of memory. When inspecting with yourkit I saw that half of the memory (30 MB) is used in the UISynchronizer.messages; that's the queue of async-execs to be executed. The fix would be to run the display loop between tests until empty. This would also make sure that t... | resolved fixed | 384f3b1 | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/AbstractCompletionTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-11T11:21:48Z | 2008-04-09T16:53:20Z |
156,845 | Bug 156845 [content assist] wrong type arguments for a type parameterized with a local type | null | resolved fixed | 6208776 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyGenericTypeProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-11T11:00:35Z | 2006-09-11T10:20:00Z |
224,417 | Bug 224417 [create on paste] Can not paste enum into PE if 1.4 compliance is default | I20080304-1113 Given a workspace with 1.5 and 1.4 jre 1. Set 1.4 jre as default 2. Set 1.4 compliance as default 3. Paste enum Day {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY}; Into PE with empty selection Is: 'Can not paste the clipboard contents' Should: Paste, create a project with 1.5 jre and co... | resolved fixed | df0aa7b | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/PasteAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-11T10:22:23Z | 2008-03-27T17:46:40Z |
226,504 | Bug 226504 [hovering] Rich quick fix hover with duplicate content area after moving mouse on spelling error | I20080408-0800.from20080410_1430 - Have: /** * <u>underlined</u> */ public class Try { } - Enable spell checking - Hover over 'u' in '<u>' => Quick fix hover appears - Slowly move mouse to the right (onto '>' of '<u>') => Content of hover is duplicated Can even get contents more than 2 times by moving mouse back and fo... | resolved fixed | 56b23e6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-10T15:21:52Z | 2008-04-10T12:20:00Z |
226,488 | Bug 226488 [content assist] Method declaration completion in an interface inserts body | build I20080409-1425 1) create I.java public interface I { eq| // do ctrl+space at | } 2) do ctrl+space at | location 3) select and insert 'equals' method The result is: public interface I { public boolean equals(Object obj) {}; } The body should not be inserted. | resolved fixed | 6cd5876 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/OverrideCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-10T12:56:55Z | 2008-04-10T12:20:00Z |
226,444 | Bug 226444 Failing test: TypeHierarchyTest.testHierarchyWithWorkingCopy1(TypeHierarchyTest.java:161) | N20080407-2000, N20080408-2000. Failed alreadyalso in previous N-builds but now it failed two times in a row - both times on WIN XP, SUN 1.5.0 (OK on 1.4). Update count should be 1, is: 2 junit.framework.AssertionFailedError: Update count should be 1, is: 2 at org.eclipse.jdt.ui.tests.core.TypeHierarchyTest.testHierarc... | resolved fixed | 173bea3 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/TypeHierarchyTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-10T09:32:10Z | 2008-04-10T06:46:40Z |
226,261 | Bug 226261 [hovering] AbstractAnnotationHover leaks references to quick fix ASTs | I20080401-0851 AbstractAnnotationHover keeps references to quick fix ASTs. Problem could be that we don't have a lifecycle that clears the input of the AbstractAnnotationHover when it is made invisible (but not disposed). Exemplary path from GC root: org.eclipse.jdt.core.dom.AST ast of org.eclipse.jdt.core.dom.rewrite.... | verified fixed | 937214b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-09T14:39:27Z | 2008-04-09T11:20:00Z |
226,195 | Bug 226195 [quick assist] New local variable quickfix gives illegal result. | Build ID: M20080221-1800 Steps To Reproduce: Please see that applying the "Assign statement to new local variable" quickfix gives an illegal result. ----------------- Bug.java ------------------- class Bug{ void foo(){ if(0>hashCode()) return; else equals(null); }} | resolved fixed | bbb010b | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/proposals/AssignToVariableAssistProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-09T11:14:43Z | 2008-04-08T21:26:40Z |
226,132 | Bug 226132 [hovering] rich Javadoc hover logs JME for non-existing element | I20080401-0851 Rich Javadoc hover logs JME for non-existing element. Hover over A in this .java file (not on classpath) and then move into hover to enrich: package p; class A { } Error Tue Apr 08 16:03:45 CEST 2008 Internal Error Java Model Exception: Java Model Status [resources/ChangeSignature/canModify [in org.eclip... | resolved fixed | e017086 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenExternalBrowserAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-09T11:00:38Z | 2008-04-08T13:06:40Z |
224,429 | Bug 224429 [extract method] Destination type not pickable if extracting method from local class's initializer. | Build ID: M20080221-1800 Usually the extract method wizard let's the user pick the destination type if the selected logic resides in a local anonymous class. The choice of destination types is wrongly not offered if the selected logic resides in an initializer of the local anonymous class. Steps To Reproduce: Select th... | resolved fixed | 3e0566c | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-08T12:00:29Z | 2008-03-27T17:46:40Z |
223,869 | Bug 223869 [package explorer] Non java resources are not refreshed in external class folder | null | resolved fixed | eec57aa | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-08T09:27:52Z | 2008-03-25T15:46:40Z |
226,002 | Bug 226002 AIOOBE in FindBrokenNLSKeysAction on org.eclipse.jdt.junit.runtime | I20080401-0851 - org.eclipse.jdt.junit.runtime from CVS - Source > Find Broken Externalized Strings => nothing happens, except for this log entry: Error Mon Apr 07 19:14:11 CEST 2008 Unhandled event loop exception java.lang.ArrayIndexOutOfBoundsException: 0 at org.eclipse.jdt.internal.ui.actions.FindBrokenNLSKeysAction... | resolved fixed | 66ba53c | ["org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/RerunRequest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/FindBrokenNLSKeysAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-07T17:31:29Z | 2008-04-07T17:40:00Z |
223,132 | Bug 223132 [search] Java search result view has buggy coloring label provider | null | resolved fixed | e48271f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java", "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"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-07T11:08:57Z | 2008-03-18T19:53:20Z |
215,331 | Bug 215331 [assist] Inconsistent completions for member types | Build 3.4M4 The following 2 scenarii do not trigger similar proposals: 1. Map is not imported public class X { void foo() { Map.<CODEASSIST HERE> } } --> Offers 'Entry' with 'java.util.Map' as qualifier 2. Map is imported import java.util.Map; public class X { void foo() { Map.<CODEASSIST HERE> } } --> Offers 'Map<K,V>... | verified fixed | 28e4da3 | ["org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/contentassist/TypeCompletionTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-07T09:47:21Z | 2008-01-15T12:26:40Z |
97,912 | Bug 97912 [quick fix] Autopopulate switch statement for enums | A way of auto populting a switch statement with all the possible cases when using an enum as the switching parameter would be really great way of ensuring you captured all the possibilities. | resolved fixed | e4df8fb | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java", "org.eclipse.jdt.ui/ui/o... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-04T14:48:19Z | 2005-06-01T15:33:20Z |
210,924 | Bug 210924 [icons] Need icons for runnable jar wizard | I20071120-1300 Need an icon and a wizard banner for the runnable jar wizard. The two images to replace are: wizban/fatjar_pack_wiz.png etool16/exportfatjar_wiz.gif | resolved fixed | 0c8c72d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPluginImages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-04T10:50:04Z | 2007-11-26T15:13:20Z |
222,942 | Bug 222942 [reorg] Delete anonymous class is a no-op | I20080312-1200 Given: package test.bar1; public class Test { public void foo() { new Object() { }; } } 1. Select new Object in outline 2. Delete 3. Ok Is: No changes Should: Delete the anonymous class or delete should not be enabled Same in 3.3.2, same if executed from breadcrumb, nothing in the log | resolved fixed | 727253d | ["org.eclipse.jdt.ui.tests.refactoring/resources/Delete/testDeleteWithinCu24/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/Delete/testDeleteWithinCu24/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/Delete/testDeleteWithinCu25/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/Delete... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-03T15:36:11Z | 2008-03-17T13:20:00Z |
224,132 | Bug 224132 [breadcrumb] Non-Java resources inside jar cannot be opened | I20080325-0100 In the breadcrumbs dropdown, non-Java resources inside a jar cannot be opened (e.g. rt.jar/META-INF/MANIFEST.MF). | resolved fixed | d9dfae0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-03T09:55:07Z | 2008-03-26T16:46:40Z |
225,247 | Bug 225247 [ltk] Error on seeing refactor hisotory of a project name | null | resolved fixed | c3b1a93 | ["org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/history/BrowseRefactoringHistoryContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-02T10:02:29Z | 2008-04-02T04:20:00Z |
58,777 | Bug 58777 [Viewers] add API to not deactivate CellEditor on FocusLost | TableViewerImpl installs a FocusListener on CellEditors, which calls applyEditorValue() on focusLost events. This FocusListener must be removed since applying the editor value is not always the wanted behavior on focusLost. Subclasses of CellEditor already handle focus loss in an extensible way: they install their own ... | verified fixed | 05545e0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TableTextCellEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-01T14:40:20Z | 2004-04-16T07:20:00Z |
224,070 | Bug 224070 [assist] erroneous insert after CA on the New Class Wizard | Version: 3.4.0 Build id: I20080324-1300 (sounds like introduced between 331 and 332) 1 - create a Java Project 2 - open the New Class Wizard 3 - click the Add button to add an interface 4 - select Entry from java.util.Map and add it Note: interface java.util.Map.Entry is added 5 - remove the '.E' in the added interface... | resolved fixed | 89caab8 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/JavaTypeCompletionProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-01T14:39:56Z | 2008-03-26T11:13:20Z |
223,686 | Bug 223686 [hovering] javadoc popup causes error | using : I20080323-2000 some times when I try to hover over a method I get the following error or a broken image (will attach screen cap). The last instance I got this error on was hovering over DebugPlugin#setDefault(..) org.eclipse.swt.SWTException: i/o error (java.io.FileNotFoundException: C:\DOCUME~1\MRennie\LOCALS~... | resolved fixed | 9a3ba6a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ImagesOnFileSystemRegistry.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-04-01T09:48:29Z | 2008-03-24T17:33:20Z |
224,158 | Bug 224158 [syntax highlighting] class is not colored when static method is invoked on it | null | resolved fixed | cae9128 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SemanticHighlightings.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-28T09:43:23Z | 2008-03-26T16:46:40Z |
224,399 | Bug 224399 [create on paste] IAE when pasting string into empty Package Explorer | I20080326-1950 Paste FRIDAY into PE with empty selection: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:420) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:347) at org.eclipse.jface.window.ApplicationWindow$1.run(Applicati... | verified fixed | b2285b8 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/PasteAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-27T16:41:14Z | 2008-03-27T15:00:00Z |
224,183 | Bug 224183 [hovering] Hover popups do not allocate a sufficient amount of space | null | verified fixed | 121362e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-27T13:47:25Z | 2008-03-26T19:33:20Z |
224,139 | Bug 224139 [hovers] Rich annotation hover cuts quick fix links with big font | null | verified fixed | 2cd1d88 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-26T17:13:39Z | 2008-03-26T16:46:40Z |
223,858 | Bug 223858 [hovering] Clicking 'Configure Annotation Preferences' opens Preferences behind hover | I20080325-0100, Mac OS X 10.5.2 - have hover enrichment set to 'after delay' - in a Java problem hover, click 'Configure Annotation Preferences' => opens the Preferences dialog behind the hover shell (hover has focus in the end) Expected: Hover closed as on other platforms. | verified fixed | 0373841 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/ProblemHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-26T16:42:47Z | 2008-03-25T15:46:40Z |
223,818 | Bug 223818 [content assist] proposals table does not live-update label colors enablement | I20080325-0100 The Content Assist proposals table does not enable/disable label colors when the setting is switched on the Appearance preference page. Newly opened editors use the correct setting. | verified fixed | 295257d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/ContentAssistPreference.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-26T15:14:31Z | 2008-03-25T13:00:00Z |
223,586 | Bug 223586 [misc] NPE on enumerations in javadoc view | Working with current HEAD (3/23/08). Editing a enum like the following with Javadoc view open causes an NPE in the javadoc view when you select one of the constants. This does not happen when you are only referring to a constant from another java file. enum Day {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SAT... | verified fixed | 09b06d9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-26T10:27:48Z | 2008-03-23T19:20:00Z |
223,558 | Bug 223558 [breadcrumb] Blocked in endless display loop while opening dropdown | N20080320-2000 I can't tell exactly what I did, but here are some hints: A backup was running in the bg, taking away much of the hard disk performance. I clicked into a breadcrumb dropdown button, and when the dropdown didn't show up after a second, I clicked again (a few times). In the end, the main thread was using m... | verified fixed | e2ca540 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-26T10:10:06Z | 2008-03-22T15:33:20Z |
222,770 | Bug 222770 [content assist] Adopt new char array based StyledString.append methods | N20080315-0100. We need to replace the calls to StyledStringBuilder.append(new String(char[]), ...) with StyledStringBuilder.append(char[],...). | verified fixed | f36b481 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-25T10:22:14Z | 2008-03-14T15:53:20Z |
223,553 | Bug 223553 Remove reference to deprecated COMPILER_PB_MISSING_JAVADOC_TAG_DESCRIPTION_ALL_TAGS | null | resolved fixed | e280223 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavadocProblemsConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/PreferencesMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-23T09:53:02Z | 2008-03-22T12:46:40Z |
219,408 | Bug 219408 [hovering] IAE when going to Javadoc view from javadoc hover | I20080212-0800 1. Open org.eclipse.jface.text.IInformationControlExtension3 2. in javadoc of method computeTrim() hover over the 'x' in <code>x</code> 3. Enrich hover 4. Show in Javadoc view Is: java.lang.IllegalArgumentException: at org.eclipse.core.runtime.Assert.isLegal(Assert.java:62) at org.eclipse.core.runtime.As... | resolved fixed | 39b7492 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocBrowserInformationControlInput.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-21T12:57:01Z | 2008-02-19T11:20:00Z |
133,731 | Bug 133731 [Field Assist] -Platform UI should define preferences for content assist colors | JDT currently provides preferences for content assist popup colors, auto-activation delay time, etc. Platform Text implementations typically hard-coded these values (such as auto-activation delay). The new field assist support generally attempted to mimic the defaults used by platform text. However it is reasonable in ... | verified fixed | b5c8efa | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-21T08:27:34Z | 2006-03-28T21:06:40Z |
223,371 | Bug 223371 [breadcrumb] NPE in JavaEditorBreadcrumb | I20080318-0800.from20080320_1158 Sorry, could not find steps to reproduce. Happened on shutdown, and also after restart when I tried to open the log entry in the Error Log view. java.lang.NullPointerException at org.eclipse.jdt.internal.ui.actions.SelectionConverter.getElementAtOffset(SelectionConverter.java:264) at or... | resolved fixed | 73e18e0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-20T16:43:40Z | 2008-03-20T16:20:00Z |
223,190 | Bug 223190 [breadcrumb] Don't make dropdown smaller when user expands tree item | I20080318-0800.from20080319_1256 - open org.eclipse.jdt.core.search.MethodReferenceMatch from CVS - in breadcrumbs, click arrow before type - resize dropdown (make it wider and higher) - expand a type => height is reset to some default height | resolved fixed | fea4912 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDropDown.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-20T10:01:22Z | 2008-03-19T12:33:20Z |
223,228 | Bug 223228 [hovering] Quick fix problem hover: remove border around scrollable area | HEAD Quick fix problem hovers have a 5px border around the scrollable area. This is a waste of space and looks wrong. The scrollbars should be at the very edge of the content area. Might also reduce the borders in the header and to the left of the "n quick fixes available" label a bit. | resolved fixed | f07cfff | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-20T09:17:56Z | 2008-03-19T18:06:40Z |
220,909 | Bug 220909 [hovering] Add action to open external javadoc to javadoc hover | null | resolved fixed | a40a2ac | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-20T09:02:27Z | 2008-02-29T10:13:20Z |
223,169 | Bug 223169 [breadcrumb] NPE in JavaEditorBreadcrumb on shutdown | HEAD I shut down my runtime workbench. Dialog "Wanna save files?" -> Yes. Log entry: !ENTRY org.eclipse.jface 4 0 2008-03-19 10:29:46.671 !MESSAGE Unhandled event loop exception during blocked modal context. !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclips... | resolved fixed | 187209d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-19T09:52:31Z | 2008-03-19T09:46:40Z |
102,132 | Bug 102132 [nls tooling] Externalize Strings Wizard should not touch annotation arguments | null | verified fixed | 9f2efda | ["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/nls/NLSScannerTester.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSScanner.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-18T21:15:53Z | 2005-06-29T10:13:20Z |
113,247 | Bug 113247 [performance] investigate using a range index in AnnotationPainter or AnnotationModel | 3.2 M2 IAnnotationModel does not offer queries for annotations contained in a certain document range. This means that any client interested in a certain offset or range has to iterate over the entire model, collecting the interesting annotations itself: - AnnotationRulerColumn (to find the viewport-visible annotations)... | resolved fixed | 7c418d9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaAnnotationIterator.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-18T10:38:17Z | 2005-10-20T14:53:20Z |
221,767 | Bug 221767 [quick fix] Foreach needs quick fix for type mismatch | null | resolved fixed | 45a3d14 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectionMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavadocTagsSubProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/j... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-18T00:45:04Z | 2008-03-06T21:46:40Z |
222,975 | Bug 222975 [breadcrumb] Scrolls editor to top | null | resolved fixed | 1cb8fc6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-17T16:26:55Z | 2008-03-17T16:06:40Z |
217,816 | Bug 217816 [breadcrumb] doesn't update after renaming file | I20080205-0010 linux-gtk - create file p.A - open a Java editor on A.java - enable the breadcrumb view - right click on 'A' and invoke Refactor > Rename - rename to 'B' - the editor is updated, but the breadcrub still shows (the non-existing type) 'A' | resolved fixed | 5e7bc95 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-17T16:03:59Z | 2008-02-05T11:13:20Z |
222,395 | Bug 222395 [nls] NLS wizard broken when editing translated strings | null | verified fixed | ab54991 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-17T11:31:39Z | 2008-03-12T11:06:40Z |
221,690 | Bug 221690 [content assist] code assist with colored labels | 20080306 The following patch adds colored labels to code assist. API additions: jface.text - ICompletionProposalExtension6 adds support for colored labels jdt: - CompletionProposalLabelProvider.createStyledLabel(.) | resolved fixed | 42de105 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/CUPositionCompletionProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickTemplateProcessor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AbstractJavaCompletionProposal.j... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-14T11:50:40Z | 2008-03-06T16:13:20Z |
222,407 | Bug 222407 [breadcrumb] Children of binary package should not include nested types | null | resolved fixed | 0ce6949 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-13T11:03:42Z | 2008-03-12T13:53:20Z |
222,443 | Bug 222443 [render] JavaElementLabelProvider should support colored labels | JavaElementLabelProvider should also support colored labels. Is it enough to implement IStyledLabelProvider? | resolved fixed | 9ae2757 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabels.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-13T09:32:39Z | 2008-03-12T16:40:00Z |
221,208 | Bug 221208 [jar exporter] JAR Export: GUI disables Finish button | Build ID: M20071023-1652 Steps To Reproduce: 1. open JAR Export wizard 2. go to the page JAR Manifest Specifications 3. choose Generate the manifest file 4. check Save the manifest in the workspace 5. let's have there a default value from previous 6. erase that value -> Finish disables (that's right) 7. uncheck Save th... | resolved fixed | f28a011 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarManifestWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-13T09:07:00Z | 2008-03-03T18:46:40Z |
222,369 | Bug 222369 [navigation] better (shorter) name for NLS hyperlink | I20080311-0924 We need a better (shorter) name for NLS hover: the quick selection dialog is too long and no one wants to read that long string. | resolved fixed | 327a84f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlink.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-12T15:43:58Z | 2008-03-12T11:06:40Z |
222,392 | Bug 222392 [quick fix] Infer generic type arguments should not be available if compile errors | I20080311-0924 Given: package test; import java.util.ArrayList; public class Other { public void foo() { ArrayList list= new ArrayList(); list.ad d(1); } } 1. Ctlr-1 on ArrayList 2. Add type paremeters Is: org.eclipse.core.runtime.AssertionFailedException: null argument: at org.eclipse.core.runtime.Assert.isNotNull(Ass... | resolved fixed | 044904f | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/Java50Fix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-12T14:27:30Z | 2008-03-12T11:06:40Z |
222,355 | Bug 222355 [refactoring] Image leak in CreateTextFilePreviewer.setText() | 3.4M5 I see 14 instances of the same image with the following allocation stacktrace: java.lang.Error at org.eclipse.swt.graphics.Device.new_Object(Device.java:804) at org.eclipse.swt.graphics.Resource.init(Resource.java:84) at org.eclipse.swt.graphics.Image.<init>(Image.java:485) at org.eclipse.jface.resource.ImageDesc... | resolved fixed | 636afcd | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/CreateTextFileChangePreviewViewer.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-12T13:26:51Z | 2008-03-12T08:20:00Z |
222,025 | Bug 222025 [misc] Support 'Navigate > Open External Javadoc' command in Javadoc view | I20080305-1100 Support 'Navigate > Open External Javadoc' (Shift+F2) command in Javadoc view. The menu item should be enabled and the toolbar button should bear the commandId/actionDefinitionId. | resolved fixed | 05e7075 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-11T18:07:42Z | 2008-03-10T11:53:20Z |
222,257 | Bug 222257 [clean up] can not multi quick fix raw type warning from problem view | N20080310-0100 Given: package test; import java.util.ArrayList; public class Other { public void foo() { ArrayList list= new ArrayList<String>(); ArrayList list2= new ArrayList<String>(); } } 1. Invoke 'Quick Fix' action in problems view for the raw type reference warning 2. Select 'Add type parameters to ArrayList' Is... | resolved fixed | 79039e8 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/Java50CleanUp.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-11T16:44:08Z | 2008-03-11T15:40:00Z |
221,743 | Bug 221743 [preferences] Save Actions preference page layout is smushed | null | resolved fixed | e1a80b0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/fix/CleanUpSaveParticipantPreferenceConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-11T15:35:01Z | 2008-03-06T21:46:40Z |
220,257 | Bug 220257 [jar exporter] ANT build file does not create Class-Path Entry in Manifest | null | resolved fixed | 879b1df | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/jarexport/FatJarExportTests.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarAntExporter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/JarWriter4.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-11T14:39:54Z | 2008-02-25T20:06:40Z |
222,197 | Bug 222197 [breadcrumb] Improve label decorations | I20080305-1100 1. Breadcrumb item images should be decorated 2. Breadcrumb item labels should not be decorated 3. The tool tip text should be decorated 4. It must not flicker | resolved fixed | b71e2c9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorBreadcrumb.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItem.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbItemDetails.java", "org.eclipse.jdt.ui/ui/org/eclip... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-11T10:13:09Z | 2008-03-11T10:06:40Z |
221,467 | Bug 221467 Replace COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_INCLUDE_UNCHECKED_EXCEPTIONS with COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_EXEMPT_EXCEPTION_AND_THROWABLE | null | resolved fixed | b8b08e0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ProblemSeveritiesConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-10T11:56:07Z | 2008-03-05T09:40:00Z |
221,130 | Bug 221130 [search] No fine-grain search for instanceof criteria | Build 3.4M5 Along the lines of providing fine-grain search functionality, it feels the instance-of pattern got ommitted. | verified fixed | 69a8768 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/MatchLocations.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-04T13:21:02Z | 2008-03-03T13:13:20Z |
188,673 | Bug 188673 [api] Requesting a public way to Link to the UserLibraryPreferencePage | There should be a public way to "Link" to the org.eclipse.jdt.internal.ui.preferences.UserLibraryPreferencePage from another preference page. Currently we use the following code to link to the page from our preference page. ((IWorkbenchPreferenceContainer) getContainer()) .openPage(UserLibraryPreferencePage.ID, null); ... | resolved fixed | a9b84af | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ClasspathVariablesPreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/UserLibraryPreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-03T18:02:08Z | 2007-05-23T17:06:40Z |
154,199 | Bug 154199 [quick assist] convert to StringBuilder | NEW refactoring "Convert to StringBuffer/StringBuilder..." String a = "aaa " + bbb + " ccc " + ddd + ...; method( a, ... ) ===> StringBuilder a = new StringBuilder( <guess initial size by SUM(length(fixed strings))> ); a.append( "aaa " ); a.append( bbb ); ... method( a.toString() ); | verified fixed | 3a9156b | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-03T17:49:50Z | 2006-08-17T10:20:00Z |
217,500 | Bug 217500 [organize imports] Organize Imports opened "blocked jobs dialog" | Build ID: 3.4M4 Steps To Reproduce: Perform a CVS commit of a very large file that will take several minutes to update. Then go to a java editor and do "organize imports." Ctrl-shift-o. A dialog will open saying it is waiting for the workspace to be free. There should be no need to write to the workspace to organize im... | resolved fixed | 3e3e21a | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/OrganizeImportsOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-03T17:23:05Z | 2008-02-01T21:06:40Z |
220,527 | Bug 220527 [hovering] Rename quick fix out of problem hover is a no-op | I20080226-1155 Given: package snippet; public class Snippet { public static void main(String[] args) { String s; String s; } } 1. Hover over error on 's' 2. Select 'Rename' quick fix from hover Is: Nothing Should: Rename to s1 and set up linked mode Nothing in the log | resolved fixed | 01f706d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-03T15:29:42Z | 2008-02-27T11:00:00Z |
221,114 | Bug 221114 [breadcrumb] Does not retarget editor actions if open external | I20080226-1155 1. Open org.eclipse.jdt.ui/JavadocHoverStyleSheet.css (the css is opened in notepad) 2. Click into Java editor Is: Breadcrumb shows focus, all actions stay retargeted to the breadcrumb Should: Styled text is active, actions work on text selection Nothing in the log. Workaround, activate another editor an... | verified fixed | 7a9055a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/EditorBreadcrumb.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-03-03T11:56:47Z | 2008-03-03T10:26:40Z |
175,452 | Bug 175452 [navigation] Open external web browser from Javadoc view | Add a context function to the Javadoc view to open the page/a hyperlink in an external web browser. | resolved fixed | 811e1c2 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPluginImages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenExternalBrowserAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenExternalJavadocAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-29T15:45:56Z | 2007-02-25T13:26:40Z |
62,107 | Bug 62107 [misc] Add option to disable link with selection in Javadoc view | With browser widget enabled JavaDoc view became quite convenient. However it is annoying when it is jumping when selected context is changed. Please add an option to pin current JavaDoc view. If time permits, it will be great to remember previous pinned JavaDocs and show them in a dropdown similar to the one used for C... | resolved fixed | 5b54066 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/AbstractInfoView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/InfoViewMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-28T11:11:30Z | 2004-05-13T14:53:20Z |
117,694 | Bug 117694 [api] Applying edits to a ICompilationUnit | 20051123 It is currently quite difficult to apply a text edit to a compilation unit. Text edits are the result of the code formatter or the import rewriter. Currently edits can only be applied to IDocument. Having a compilation unit in hand, it is a lot of work or inefficient to get the corresponding document: - If the... | verified fixed | 3ea85e2 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/DocumentAdapter.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-27T14:52:49Z | 2005-11-23T10:00:00Z |
220,124 | Bug 220124 [clean up] Make field final replaces volatile with final | Build ID: M20071023-1652 Steps To Reproduce: 1. define volatile private field 2. do not write any code that sets the field 3. use clean-up with "Add final modifier to private fields" option 4. volatile keyword is now replaced with final keyword More information: Volatile field may be modified by JNI code, thus I think ... | resolved fixed | 33703da | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/VariableDeclarationFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-26T17:10:24Z | 2008-02-25T03:26:40Z |
110,774 | Bug 110774 [navigation] Javadoc view needs Back/Forward buttons | 3.2 M2 Steps to reproduce: - Open javax.swing.JDialog, show its Javadoc in the Javadoc view - Click on the link "How to Make Dialogs" - Website is correctly displayed, but: ->Back/Forward buttons are missing ->Either implement history buttons or open links to external websites in a new browser | resolved fixed | cc9e4aa | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/AbstractInfoView.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/InfoViewMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/infoviews/JavadocView.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-26T14:15:54Z | 2005-09-27T11:20:00Z |
63,149 | Bug 63149 [ltk] allow changes to be executed after the 'main' change during an undo [refactoring] | null | resolved fixed | 31c50f4 | ["org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/ElementRenameProcessor.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/ElementRenameRefactoring.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-26T10:27:31Z | 2004-05-19T23:40:00Z |
220,013 | Bug 220013 [hovering] image in Javadoc hover | null | resolved fixed | 0897f19 | ["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/JavadocBrowserInformationControlInput.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-26T09:35:19Z | 2008-02-22T17:06:40Z |
219,204 | Bug 219204 [clean up] Remove static accesses through instances may remove code with side-effects | Make sure Member Accesses --> Change all accesses through instances is selected for Clean Up. Consider the following example: package org.example; public class Thing { public static void main(final String[] args) { Thing.returnThing().returnThing().returnThing(); } public static Thing returnThing() { return new Thing()... | verified fixed | 1c24674 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CodeStyleFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-25T11:41:00Z | 2008-02-16T00:00:00Z |
210,636 | Bug 210636 [content assist] adding type sometimes adds qualification instead of importing | When trying to activate 'import' completion (ctrl-space), while typing some new code, the FDQN is added into the code instead of creating the associated import more often than not. Strange enough, if I save the edited text just before using the completion, the normal completion is applied (ie, import updated). Tis is a... | resolved fixed | cf8e956 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/ContextSensitiveImportRewriteContext.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-22T14:08:58Z | 2007-11-22T11:13:20Z |
213,455 | Bug 213455 [package explorer] Package Explorer not refreshed when changing .class file in class folder | null | verified fixed | 2b175a8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-22T11:02:53Z | 2007-12-19T13:13:20Z |
213,638 | Bug 213638 [jar exporter] create ANT build file for current settings | null | resolved fixed | a66fbc4 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/jarexport/FatJarExportTests.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarAntExporter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackageWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/interna... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-22T10:33:54Z | 2007-12-20T19:46:40Z |
208,703 | Bug 208703 [package explorer] using Go Into in the Package Explorer view removes viewContribution actions such as Focus on Active Task | "go into" in the Package Explorer view kills "Focus on Active task" action action on view toolbar. Running latest Mylyn dev build and Eclipse 3.4m3 | verified fixed | 253e543 | ["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 | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-22T10:30:51Z | 2007-11-04T18:13:20Z |
196,200 | Bug 196200 [jsr269] Need annotation bindings even when code contains errors | The JSR-269 spec, very unfortunately, requires certain information to be available to annotation processors even when the code being compiled contains semantic errors such as missing types. Here's the relevant text from the javax.lang.model.element package javadoc: "During annotation processing, operating on incomplete... | verified fixed | 1241261 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/error_out/A_test801.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/error_out/A_test802.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedTypesQuickFi... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-22T10:01:37Z | 2007-07-11T18:53:20Z |
219,844 | Bug 219844 [implementation] F2 (Show Tooltip Description) does not work in active editor after restart | I20080220-1400, as seen in today's stand-up demo - open a Java Editor - restart workbench - F2 does not work Problem is that JavaInformationProvider.update() silently fails when active page is not available (which apparently happens during startup). Furthermore, the 'fCurrentPerspective != perspectiveId' there is wrong... | resolved fixed | 14bbe90 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaInformationProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-22T08:05:46Z | 2008-02-21T18:53:20Z |
219,619 | Bug 219619 [working sets] Creating Java Working set from selected resource seems broken | N20080220-0010. Creating Java Working set from selected resource seems broken. I tried with an IFile from the Sync view and a CU from the Types view. | verified fixed | 5db3ad4 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewJavaWorkingSetWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-21T16:58:24Z | 2008-02-20T17:53:20Z |
219,772 | Bug 219772 [hovering] rich quick fix hover glitches | HEAD as of now - Tooltip should have SWT.TOOL shadow - Problem message should be selectable/copyable - Problem message is cut when hover is resized. Text widget should wrap and become higher. Experiment with spelling errors with various lengths - The upper separator line should be moved up a few pixels | resolved fixed | db056b9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AbstractAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-21T15:37:07Z | 2008-02-21T13:20:00Z |
219,607 | Bug 219607 [hovering] Rich Problem hover doesn't show spelling quick fixes | N20080221-0010. The rich Problem hover doesn't show spelling quick fixes. | resolved fixed | a1df618 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/ProblemHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-21T10:05:52Z | 2008-02-20T15:06:40Z |
219,608 | Bug 219608 [clean up] Code clean up does not remove outer class qualifier if possible | null | resolved fixed | 67c04a8 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CodeStyleFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-21T09:12:26Z | 2008-02-20T15:06:40Z |
210,676 | Bug 210676 [quick assist] 'Convert to StringBuffer' should end in linked mode for name | HEAD The 'Convert to StringBuffer' quick assist should end in linked mode for all occurrences of the name. | resolved fixed | e02e252 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-20T23:57:41Z | 2007-11-22T16:46:40Z |
219,478 | Bug 219478 [clean up] Code clean up mistakenly removes a required "this" keyword | null | verified fixed | 809f98f | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/CleanUpTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/fix/CodeStyleFix.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-20T16:03:24Z | 2008-02-19T16:53:20Z |
140,886 | Bug 140886 [api] Offer simpler access to proposal computers preferences | Since Mylar has a policy of ensuring no manual preference configuration on install, we have a wizard that automatically sets our proposal computers as the default. However, this currently involves the hack of duplicating the current preference functionality (code is below). 1) Would it be possible to expose this propos... | resolved fixed | e795ed2 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-20T09:21:49Z | 2006-05-09T18:40:00Z |
219,231 | Bug 219231 Compiler warnings in N20080216-0010 | /ui/org/eclipse/jdt/internal/ui/viewsupport/ColoringLabelProvider.java : 1 warning : OTHER WARNINGS 1. WARNING in /ui/org/eclipse/jdt/internal/ui/viewsupport/ColoringLabelProvider.java (at line 31) private ColorRegistry fRegistry; The field ColoringLabelProvider.fRegistry is never read locally | resolved fixed | a74260c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ColoringLabelProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-19T10:28:48Z | 2008-02-16T16:40:00Z |
219,326 | Bug 219326 Shell with custom region and SWT.NO_TRIM still has border | null | resolved fixed | b04b3ba | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameInformationPopup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-18T15:51:48Z | 2008-02-18T15:53:20Z |
216,412 | Bug 216412 [ccp] Allow pasting text for methods and statements into Package Explorer | I20080122-0800. I often don't have a class around my code snippet. In such cases I have to manually create a project and a class first. To fasten this process I have my empty class stub read in order to use the smart text paste feature. It would be great if I could simply paste statements or methods and then the corres... | resolved fixed | 25e93e6 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/PasteAction.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/ReorgMessages.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-15T15:43:13Z | 2008-01-24T10:20:00Z |
218,149 | Bug 218149 [breadcrumb] context menu > Show In > Package Explorer shows editor input | I20080206-1800 - select a package fragemnt root in the breadcrumb bar - context menu > Show In > Package Explorer => was: shows editor input => expected: shows selection | resolved fixed | 5d22cbd | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-15T11:51:40Z | 2008-02-07T10:26:40Z |
218,509 | Bug 218509 Small bug in spelling problem information | In class JavaSpellingProblem, in the following line postfix= fDocument.get(end + 1, line.getOffset() + line.getLength() - end); I think, the addition of "+ 1" is not correct, it removes the char directly behind the word. | resolved fixed | 3bc3b6f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/CoreSpellingProblem.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/JavaSpellingProblem.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2008-02-15T11:38:22Z | 2008-02-11T14:26:40Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.