issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
updated_files
stringlengths
29
34.1k
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
unknown
report_datetime
unknown
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.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyViewPart.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchScopeActionGroup.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SelectFieldModeAction.java"]
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 increase the limit on auto-activation triggers to 53 (26 + 26 + 1), or greater, to allow people to configure this functionality. I have been using it for over a year and really love it. I'm attaching the plugin if people would like to try it out. Once the plugin is in, type Ctrl-Alt-Shift-Z to have it set the auto-activation property. The plugin is called "HyperAssist" (org.popejoy.hyperassist). Thanks, Stuart
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. public class OuterClass { InnerClass ic; // 1 public class InnerClass { // 2 public InnerClass| { // 3 } } } Initiating rename from 3 causes only 2 and 3 to be linked. Initiating rename from 1 or 2 causes all three to be linked. I don't always hit Enter to opt for the full refactoring if the change is local to the current class, because it takes a second to perform the refactoring, and the editor window closing and reopening is jarring :)
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= (String) o; } } }
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 the next test can start in a cleaner state.
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 compliance If 'should' is not feasible it should at least tell me why it can not paste the content.
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 forth.
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.testHierarchyWithWorkingCopy1(TypeHierarchyTest.java:161) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) at junit.extensions.TestSetup$1.protect(TestSetup.java:21) at junit.extensions.TestSetup.run(TestSetup.java:25) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.UITestApplication$3.run(UITestApplication.java:195) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3750) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3375) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2351) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2315) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2181) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:477) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:472) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:112) at org.eclipse.test.UITestApplication.runApplication(UITestApplication.java:138) at org.eclipse.test.UITestApplication.run(UITestApplication.java:60) at org.eclipse.test.UITestApplication.start(UITestApplication.java:210) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:375) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30)
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.ASTRewrite fRewrite of org.eclipse.jdt.internal.ui.text.correction.proposals.ASTRewriteCorrectionProposal val$proposal of org.eclipse.jdt.internal.ui.text.java.hover.AbstractAnnotationHover$4 eventListener of org.eclipse.swt.widgets.TypedListener [2] of org.eclipse.swt.widgets.Listener[4] listeners of org.eclipse.swt.widgets.EventTable eventTable of org.eclipse.swt.widgets.Label [2764] of org.eclipse.swt.widgets.Control[3072] controlTable of org.eclipse.swt.widgets.Display [JNI Global, Stack Local]
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.eclipse.jdt.ui.tests.refactoring] is not on its project's build path] at org.eclipse.jdt.internal.core.JavaElement.newJavaModelException(JavaElement.java:501) at org.eclipse.jdt.internal.core.Openable.generateInfos(Openable.java:245) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed(JavaElement.java:514) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:251) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:237) at org.eclipse.jdt.internal.core.PackageFragmentRoot.getKind(PackageFragmentRoot.java:507) at org.eclipse.jdt.internal.corext.javadoc.JavaDocLocations.getJavadocBaseLocation(JavaDocLocations.java:296) at org.eclipse.jdt.internal.corext.javadoc.JavaDocLocations.getJavadocLocation(JavaDocLocations.java:452) at org.eclipse.jdt.ui.JavaUI.getJavadocLocation(JavaUI.java:980) at org.eclipse.jdt.internal.ui.actions.OpenExternalBrowserAction.canEnable(OpenExternalBrowserAction.java:117) at org.eclipse.jdt.internal.ui.actions.OpenExternalBrowserAction.selectionChanged(OpenExternalBrowserAction.java:58) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchSelectionChanged(SelectionDispatchAction.java:262) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.selectionChanged(SelectionDispatchAction.java:257) at org.eclipse.jdt.internal.ui.actions.SimpleSelectionProvider.setSelection(SimpleSelectionProvider.java:59) at org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover$1.inputChanged(JavadocHover.java:298) at org.eclipse.jface.internal.text.html.BrowserInformationControl.setInput(BrowserInformationControl.java:336) at org.eclipse.jface.text.StickyHoverManager.internalShowInformationControl(StickyHoverManager.java:463) at org.eclipse.jface.text.AbstractInformationControlManager.presentInformation(AbstractInformationControlManager.java:1087) at org.eclipse.jface.text.AbstractInformationControlManager.setInformation(AbstractInformationControlManager.java:371) at org.eclipse.jface.text.StickyHoverManager.computeInformation(StickyHoverManager.java:311) at org.eclipse.jface.text.AbstractInformationControlManager.doShowInformation(AbstractInformationControlManager.java:1071) at org.eclipse.jface.text.AbstractInformationControlManager.showInformation(AbstractInformationControlManager.java:1061) at org.eclipse.jface.text.StickyHoverManager.replaceInformationControl(StickyHoverManager.java:424) at org.eclipse.jface.text.AbstractInformationControlManager.replaceInformationControl(AbstractInformationControlManager.java:1213) at org.eclipse.jface.text.AbstractHoverInformationControlManager.replaceInformationControl(AbstractHoverInformationControlManager.java:796) at org.eclipse.jface.text.TextViewerHoverManager.replaceInformationControl(TextViewerHoverManager.java:309) at org.eclipse.jface.text.AbstractHoverInformationControlManager.startReplaceInformationControl(AbstractHoverInformationControlManager.java:836) at org.eclipse.jface.text.AbstractHoverInformationControlManager.access$2(AbstractHoverInformationControlManager.java:826) at org.eclipse.jface.text.AbstractHoverInformationControlManager$Closer.handleMouseMove(AbstractHoverInformationControlManager.java:385) at org.eclipse.jface.text.AbstractHoverInformationControlManager$Closer.handleEvent(AbstractHoverInformationControlManager.java:348) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1160) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1001) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1011) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:769) at org.eclipse.swt.browser.IE.handleMouseEvent(IE.java:1035) at org.eclipse.swt.browser.IE$2.handleEvent(IE.java:211) at org.eclipse.swt.ole.win32.OleEventTable.sendEvent(OleEventTable.java:55) at org.eclipse.swt.ole.win32.OleEventSink.notifyListener(OleEventSink.java:145) at org.eclipse.swt.ole.win32.OleEventSink.Invoke(OleEventSink.java:120) at org.eclipse.swt.ole.win32.OleEventSink.access$1(OleEventSink.java:97) at org.eclipse.swt.ole.win32.OleEventSink$1.method6(OleEventSink.java:71) at org.eclipse.swt.internal.ole.win32.COMObject.callback6(COMObject.java:119) at org.eclipse.swt.internal.win32.OS.$$YJP$$DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2343) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3370) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2375) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2339) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2205) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:478) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:473) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
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 the statement on LINE 4, and see that the extract method wizard doesn't offer a choice of destination types. ----------------- Bug.java ----------------------- class Bug{ Bug(){ new Object(){{ System.out.println();//LINE 4 }};}}
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.collectNLSFilesFromJavaElements(FindBrokenNLSKeysAction.java:301) at org.eclipse.jdt.internal.ui.actions.FindBrokenNLSKeysAction.collectNLSFilesFromJavaElements(FindBrokenNLSKeysAction.java:310) at org.eclipse.jdt.internal.ui.actions.FindBrokenNLSKeysAction.collectNLSFilesFromJavaElements(FindBrokenNLSKeysAction.java:316) at org.eclipse.jdt.internal.ui.actions.FindBrokenNLSKeysAction.collectNLSFilesFromJavaElements(FindBrokenNLSKeysAction.java:327) at org.eclipse.jdt.internal.ui.actions.FindBrokenNLSKeysAction.getNLSFiles(FindBrokenNLSKeysAction.java:196) at org.eclipse.jdt.internal.ui.actions.FindBrokenNLSKeysAction.run(FindBrokenNLSKeysAction.java:137) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:274) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:250) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:410) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3773) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3372) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2375) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2339) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2205) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:478) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:473) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
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>.Entry<K,V>' with 'java.util' qualifier I find (2) inconsistent. (1) is more concise, and doesn't provide enclosing type as completion name (only as qualifier, which it really is). Also, in (2) the proposed named suggests arguments for Map, which is irrelevant, since a raw type got entered (completion is behind the dot). Note that it only inserts a raw type in the end.
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/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.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-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/testDeleteWithinCu25/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/Delete/testDeleteWithinCu26/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/Delete/testDeleteWithinCu26/out/A.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/ccp/DeleteTest.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ASTNodeDeleteUtil.java"]
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 FocusListener and call a hook method focusLost() (which can be extended or reimplemented by subclasses with special needs). To support content assist in table cells (such as in the Change Method Signature dialog), we need to stay in editing mode even while the proposal list has focus. This is currently not implementable, since TableViewerImpl deactivates the CellEditor even if the CellEditor's focusLost() is reimplemented. The fix is to simply remove the redundant FocusListener in TableViewerImpl.
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 6 - invoke CA at cursor (|): java.util.Map.E| before 332: java.util.Map.Entry is added after 332 (and this is the bug): java.util.Map.java.util.Map.Entry is added As a variation, also note that if you remove all the text before the interface icon, you'll notice it gets highlighted as proposing some Content Assist. Invoke CA: nothing shows-up --> we should not suggest there might be CA when none will be displayed.
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~1\Temp\jdt-images41608\28.png (The system cannot find the path specified)) at org.eclipse.swt.SWT.error(SWT.java:3756) at org.eclipse.swt.SWT.error(SWT.java:3674) at org.eclipse.swt.graphics.ImageLoader.save(ImageLoader.java:238) at org.eclipse.jdt.internal.ui.viewsupport.ImagesOnFileSystemRegistry.getImageURL(ImagesOnFileSystemRegistry.java:83) at org.eclipse.jdt.internal.ui.viewsupport.ImagesOnFileSystemRegistry.getImageURL(ImagesOnFileSystemRegistry.java:67) at org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover.getInfoText(JavadocHover.java:629) at org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover.getHoverInfo(JavadocHover.java:546) at org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover.internalGetHoverInfo(JavadocHover.java:507) at org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover.getHoverInfo2(JavadocHover.java:492) at org.eclipse.jdt.internal.ui.text.java.hover.BestMatchHover.getHoverInfo2(BestMatchHover.java:129) at org.eclipse.jdt.internal.ui.text.java.hover.JavaEditorTextHoverProxy.getHoverInfo2(JavaEditorTextHoverProxy.java:82) at org.eclipse.jface.text.TextViewerHoverManager$4.run(TextViewerHoverManager.java:166) Caused by: java.io.FileNotFoundException: C:\DOCUME~1\MRennie\LOCALS~1\Temp\jdt-images41608\28.png (The system cannot find the path specified) at java.io.FileOutputStream.open(Native Method) at java.io.FileOutputStream.<init>(Unknown Source) at java.io.FileOutputStream.<init>(Unknown Source) at org.eclipse.swt.internal.Compatibility.newFileOutputStream(Compatibility.java:193) at org.eclipse.swt.graphics.ImageLoader.save(ImageLoader.java:236) ... 9 more
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(ApplicationWindow.java:758) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.window.ApplicationWindow.run(ApplicationWindow.java:755) at org.eclipse.ui.internal.WorkbenchWindow.run(WorkbenchWindow.java:2455) at org.eclipse.ui.internal.progress.ProgressManager$5.run(ProgressManager.java:1217) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.progress.ProgressManager.runInUI(ProgressManager.java:1210) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$TextPaster.paste(PasteAction.java:952) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction.run(PasteAction.java:244) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:268) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:244) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:119) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:471) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:822) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:511) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:126) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1160) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1001) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1011) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1039) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1035) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1351) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3888) at org.eclipse.swt.widgets.Tree.WM_CHAR(Tree.java:5631) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3781) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:5627) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4473) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2339) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3370) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2375) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2339) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2205) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:478) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:473) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30) Caused by: java.lang.IllegalArgumentException at org.eclipse.jdt.core.dom.rewrite.ASTRewrite.createStringPlaceholder(ASTRewrite.java:559) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.createOrFillTypeDeclaration(PasteAction.java:796) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.pasteBodyDeclsOrStatements(PasteAction.java:742) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.pasteCU(PasteAction.java:683) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.access$1(PasteAction.java:627) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$2.run(PasteAction.java:609) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:39) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:709) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:4658) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:4615) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.run(PasteAction.java:596) at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:407) ... 61 more Root exception: java.lang.IllegalArgumentException at org.eclipse.jdt.core.dom.rewrite.ASTRewrite.createStringPlaceholder(ASTRewrite.java:559) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.createOrFillTypeDeclaration(PasteAction.java:796) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.pasteBodyDeclsOrStatements(PasteAction.java:742) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.pasteCU(PasteAction.java:683) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.access$1(PasteAction.java:627) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$2.run(PasteAction.java:609) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:39) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:709) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1800) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:4658) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:4615) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$1.run(PasteAction.java:596) at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:407) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:347) at org.eclipse.jface.window.ApplicationWindow$1.run(ApplicationWindow.java:758) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.jface.window.ApplicationWindow.run(ApplicationWindow.java:755) at org.eclipse.ui.internal.WorkbenchWindow.run(WorkbenchWindow.java:2455) at org.eclipse.ui.internal.progress.ProgressManager$5.run(ProgressManager.java:1217) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.progress.ProgressManager.runInUI(ProgressManager.java:1210) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$TextPaster.paste(PasteAction.java:952) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction.run(PasteAction.java:244) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:268) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:244) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.commands.ActionHandler.execute(ActionHandler.java:119) at org.eclipse.core.commands.Command.executeWithChecks(Command.java:476) at org.eclipse.core.commands.ParameterizedCommand.executeWithChecks(ParameterizedCommand.java:508) at org.eclipse.ui.internal.handlers.HandlerService.executeCommand(HandlerService.java:169) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:471) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:822) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:880) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:569) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$3(WorkbenchKeyboard.java:511) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$KeyDownFilter.handleEvent(WorkbenchKeyboard.java:126) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1160) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1001) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1011) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1039) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1035) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1351) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3888) at org.eclipse.swt.widgets.Tree.WM_CHAR(Tree.java:5631) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3781) at org.eclipse.swt.widgets.Tree.windowProc(Tree.java:5627) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4473) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2339) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3370) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2375) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2339) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2205) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:478) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:473) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30) Trying to paste: enum Day {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY}; Results in a dialog telling my that paste is not possible. No idea why.
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, SATURDAY};
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 most of the CPU and Eclipse only reacted on UI events after 20s or more. The event loop in BreadcrumbItemDropDown.showMenu(BreadcrumbItemDropDown.java:340) looks suspicious. I guess it should include another break condition to ensure that showMenu(..) cannot be called recursively. "main" prio=6 tid=0x00397800 nid=0x86c runnable [0x009de000..0x009dfe68] java.lang.Thread.State: RUNNABLE at org.eclipse.swt.internal.win32.OS.$$YJP$$SendMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.SendMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.SendMessage(OS.java:3057) at org.eclipse.swt.widgets.Tree.getItems(Tree.java:3195) at org.eclipse.swt.widgets.TreeItem.getItems(TreeItem.java:784) at org.eclipse.jface.viewers.TreeViewer.getChildren(TreeViewer.java:155) at org.eclipse.jface.viewers.AbstractTreeViewer.internalFindItem(AbstractTreeViewer.java:1760) at org.eclipse.jface.viewers.AbstractTreeViewer.doFindItem(AbstractTreeViewer.java:886) at org.eclipse.jface.viewers.StructuredViewer.findItems(StructuredViewer.java:779) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1959) at org.eclipse.jface.viewers.ColumnViewer.update(ColumnViewer.java:543) at org.eclipse.jface.viewers.StructuredViewer.update(StructuredViewer.java:1908) at org.eclipse.jface.viewers.StructuredViewer.handleLabelProviderChanged(StructuredViewer.java:1118) at org.eclipse.jface.viewers.ContentViewer$1.labelProviderChanged(ContentViewer.java:74) at org.eclipse.jdt.ui.ProblemsLabelDecorator.fireProblemsChanged(ProblemsLabelDecorator.java:386) at org.eclipse.jdt.ui.ProblemsLabelDecorator.access$0(ProblemsLabelDecorator.java:381) at org.eclipse.jdt.ui.ProblemsLabelDecorator$1.problemsChanged(ProblemsLabelDecorator.java:361) at org.eclipse.jdt.internal.ui.viewsupport.ProblemMarkerManager$1.run(ProblemMarkerManager.java:179) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) - locked <0x17e90890> (a org.eclipse.swt.widgets.RunnableLock) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3750) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3375) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown.showMenu(BreadcrumbItemDropDown.java:340) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown$1.run(BreadcrumbItemDropDown.java:91) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3773) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3372) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown.showMenu(BreadcrumbItemDropDown.java:340) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown$1.run(BreadcrumbItemDropDown.java:91) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3773) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3372) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown.showMenu(BreadcrumbItemDropDown.java:340) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown$1.run(BreadcrumbItemDropDown.java:91) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3773) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3372) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown.showMenu(BreadcrumbItemDropDown.java:340) at org.eclipse.jdt.internal.ui.javaeditor.breadcrumb.BreadcrumbItemDropDown$1.run(BreadcrumbItemDropDown.java:91) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3773) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3372) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2368) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2332) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:476) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:471) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
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.Assert.isLegal(Assert.java:46) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView.computeAndDoSetInput(AbstractInfoView.java:522) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView.setInput(AbstractInfoView.java:511) at org.eclipse.jdt.internal.ui.text.java.hover.JavadocHover$ShowInJavadocViewAction.run(JavadocHover.java:164) at org.eclipse.jface.action.Action.runWithEvent(Action.java:498) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:582) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:499) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:451) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:982) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3760) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3371) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2392) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2356) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2222) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:474) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:469) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:564) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1251) at org.eclipse.equinox.launcher.Main.main(Main.java:1227) at org.eclipse.core.launcher.Main.main(Main.java:30)
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 the long run to provide preferences for these values. Examples include: - main popup color - secondary popup color - autoactivation delay When this is investigated, check for the state of the art in JDT prefs.
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 org.eclipse.jdt.internal.ui.javaeditor.JavaEditorBreadcrumb.getCurrentInput(JavaEditorBreadcrumb.java:588) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorBreadcrumb.setInput(JavaEditorBreadcrumb.java:563) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.setBreadcrumbInput(JavaEditor.java:1913) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.selectionChanged(JavaEditor.java:2167) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$EditorSelectionChangedListener.selectionChanged(JavaEditor.java:296) at org.eclipse.jface.text.TextViewer.firePostSelectionChanged(TextViewer.java:2584) at org.eclipse.jface.text.TextViewer.firePostSelectionChanged(TextViewer.java:2536) at org.eclipse.jface.text.TextViewer$5.run(TextViewer.java:2515) at org.eclipse.swt.widgets.Display.runTimer(Display.java:3835) at org.eclipse.swt.widgets.Display.messageProc(Display.java:3041) at org.eclipse.swt.internal.win32.OS.$$YJP$$DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3369) at org.eclipse.jface.window.Window.runEventLoop(Window.java:825) at org.eclipse.jface.window.Window.open(Window.java:801) at org.eclipse.ui.internal.views.log.EventDetailsDialog.open(EventDetailsDialog.java:162) at org.eclipse.ui.internal.views.log.EventDetailsDialogAction.run(EventDetailsDialogAction.java:98) at org.eclipse.ui.internal.views.log.LogView$14.doubleClick(LogView.java:495) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:799) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:857) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:797) at org.eclipse.jface.viewers.AbstractTreeViewer.handleDoubleSelect(AbstractTreeViewer.java:1419) at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1173) at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:237) at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:234) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:295) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3772) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3371) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2368) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2332) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:476) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:471) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
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.eclipse.swt.SWT.error(SWT.java:3756) at org.eclipse.swt.SWT.error(SWT.java:3674) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:133) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3749) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3374) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:165) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:360) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:503) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run(ProgressMonitorJobsDialog.java:275) at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.disconnectFromWorkspace(IDEWorkbenchAdvisor.java:397) at org.eclipse.ui.internal.ide.application.IDEWorkbenchAdvisor.postShutdown(IDEWorkbenchAdvisor.java:314) at org.eclipse.ui.internal.Workbench.shutdown(Workbench.java:2694) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:927) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:844) at org.eclipse.ui.internal.Workbench$22.run(Workbench.java:1088) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1086) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1058) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:695) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:674) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:790) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:788) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:741) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:687) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:83) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1002) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1026) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1011) at org.eclipse.swt.widgets.Decorations.closeWidget(Decorations.java:306) at org.eclipse.swt.widgets.Decorations.WM_CLOSE(Decorations.java:1622) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3778) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1555) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1909) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4472) at org.eclipse.swt.internal.win32.OS.$$YJP$$DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(OS.java) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2331) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:474) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3866) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1555) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1909) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4472) at org.eclipse.swt.internal.win32.OS.$$YJP$$DefWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(OS.java) at org.eclipse.swt.internal.win32.OS.DefWindowProc(OS.java:2331) at org.eclipse.swt.widgets.Shell.callWindowProc(Shell.java:474) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3866) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:334) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1555) at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1909) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4472) at org.eclipse.swt.internal.win32.OS.$$YJP$$DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(OS.java) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3369) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2368) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2332) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2198) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:476) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:471) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:362) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:175) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorBreadcrumb$1.run(JavaEditorBreadcrumb.java:349) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:130) ... 77 more
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) - SelectMarkerRulerAction (to find the annotations on a single line) - AbstractAnnotationHover (to find the annotations on a document region) - AnnotationPainter (intersection of document range and viewport-visible) Of these, especially AnnotationPainter and AnnotationRulerColumn are performance relevant as they are constantly updated when the document, the viewport or the annotation model changes. We should investigate the cost of maintaining a positional index of the contained annotations in AnnotationModel, which would allow to offer range based queries to clients. Queries could allow character or line ranges.
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/jdt/internal/ui/text/correction/TypeMismatchSubProcessor.java"]
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.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/GetterSetterCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaFieldWithCastedReceiverCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaTypeCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/LazyJavaCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodDeclarationCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/OverrideCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/HTMLTagCompletionProposalComputer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/contentassist/TemplateProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalCollector.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/CompletionProposalLabelProvider.java"]
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
"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 the manifest in the workspace option 8. the button Finish is still disabled, although it should be enabled yet. More information: Because I have previously saved manifest, I have got there a default value, but when I uncheck it, I can't click on the Finish button. Finally it's also preventing me from erasing the default value.
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(Assert.java:84) at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:72) at org.eclipse.jdt.internal.corext.refactoring.typeconstraints.types.HierarchyType.initialize(HierarchyType.java:32) ... This is only one example of many, i.e.: package test; import java.util.ArrayList; public class Other { public void foo() { ArrayList list= new Arrayist(); } } The refactoring can not handle compile errors (rsp. missing bindings) at all. It was never designed for this. We need to disable the quick fixes if there is a compile error. The refactoring just skips cus with compile errors.
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.ImageDescriptor.createImage(ImageDescriptor.java:289) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:227) at org.eclipse.jface.resource.ImageDescriptor.createImage(ImageDescriptor.java:205) at org.eclipse.jdt.internal.ui.refactoring.CreateTextFileChangePreviewViewer$CreateTextFilePreviewer.setText(CreateTextFileChangePreviewViewer.java:72) at org.eclipse.jdt.internal.ui.refactoring.CreateTextFileChangePreviewViewer.setInput(CreateTextFileChangePreviewViewer.java:138) at org.eclipse.ltk.internal.ui.refactoring.AbstractChangeNode.feedInput(AbstractChangeNode.java:101) at org.eclipse.ltk.internal.ui.refactoring.PreviewWizardPage.showPreview(PreviewWizardPage.java:600) at org.eclipse.ltk.internal.ui.refactoring.PreviewWizardPage.access$6(PreviewWizardPage.java:585) at org.eclipse.ltk.internal.ui.refactoring.PreviewWizardPage$7.selectionChanged(PreviewWizardPage.java:576)
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: Only one problem can be fixed Should: Both problems should be fixable
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/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbViewer.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/breadcrumb/BreadcrumbViewerRow.java"]
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); The problem is that this is an internal reference to ID. We can of course just hard code the string defined in ID, but this doesn't protect us from this string changing in the future. Should this ID constant perhaps be defined in a public constants file? It is also possible that I am missing something here, and there is already a way to do this.
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 imports. This operation should be allowed to proceed while CVS commits are happening. More information:
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 and go back.
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/JavadocView.java"]
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 Console view or even better in a tabs.
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 compilation unit is a primary working copy, you go the FileBuffers to get the document: ITextFileBufferManager bufferManager= FileBuffers.getTextFileBufferManager(); IPath path= compilationUnit.getPath(); bufferManager.connect(path, monitor); document= bufferManager.getTextFileBuffer(path).getDocument(); ... textEdit.apply(document).... bufferManager.disconnect(path, monitor); - If the compilation unit is a non-primary working copy then you have to build a document yourself, which is very inefficient (copying content): Document document= new Document(compilationUnit.getSource()) ... textEdit.apply(document).... compilationUnit.getBuffer().setContents(document.get()) We need an easier way to apply edits on documents, to offer a nicer story to clients. Here are some suggestions: a.) Get a document from the compilation unit: openable.getDocument(). The compilation builds a wrapper that implements IDocument but redirects to IBuffer. + simple API - Users must understand that the returned document is not the document managed by filebuffers: Some of the API would be 'not supported', e.g. you don't get positions and have no partitions. Regarding of funtionality, this is not a problem (to apply a change you don't need these features), but could be confusing. b.) Add a method apply(textEdit) to IBuffer. Problem is IBuffer in implemented by clients, so it can not be extended. A new 'extension' could be added, IRichBuffer or abstract class RichBuffer, where clients can check for with a cast. Implementors of WorkingCopyOwner would return such 'rich buffers' and can e.g. forward a call apply(textEdit) directly to the underlying document. + most efficient, no additional indirection + at the same time line position API could be added to the rich buffers, solving the biggest usability problem with buffers. - Extra cast is not so nice. Maybe IOpenable should offer getRichBuffer that replaces getBuffer
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 it's not correct to apply the clean up rule in this case.
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/refactoring/tests/participants/ElementWorking.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/ElementWorkingPre.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/ElementWorkingPreAlways.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/FailingParticipantTests.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/WorkingParticipant.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/participants/WorkingParticipantPre.java", "org.eclipse.ltk.core.refactoring.tests/src/org/eclipse/ltk/core/refactoring/tests/resource/ResourceRefactoringUndoTests.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/IRefactoringCoreStatusCodes.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/participants/ProcessorBasedRefactoring.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/participants/RefactoringParticipant.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/RefactoringCoreMessages.java", "org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/RefactoringCorePlugin.java"]
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/viewsupport/ImagesOnFileSystemRegistry.java"]
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(); } } Running Clean Up reduces this to (Note the missing returnThing() invocations.) package org.example; public class Thing { public static void main(final String[] args) { Thing.returnThing(); } public static Thing returnThing() { return new Thing(); } } thus removing valid code. I ran into this while using commons-cli's BuildOption and Clean Up completely broke my program.
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 little bit painful, it was working so fine in 3.2 :)
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/internal/ui/jarpackagerfat/FatJarPackageWizardPage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackagerMessages.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackagerfat/FatJarPackagerUtil.java"]
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 or erroneous programs is necessary; however, there are fewer guarantees about the nature of the resulting model. If the source code is not syntactically well-formed, a model may or may not be provided as a quality of implementation issue. If a program is syntactically valid but erroneous in some other fashion, the returned model must have no less information than if all the method bodies in the program were replaced by "throw new RuntimeException();". If a program refers to a missing type XYZ, the returned model must contain no less information than if the declaration of type XYZ were assumed to be "class XYZ {}", "interface XYZ {}", "enum XYZ {}", or "@interface XYZ {}". If a program refers to a missing type XYZ<K1, ... ,Kn>, the returned model must contain no less information than if the declaration of XYZ were assumed to be "class XYZ<T1, ... ,Tn> {}" or "interface XYZ<T1, ... ,Tn> {}" Note that this spec is ambiguous, is probably not perfectly implementable even in principle, and does not provide any real benefit to users; however, it is unlikely that we can get Sun to substantially change it. The 6.0 javac compiler does implement the described functionality. To implement this in Eclipse, I think we need annotation bindings (of some sort) to be available in the compiler even when the annotated types are unresolved. I don't know if this is possible or practical, but this bug report can serve as a discussion forum. I have added a test case, org.eclipse.jdt.compiler.apt.tests.NegativeTests, that demonstrates the problem. The test case currently fails (and therefore is not part of the TestAll suite).
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/UnresolvedTypesQuickFixTest.java"]
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. I also fail to see why a new JavaTypeHover must be created for *all* Java editors on the first partActivated or partBroughtToTop event that happens after (not during!) a perspective switch.
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 proposal computer inclusion setting preference page behavior to avoid the duplication (internally for now, perhaps candidate for API later)? 2) If not, what is the mechanism to ensure that the new proposal computers are registered with existing editors? Currently the code below doesn't register them until restart, but changing the settings in the prefs page take effect immediately. ------------------------- public static void installContentAssist(IPreferenceStore javaPrefs, boolean mylarContentAssist) { String oldValue = javaPrefs.getString(PreferenceConstants.CODEASSIST_EXCLUDED_CATEGORIES); StringTokenizer tokenizer = new StringTokenizer(oldValue, SEPARATOR_CODEASSIST); Set<String> disabledIds = new HashSet<String>(); while (tokenizer.hasMoreTokens()) { disabledIds.add((String) tokenizer.nextElement()); } if (!mylarContentAssist) { disabledIds.remove(ASSIST_JDT_TYPE); disabledIds.remove(ASSIST_JDT_NOTYPE); disabledIds.add(ASSIST_MYLAR_NOTYPE); disabledIds.add(ASSIST_MYLAR_TYPE); } else { disabledIds.add(ASSIST_JDT_TYPE); disabledIds.add(ASSIST_JDT_NOTYPE); disabledIds.remove(ASSIST_MYLAR_NOTYPE); disabledIds.remove(ASSIST_MYLAR_TYPE); } String newValue = ""; for (String id : disabledIds) { newValue += id + SEPARATOR_CODEASSIST; } javaPrefs.setValue(PreferenceConstants.CODEASSIST_EXCLUDED_CATEGORIES, newValue); } if (!mylarContentAssist) { disabledIds.remove(ASSIST_JDT_TYPE); disabledIds.remove(ASSIST_JDT_NOTYPE); disabledIds.add(ASSIST_MYLAR_NOTYPE); disabledIds.add(ASSIST_MYLAR_TYPE); } else { disabledIds.add(ASSIST_JDT_TYPE); disabledIds.add(ASSIST_JDT_NOTYPE); disabledIds.remove(ASSIST_MYLAR_NOTYPE); disabledIds.remove(ASSIST_MYLAR_TYPE); } String newValue = ""; for (String id : disabledIds) { newValue += id + SEPARATOR_CODEASSIST; } javaPrefs.setValue(PreferenceConstants.CODEASSIST_EXCLUDED_CATEGORIES, newValue); }
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 corresponding stuff would be created for me.
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"