id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
4,435 | 52,361 |
Bug 52361 [templates] linked mode not exited / annotations not redrawn when inserting anonymous completion
|
M7 0. Auto-closed parenthesis on 1. Insert this code: import java.lang.Runnable; void m() { method(<caret> } -> closing parenthesis gets inserted -> linked mode entered 2. type "new Runnable(" -> nested linked mode is entered for second parenthesis, also autoclosed 3. use code completion to complete the anonymous type -> you end up with this code: void m() { method(new Runnable() { public void run() { } }) } -> Linked mode is still drawn 4. Press <Tab> or <Enter> -> linked mode is not exited -> annotations keep being drawn The only way to get away with the annotations is to open a new parenthesis somewhere outside the initial code.
|
2004-02-18 10:01:42
| 1,077,120,000 |
verified fixed
|
7413ec3
| 1,077,550,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/link/LinkedPositionAnnotations.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/link/LinkedUIControl.java
|
JDT
|
4,436 | 52,476 |
Bug 52476 [painting] redraw behavior
|
build M7 Annotated method AnnotationPainter.handleDrawRequest with a repaint counter. 1) Open TestCase.java 2) add line >String s= < to tearDown method, set caret at end of line 3) spell checking enabled, otherwise default settings 3) type a single space -> 1 immediate repaint, 3 after timeout 4) type " -> auto inserted closing " + linked mode -> 10 immediate repaints, 3 after timeout
|
2004-02-19 10:09:50
| 1,077,200,000 |
resolved fixed
|
4f2336a
| 1,077,540,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/link/LinkedUIControl.java
|
JDT
|
4,437 | 52,352 |
Bug 52352 refactor: extract local variable: default: no selection of ... for literal expressions
|
When I am extracting a local variable from a trivial/literal expression, e.g. true, 100, ... I do NOT want to replace occurrences of that expression, because the next expression e.g. true may have a totally independent/orthogonal semantic and value. In all other cases (complex expressions) the current default is o.k. best regards Thorsten van Ellen
|
2004-02-18 06:24:53
| 1,077,100,000 |
resolved fixed
|
5c5c2ca
| 1,077,540,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractConstantRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/code/ExtractMethodInputPage.java
|
JDT
|
4,438 | 47,316 |
Bug 47316 [Junit] Add support to run/re-run an individual test which requires some setup
|
(based on a discussion with Dirk) The JUnit plug-in supports to run or re-run a single test. However, this only works for simple tests which don't depend on being decorated by some setup. In the case of decorated test suites you always have to run the entire suite and you cannot run an individual test. Proposal: A decorated test suite is created in a static suite() method: class SomeTest: public static Test suite() { return new SomeSetup(new TestSuite(SomeTest.class)); } To decorate a single test method clients can provide a similar method called setUpTest: class SomeTest: public static Test setUpTest(Test someTest) { return new SomeSetup(someTest); } This method will be invoked by the JUnit run-time when someTest is about to be executed indivudually (e.g. run a single test, re-rerun a failed test). Instead of executing "someTest" the Test returned from setUpTest will be executed. I've released a first version into head, pls let me know whether this addresses your needs.
|
2003-11-23 15:09:51
| 1,069,620,000 |
resolved fixed
|
d16ecfa
| 1,077,540,000 |
org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/ExtractTempTests.java
|
JDT
|
4,439 | 52,750 |
Bug 52750 correct indentation messes with comment boxes
|
3m7 /* ******** */ /* */ /* ******** */ comes out /* ******** */ /* */ /* ******** */
|
2004-02-21 17:33:35
| 1,077,400,000 |
resolved fixed
|
32c050f
| 1,077,530,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.java
|
JDT
|
4,440 | 51,954 |
Bug 51954 IOException while generating Javadoc
|
M7 build Try to generate Javadoc for the package org.eclipse.jdt.internal.corext.refactoring.participants.xml. java.io.IOException: CreateProcess: C:\apps\java\jdk1.4.2\bin\javadoc.exe -d c:\tmp\testdoc - sourcepath "C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.jdt.ui \ui;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.jdt.ui\ui refactoring;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.jdt.ui \core refactoring;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.jdt.ui \core extension" -classpath C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.jdt.ui\bin;C:\home \dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.ui\ui.jar;C:\home\dbaeume r\devel\workspaces\eclipse\3.0new\org.eclipse.core.runtime.compatibility\compat ibility.jar;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.core.r untime\runtime.jar;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse .osgi\osgi.jar;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.osg i\core.jar;C:\home\dbaeumer\devel\workspaces\eclipse\3.0new\org.eclipse.osgi\re solver.jar;C:\home\dbaeumer\devel\workspaces\eclipse\” at java.lang.Win32Process.create(Native Method) at java.lang.Win32Process.<init>(Win32Process.java:66) at java.lang.Runtime.execInternal(Native Method) at java.lang.Runtime.exec(Runtime.java:566) at java.lang.Runtime.exec(Runtime.java:491) at java.lang.Runtime.exec(Runtime.java:457) at org.eclipse.jdt.internal.ui.javadocexport.JavadocWizard.executeJavadocGeneratio n(JavadocWizard.java:228) at org.eclipse.jdt.internal.ui.javadocexport.JavadocWizard.performFinish (JavadocWizard.java:191) at org.eclipse.jface.wizard.WizardDialog.finishPressed (WizardDialog.java:608) at org.eclipse.jface.wizard.WizardDialog.buttonPressed (WizardDialog.java:321) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:402) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2029) at org.eclipse.jface.window.Window.runEventLoop(Window.java:647) at org.eclipse.jface.window.Window.open(Window.java:627) at org.eclipse.ui.actions.ExportResourcesAction.run (ExportResourcesAction.java:165) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:536) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent (ActionContributionItem.java:420) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2029) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1550) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:257) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:104) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-02-13 08:39:28
| 1,076,680,000 |
resolved fixed
|
47eda9e
| 1,077,300,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocOptionsManager.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocSpecificsWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocWizard.java
|
JDT
|
4,441 | 52,310 |
Bug 52310 [Refactor] Moving a class from default package has missing "." from imports
|
Moved a class from the default package and ended up with imports missing the last ".". For example: I got something like org.eclipseMovedClass instead of org.eclipse.MovedClass
|
2004-02-17 17:54:31
| 1,077,060,000 |
resolved fixed
|
9dd8937
| 1,077,290,000 |
org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/reorg/MoveTest.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/MoveCuUpdateCreator.java
|
JDT
|
4,442 | 47,509 |
Bug 47509 Refactor name of package fragment does not handle on demand import
|
Build Eclipse 2.1.2 On the following setup, select package fragment 'p' located in project B and rename it into 'q'. It will rename the 'import p.*;' statement, but did not realize there was still a use for it due to other fragment. It should have inserted an extra import during the rename action. Project A +- package p +- A.java Project B prereqs A +- package p | +- B.java +- package c +- C.java package c; import p.*; public class C { }
|
2003-11-26 07:33:01
| 1,069,850,000 |
verified fixed
|
9186dd4
| 1,077,200,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots1/in/srcPrg/p/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots1/in/srcTest/p/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots1/in/srcTest/tests/AllTests.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots1/out/srcPrg/q/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots1/out/srcTest/p/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots1/out/srcTest/tests/AllTests.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/in/srcPrg/p/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/in/srcTest/p/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/in/srcTest/p/p/TestHelper.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/in/srcTest/tests/AllTests.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/in/srcTest/tests/QualifiedTests.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/out/srcPrg/q/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/out/srcTest/p/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/out/srcTest/p/p/TestHelper.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/out/srcTest/tests/AllTests.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots2/out/srcTest/tests/QualifiedTests.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots3/in/srcPrg/p/p/ToQ.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots3/in/srcTest/p/p/Ref.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots3/out/srcPrg/q/ToQ.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots3/out/srcTest/p/p/Ref.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots4/in/srcPrg/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots4/in/srcPrg/p/B.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots4/in/srcTest/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots4/out/srcPrg/a/b/c/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots4/out/srcPrg/a/b/c/B.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots4/out/srcTest/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots5/in/srcPrg/p/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots5/in/srcTest/p/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots5/out/srcPrg/p/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots5/out/srcTest/q/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots6/in/srcPrg/p/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots6/in/srcTest/p/p/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots6/out/srcPrg/p/p/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots6/out/srcTest/cheese/ATest.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/in/srcPrj.other/pack/Namesake.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/in/srcPrj.ref/pack/Referer.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/in/srcPrj.ref/pack/man/StarImporter.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/in/srcPrj/pack/DingsDa.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/out/srcPrj.other/pack/Namesake.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/out/srcPrj.ref/pack/Referer.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/out/srcPrj.ref/pack/man/StarImporter.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testImportFromMultiRoots7/out/srcPrj/com/packt/DingsDa.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/RenamePackageTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RefactoringScopeFactory.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenamePackageProcessor.java
|
JDT
|
4,443 | 52,460 |
Bug 52460 [spell checking] Spell check index out of range
|
I was running in console mode for other reasons, when I spotted this stack trace, that did not appear in the log. This is in M7; JDK 1.4.2_03. I just turned on spell checking in the In Progress pref pane but didn't otherwise do anything to configure. I don't know what specific action triggered this (nor did I observe any effect). java.lang.StringIndexOutOfBoundsException: String index out of range: 7 [Dynamic-linking native method java.lang.Throwable.getStackTraceDepth ... JNI] [Dynamic-linking native method java.lang.Throwable.getStackTraceElement ... JNI] at java.lang.String.charAt(String.java:444) at org.eclipse.jdt.internal.ui.text.spelling.SpellCheckIterator.nextToken (SpellCheckIterator.java:297) at org.eclipse.jdt.internal.ui.text.spelling.SpellCheckIterator.next (SpellCheckIterator.java:241) at org.eclipse.jdt.internal.ui.text.spelling.engine.DefaultSpellChecker.execute (DefaultSpellChecker.java:208) at org.eclipse.jdt.internal.ui.text.spelling.SpellReconcileStrategy.reconcile (SpellReconcileStrategy.java:347) at org.eclipse.jface.text.reconciler.CompositeReconcilingStrategy.reconcile (CompositeReconcilingStrategy.java:83) at org.eclipse.jdt.internal.ui.text.JavaCompositeReconcilingStrategy.reconcile (JavaCompositeReconcilingStrategy.java:97) at org.eclipse.jface.text.reconciler.MonoReconciler.process (MonoReconciler.java:76) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread.run (AbstractReconciler.java:189)
|
2004-02-19 04:05:26
| 1,077,180,000 |
verified fixed
|
8f50f86
| 1,077,180,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/SpellCheckIterator.java
|
JDT
|
4,444 | 51,609 |
Bug 51609 Not all interfaces shown in Type Hierarchy
|
I200402102000 Open Type Hierarchy on package junit.framework. Observe: only one interface instead of three is shown. Nothing in .log
|
2004-02-11 06:29:22
| 1,076,500,000 |
verified fixed
|
8f438b2
| 1,077,120,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TraditionalHierarchyViewer.java
|
JDT
|
4,445 | 37,513 |
Bug 37513 [misc] Outline tool-tip window should remember size and position
|
It would be very nice if the Outline window (accessible from Ctrl+O or the menu "Navigate|Show Outline") would remember its size and position like most other windows in Eclipse do.
|
2003-05-12 14:37:11
| 1,052,760,000 |
resolved fixed
|
54d3604
| 1,077,120,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/AbstractInformationControl.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java
|
JDT
|
4,446 | 32,378 |
Bug 32378 Java Build Path properties page [general issue] [build path]
|
The Java Build Path properties page should refresh when it is opened and should also have an apply button. We are running into problems because we also contribute a properties page to Java projects that edits the build properties and it is unclear what the current state of the build path is. There are two main problems. First, the user opens our page, modifies and applies the change and then goes to the Java Build Path page where the change is not available because it is not refreshed. At this point if the user modifies the Java Build Path page and exits. The changes he first made are wiped out and replaced with current state of the Java Build Path page. Second, the user opens the Java Build Path page and modifies some information and then goes to our page; these changes are unavaible. It would be nice if the user could have applied the changes from the Java Build Path page to make them avaible to our page. We are able to handle this state (in English at least) because our page comes after the Java Build path page and is saved last. Ultimatly, the best solution would be to create an in memory copy of the Build Properties that both pages could use without these synchronization issues.
|
2003-02-20 13:30:59
| 1,045,770,000 |
closed fixed
|
a0ed6d5
| 1,077,120,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/BuildPathDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/BuildPathsPropertyPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CPListElement.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/JavaCapabilityConfigurationPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewJavaProjectWizardPage.java
|
JDT
|
4,447 | 48,482 |
Bug 48482 Wording on "File Search" page
|
I20031203 The button next to the "File Name Patterns" combo is labeled "Browse...". A more appropriate term would be "Choose..." (identical to the term used for the Scope). For me "Browsing" is more associated with exploring a network or a filesystem but not for picking an item from a list.
|
2003-12-11 08:41:24
| 1,071,150,000 |
resolved fixed
|
a0b6315
| 1,077,100,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java
|
JDT
|
4,448 | 52,275 |
Bug 52275 Package Explorer error marker icon not updated
|
I have a custom builder which is invoked after a save (CTRL+S) that identifies problems with resources in my non-Java project and marks the resource with errors (or clears them as needed). This seems to work fine except that the problem marker icons in the Package Explorer are for some reason not automatically updated. Selecting the 'Go Into' context menu option and then navigating back again shows the correct problem marker icon state. Alternatively, closing and opening the project/eclipse displays the correct icon state. Is there something that needs to be called in order to 'refresh' the problem markers in the Package Explorer view? This is happening under Linux (RH9) using Eclipse 2.1.2 Comments from newsgroup: "The decorator handles this case the problem updater does not. "
|
2004-02-17 12:36:18
| 1,077,040,000 |
resolved fixed
|
d3694f6
| 1,077,100,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProblemMarkerManager.java
|
JDT
|
4,449 | 48,325 |
Bug 48325 introduce parameter throws NPE if there are compiler errors [refactoring]
|
I200312020950 in the file below introduce the "3" as a parameter. -------------------------------------------------- class A { void method() { } void method() { int x = 3; //<-- introduce 3 as a parameter } } ---------------------------------------------------- the result is: ------------------------------------------------------ java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:313) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.run (RefactoringWizardDialog2.java:271) at org.eclipse.jdt.internal.ui.refactoring.PerformRefactoringUtil.performRefactorin g(PerformRefactoringUtil.java:53) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.performFinish (RefactoringWizard.java:409) at org.eclipse.jdt.internal.ui.refactoring.UserInputWizardPage.performFinish (UserInputWizardPage.java:119) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.performFinish (RefactoringWizard.java:472) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.okPressed (RefactoringWizardDialog2.java:395) at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:263) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:430) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2294) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1975) at org.eclipse.jface.window.Window.runEventLoop(Window.java:586) at org.eclipse.jface.window.Window.open(Window.java:566) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate (RefactoringStarter.java:56) at org.eclipse.jdt.ui.actions.IntroduceParameterAction.run (IntroduceParameterAction.java:69) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun (SelectionDispatchAction.java:196) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run (SelectionDispatchAction.java:172) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:535) at org.eclipse.jface.action.ActionContributionItem.access$4 (ActionContributionItem.java:487) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent (ActionContributionItem.java:459) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2294) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1975) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1486) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1462) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:242) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.applicationrunner.ApplicationRunnerActivator$1.run (ApplicationRunnerActivator.java:85) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:87) 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:324) at org.eclipse.core.internal.boot.OSGiBootLoader.basicRun (OSGiBootLoader.java:239) at org.eclipse.core.internal.boot.OSGiBootLoader.run(OSGiBootLoader.java:665) at org.eclipse.core.internal.boot.OSGiBootLoader.run(OSGiBootLoader.java:652) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:299) at org.eclipse.core.launcher.Main.run(Main.java:767) at org.eclipse.core.launcher.Main.main(Main.java:601) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.dom.Bindings.findMethod(Bindings.java:553) at org.eclipse.jdt.internal.corext.refactoring.code.IntroduceParameterRefactoring.f indAffectedCompilationUnits(IntroduceParameterRefactoring.java:412) at org.eclipse.jdt.internal.corext.refactoring.code.IntroduceParameterRefactoring.c hangeReferences(IntroduceParameterRefactoring.java:368) at org.eclipse.jdt.internal.corext.refactoring.code.IntroduceParameterRefactoring.c heckInput(IntroduceParameterRefactoring.java:327) at org.eclipse.jdt.internal.ui.refactoring.CheckConditionsOperation.run (CheckConditionsOperation.java:65) at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:100) at org.eclipse.jdt.internal.ui.refactoring.PerformChangeOperation.run (PerformChangeOperation.java:138) at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:302) ... 49 more ----------------------------------------------
|
2003-12-09 04:37:59
| 1,070,960,000 |
resolved fixed
|
321e262
| 1,076,960,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceParameter/invalid/NoMethodBinding.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/IntroduceParameterTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceParameterRefactoring.java
|
JDT
|
4,450 | 47,207 |
Bug 47207 call hierarchy: Enablement of "Search Scope" item on view menu is wrong [call hierarchy]
|
At least on Windows NT/2000 this item is shown as disabled until the user clicks it it which case the submenu opens. I have been looking into this problem but without any results so far. Any suggestions are welcome.
|
2003-11-21 05:55:13
| 1,069,410,000 |
resolved fixed
|
675825b
| 1,076,960,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchScopeAction.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/SearchScopeHierarchyAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchScopeProjectAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchScopeWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchScopeWorkspaceAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SearchUtil.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/SelectWorkingSetAction.java
|
JDT
|
4,451 | 51,466 |
Bug 51466 TODO marker coloring: Update to new jdt.core behaviour
| null |
2004-02-10 10:47:59
| 1,076,430,000 |
resolved fixed
|
323a1d7
| 1,076,950,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaCommentScanner.java
|
JDT
|
4,452 | 52,058 |
Bug 52058 NPE in ChangeMethodSignature
|
M7 - tried to add the two exeption CoreException and ClassCastException to the method TypeExtension#findTypeExtender Got the following exception Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.addExceptionToNodeList(ChangeSignatureRefactoring.java:1373) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.changeExceptions(ChangeSignatureRefactoring.java:1346) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.updateDeclarationNode(ChangeSignatureRefactoring.java:1156) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.updateMethodOccurrenceNode(ChangeSignatureRefactoring.java:1021) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.createChangeManager(ChangeSignatureRefactoring.java:998) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.checkInput(ChangeSignatureRefactoring.java:555) at org.eclipse.jdt.internal.ui.refactoring.CheckConditionsOperation.run (CheckConditionsOperation.java:63) at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:109) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation (BatchOperation.java:34) at org.eclipse.jdt.internal.core.JavaModelOperation.run (JavaModelOperation.java:700) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1567) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1586) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3164) at org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter.run (WorkbenchRunnableAdapter.java:42) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:101)
|
2004-02-14 13:40:32
| 1,076,780,000 |
resolved fixed
|
0fe1286
| 1,076,950,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testException04_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testException04_out.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/ChangeSignatureTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java
|
JDT
|
4,453 | 52,091 |
Bug 52091 NPE when changing the signature of a method that declares an inavlid throw clause
|
M7 - public void foo() throws DummyClass - try to change the signature of foo where DummyClass is not a subclass of exception. Note that you don't get a dialog informing you about the error. It is simply logged. java.lang.NullPointerException at org.eclipse.jdt.internal.corext.dom.Bindings.findType (Bindings.java:546) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.createExceptionInfoList(ChangeSignatureRefactoring.java:508) at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactorin g.checkActivation(ChangeSignatureRefactoring.java:488) at org.eclipse.jdt.internal.ui.refactoring.CheckConditionsOperation.run (CheckConditionsOperation.java:61) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation (BatchOperation.java:34) at org.eclipse.jdt.internal.core.JavaModelOperation.run (JavaModelOperation.java:700) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1567) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1586) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3164) at org.eclipse.jdt.internal.ui.actions.WorkbenchRunnableAdapter.run (WorkbenchRunnableAdapter.java:42) at org.eclipse.jdt.internal.ui.util.BusyIndicatorRunnableContext$BusyRunnable.inte rnalRun(BusyIndicatorRunnableContext.java:113) at org.eclipse.jdt.internal.ui.util.BusyIndicatorRunnableContext$BusyRunnable.run (BusyIndicatorRunnableContext.java:80) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:84) at org.eclipse.jdt.internal.ui.util.BusyIndicatorRunnableContext.run (BusyIndicatorRunnableContext.java:126) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.checkActivat ion(RefactoringStarter.java:67) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate (RefactoringStarter.java:47) at org.eclipse.jdt.ui.actions.ModifyParametersAction.startRefactoring (ModifyParametersAction.java:209) at org.eclipse.jdt.ui.actions.ModifyParametersAction.run (ModifyParametersAction.java:148) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun (SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run (SelectionDispatchAction.java:188) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:536) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent (ActionContributionItem.java:420) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2029) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1550) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:257) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:104) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-02-15 08:08:50
| 1,076,850,000 |
resolved fixed
|
4b7efcb
| 1,076,950,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testException02_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testException02_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testException03_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testException03_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/cannotModify/A_testFail1.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/ChangeSignatureTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java
|
JDT
|
4,454 | 51,653 |
Bug 51653 [navigation] Quick Outline: Should also show interface members
|
I200402102000 We should consider showing the inherited members for interfaces at least when the target type is an interface itself.
|
2004-02-11 11:01:26
| 1,076,520,000 |
resolved fixed
|
39e311e
| 1,076,940,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaOutlineInformationControl.java
|
JDT
|
4,455 | 51,978 |
Bug 51978 NPE editing a compilation unit
|
Using 200402102000, I got this NPE. java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$RememberedOffset.getOffset(CompilationUnitEditor.java:786) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$RememberedSelection.restore(CompilationUnitEditor.java:672) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.restoreSelection(CompilationUnitEditor.java:1547) at org.eclipse.ui.texteditor.AbstractTextEditor$4.run(AbstractTextEditor.java:299) at org.eclipse.ui.texteditor.AbstractTextEditor$ElementStateListener.execute(AbstractTextEditor.java:385) at org.eclipse.ui.texteditor.AbstractTextEditor$ElementStateListener.elementContentReplaced(AbstractTextEditor.java:302) at org.eclipse.ui.editors.text.TextFileDocumentProvider$FileBufferListener.bufferContentReplaced(TextFileDocumentProvider.java:214) at org.eclipse.core.internal.filebuffers.TextFileBufferManager.fireBufferContentReplaced(TextFileBufferManager.java:242) at org.eclipse.core.internal.filebuffers.ResourceTextFileBuffer.revert(ResourceTextFileBuffer.java:169) at org.eclipse.ui.editors.text.TextFileDocumentProvider$1.execute(TextFileDocumentProvider.java:574) at org.eclipse.ui.editors.text.TextFileDocumentProvider$DocumentProviderOperation.run(TextFileDocumentProvider.java:93) at org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation.execute(WorkspaceModifyDelegatingOperation.java:67) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:91) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1567) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:105) at org.eclipse.ui.editors.text.WorkspaceOperationRunner.run(WorkspaceOperationRunner.java:72) at org.eclipse.ui.editors.text.WorkspaceOperationRunner.run(WorkspaceOperationRunner.java:62) at org.eclipse.ui.editors.text.TextFileDocumentProvider.executeOperation(TextFileDocumentProvider.java:391) at org.eclipse.ui.editors.text.TextFileDocumentProvider.resetDocument(TextFileDocumentProvider.java:586) at org.eclipse.ui.texteditor.AbstractTextEditor.performRevert(AbstractTextEditor.java:3180) at org.eclipse.ui.texteditor.AbstractTextEditor.doRevertToSaved(AbstractTextEditor.java:3163) at org.eclipse.ui.texteditor.StatusTextEditor.doRevertToSaved(StatusTextEditor.java:183) at org.eclipse.ui.texteditor.RevertToSavedAction.run(RevertToSavedAction.java:47) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:536) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:420) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2029) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1550) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:257) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:104) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-02-13 13:00:27
| 1,076,700,000 |
verified fixed
|
a93af00
| 1,076,940,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java
|
JDT
|
4,456 | 52,062 |
Bug 52062 [spell checking] SpellCheckEngine.getAvailableLocales() should close its input streams
|
3.0M7 stable. I was just digging around the new code out of curiousity and found a place where streams are opened but never closed. I believe this is not strictly a resource leak because Java finalization will eventually close the stream, but it wouldn't hurt to do it explicitly. stream= url.openStream(); if (stream != null) result.add(locale); stream.close(); // add me As an aside, this looks like a very indirect way of iterating over dictionaries. Perhaps they should be supplied via fragments bound to an appropriate extension point. Also, the function always includes the default locale even if no dictionaries were found. I think this behaviour is misleading and prevents the UI from presenting a more useful "no dictionaries available" kind of cue, if none were installed (as in M7?). Looks good. I hope this support gets generalized somewhat and moved into org.eclipse.text eventually.
|
2004-02-14 16:14:53
| 1,076,790,000 |
resolved fixed
|
865a4a8
| 1,076,940,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/SpellCheckEngine.java
|
JDT
|
4,457 | 51,890 |
Bug 51890 [Code formatter] Option to insert space inside empty brackets in allocation expression
|
Using 200402121200, this option is not visible if I display the tree by Java element. If I display the tree by Syntax element, I can find it. This seems inconsistent. I can provide screenshots if necessary.
|
2004-02-12 14:30:28
| 1,076,610,000 |
resolved fixed
|
975765b
| 1,076,930,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceOptions.java
|
JDT
|
4,458 | 51,984 |
Bug 51984 Compiler settings: enable state not correctly updated
|
I200402122000 In the Java/Compiler/Advanced preference page, 'Include constructor or setter method parameter' is not correctly enable/disable when modifying the option 'Local variable declaration hides another field or variable'. Modifying one the options with sub-checkbox in 'Unused code' set the correct enable state in 'Advanced'.
|
2004-02-13 13:30:09
| 1,076,700,000 |
resolved fixed
|
859b6b9
| 1,076,930,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java
|
JDT
|
4,459 | 52,072 |
Bug 52072 Code formatter -> white space -> control statements -> do while shows while example
|
The formatting options for the 'do while' statement shows an example of a 'while' loop rather than a 'do while' loop. Seems odd; either the option should be 'while' or the preview should show a do-while loop. Mac OS X.3.2 Eclipse 3.0M7
|
2004-02-14 20:13:38
| 1,076,810,000 |
verified fixed
|
95156aa
| 1,076,930,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/WhiteSpaceOptions.java
|
JDT
|
4,460 | 36,571 |
Bug 36571 Refactoring inline throws [refactoring]
|
Unfortunately I could not come up with a scenario to reproduce this and I did not see any obvious reasons why the refactoring might have failed. When doing refactor -> inline on a method call of a protected method with "all occurences" and "delete original" switched on, preview throws this: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:313) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.run (RefactoringWizardDialog2.java:266) at org.eclipse.jdt.internal.ui.refactoring.PerformRefactoringUtil.performRefactorin g(PerformRefactoringUtil.java:53) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.performFinish (RefactoringWizard.java:363) at org.eclipse.jdt.internal.ui.refactoring.UserInputWizardPage.performFinish (UserInputWizardPage.java:119) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.performFinish (RefactoringWizard.java:426) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.okPressed (RefactoringWizardDialog2.java:383) at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:256) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1838) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1545) at org.eclipse.jface.window.Window.runEventLoop(Window.java:583) at org.eclipse.jface.window.Window.open(Window.java:563) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate (RefactoringStarter.java:70) at org.eclipse.jdt.internal.ui.refactoring.actions.InlineMethodAction.activate (InlineMethodAction.java:128) at org.eclipse.jdt.internal.ui.refactoring.actions.InlineMethodAction.run (InlineMethodAction.java:121) at org.eclipse.jdt.internal.ui.refactoring.actions.InlineMethodAction.run (InlineMethodAction.java:82) at org.eclipse.jdt.ui.actions.InlineAction.tryInlineMethod (InlineAction.java:132) at org.eclipse.jdt.ui.actions.InlineAction.run(InlineAction.java:109) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun (SelectionDispatchAction.java:193) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run (SelectionDispatchAction.java:169) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:456) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent (ActionContributionItem.java:403) at org.eclipse.jface.action.ActionContributionItem.access$0 (ActionContributionItem.java:397) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent (ActionContributionItem.java:72) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1838) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1545) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402) at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:845) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:291) at org.eclipse.core.launcher.Main.run(Main.java:747) at org.eclipse.core.launcher.Main.main(Main.java:583) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.corext.refactoring.code.CallInliner.addNewLocals (CallInliner.java:232) at org.eclipse.jdt.internal.corext.refactoring.code.CallInliner.perform (CallInliner.java:166) at org.eclipse.jdt.internal.corext.refactoring.code.InlineMethodRefactoring.checkIn put(InlineMethodRefactoring.java:220) at org.eclipse.jdt.internal.ui.refactoring.CheckConditionsOperation.run (CheckConditionsOperation.java:65) at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:100) at org.eclipse.jdt.internal.ui.refactoring.PerformChangeOperation.run (PerformChangeOperation.java:138) at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:302) ... 44 more Log Session info: java.version=1.4.1_01 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_DE Command-line arguments: -os win32 -ws win32 -arch x86 -install file:C:/Programme/eclipse/
|
2003-04-16 10:33:10
| 1,050,500,000 |
resolved fixed
|
e70e8e2
| 1,076,700,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java
|
JDT
|
4,461 | 51,683 |
Bug 51683 Occurences In Exceptions: Not Javadoc aware
|
20040211 - Enable 'Mark Occurences' - Open java.ui.FileInputStream, close() - In the Javadoc comment select 'IOException' - In the signature select 'IOException': Not the same result
|
2004-02-11 12:33:36
| 1,076,520,000 |
resolved fixed
|
73829cb
| 1,076,690,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ExceptionOccurrencesFinder.java
|
JDT
|
4,462 | 48,069 |
Bug 48069 [reconciling] Reconciling too much
|
Build 20031202 Whenever the editor gains focus; it is triggering a forced reconciliation. This is too naive, and wastes lots of cycles. e.g.: - open editor - select one element in outliner - go back to editor A reconciliation is triggered even though nothing has changed which requires this.
|
2003-12-04 10:42:00
| 1,070,550,000 |
resolved fixed
|
391135f
| 1,076,690,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaReconciler.java
|
JDT
|
4,463 | 51,644 |
Bug 51644 [typing] The word "squigglies" does not exist
|
I200402102000 We can either use "squiggles" or "squiggly lines"
|
2004-02-11 10:29:15
| 1,076,510,000 |
resolved fixed
|
9f1ca64
| 1,076,680,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java
|
JDT
|
4,464 | 51,093 |
Bug 51093 [typing] Pressing enter after an opening curly brace closes the curly brace repeatedly.
|
Pressing enter after an opening curly brace closes the curly brace repeatedly. IF you are about to define a method and you open a curly brace, the completion closing curly brace is added automatically. If you go and press "enter" again in front of the opening curly brace , it adds another closing brace repeatedly.
|
2004-02-03 05:34:39
| 1,075,800,000 |
resolved fixed
|
3377f2d
| 1,076,670,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java
|
JDT
|
4,465 | 51,648 |
Bug 51648 ClassCastException after aborted local rename
| null |
2004-02-11 10:43:01
| 1,076,510,000 |
verified fixed
|
597f55e
| 1,076,610,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedNamesAssistProposal.java
|
JDT
|
4,466 | 51,637 |
Bug 51637 Quick Fix compilation unit rename throws CoreException
|
Test case: - create class Foo - manually rename class from Foo to Bar - use Quick Fix to "Rename compilation unit to 'Bar.java'" -> CoreException: !SESSION Feb 11, 2004 15:32:14.486 --------------------------------------------- java.version=1.4.2 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Command-line arguments: -dev bin -os win32 -ws win32 -arch x86 -nl en_US !ENTRY org.eclipse.jdt.ui 4 10001 Feb 11, 2004 15:32:14.486 !MESSAGE Internal Error !STACK 1 org.eclipse.core.runtime.CoreException: /IAE/src/x/Foo.java is unsaved at org.eclipse.jdt.internal.ui.text.correction.ChangeCorrectionProposal.apply(ChangeCorrectionProposal.java:69) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal(CompletionProposalPopup.java:375) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.selectProposalWithMask(CompletionProposalPopup.java:339) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.verifyKey(CompletionProposalPopup.java:639) at org.eclipse.jface.text.contentassist.ContentAssistant$InternalListener.verifyKey(ContentAssistant.java:622) at org.eclipse.jface.text.TextViewer$VerifyKeyListenersManager.verifyKey(TextViewer.java:378) at org.eclipse.swt.custom.StyledTextListener.handleEvent(StyledTextListener.java:55) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:650) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:5321) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:5066) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1716) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1712) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3037) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2940) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2865) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1371) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2019) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1530) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:221) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:101) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581) !ENTRY org.eclipse.jdt.ui 4 4 Feb 11, 2004 15:32:14.486 !MESSAGE /IAE/src/x/Foo.java is unsaved
|
2004-02-11 09:54:07
| 1,076,510,000 |
verified fixed
|
b705204
| 1,076,610,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/AbstractJavaElementRenameChange.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/base/JDTChange.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/RenameCompilationUnitChange.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/RenamePackageChange.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/RenameSourceFolderChange.java
|
JDT
|
4,467 | 51,853 |
Bug 51853 Support new compiler option PREF_PB_UNUSED_DECLARED_THROWN_EXCEPTION_WHEN_OVERRIDING
|
20040212 Add the new setting to the compiler preference page
|
2004-02-12 11:11:48
| 1,076,600,000 |
verified fixed
|
2573160
| 1,076,600,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java
|
JDT
|
4,468 | 51,451 |
Bug 51451 [formatting] unstable comment formatting
|
- open TestCase - in the editor set the carret in a method declaration's name (e.g., ru|n()) - press CTRL-SHIFT-F multiple times -> the formatting changes in each `format'
|
2004-02-10 07:37:51
| 1,076,420,000 |
resolved fixed
|
d354501
| 1,076,600,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaFormattingStrategy.java
|
JDT
|
4,469 | 51,622 |
Bug 51622 Organize import misses type references in javadoc
|
20040211 - organize import the following coe - IClassFile and ICompilationUnit go away import org.eclipse.jdt.core.IClassFile; import org.eclipse.jdt.core.ICompilationUnit; /** * Implemented by {@link IClassFile} and {@link ICompilationUnit} */ public interface IOpenable { }
|
2004-02-11 08:56:03
| 1,076,510,000 |
verified fixed
|
1aed45f
| 1,076,590,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/OrganizeImportsOperation.java
|
JDT
|
4,470 | 51,763 |
Bug 51763 Source -> Override methods fails in inner classes [code manipulation]
|
In Version: 3.0.0 Build id: 200312182000 Type the following in the Java editor, in the header of a class : private MouseTrackAdapter mouseTrackListener = new MouseTrackAdapter() { XXX }; right mouse click where the XXX in the above line is and choose Source -> Override/Implement methods. You get the correct methods in the pop up. choose some, and say ok. You get an error and the methods are not generated.
|
2004-02-11 15:49:34
| 1,076,530,000 |
verified fixed
|
45461e2
| 1,076,580,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OverrideMethodsAction.java
|
JDT
|
4,471 | 51,704 |
Bug 51704 multiple beginCompoundChange in LinkedUIKeyListener
|
build used: eclipse-SDK-I20040210-win32 I noticed some strange undo/redo behavior in the JDT Editor. I don't have a simple testcase to demonstrate the problem in the JDT Editor. But, I noticed if I set a breakpoint at the implementation of IRewriteTarget.beginCompoundChange, it's called multiple times while I'm in the linked edit mode of Local Rename (one time for each keystroke). But, endCompoundChange was only called one time at the end. I traced and noticed the origin of the multiple beginCompoundChange calls came from the LinkedUIKeyListener#controlUndoBehavior(int, int). LinkedUIKeyListener is an inner class in LinkedUIControl. I understand org.eclipse.jdt.internal.ui.text.link is an internal package. But, I hope the developer may agree that it's a simple problem to fix. That may avoid some hard- to-explain problems in the future because of this unmatching beginCompoundChange/endCompoundChange calls. Here is a copy of LinkedUIKeyListener#controlUndoBehavior(int, int). You may notice that target.beginCompoundChange() is called everytime position is not null. private boolean controlUndoBehavior(int offset, int length) { LinkedPosition position= fEnvironment.findPosition(new LinkedPosition( fCurrentTarget.getViewer().getDocument(), offset, length, LinkedPositionGroup.NO_STOP)); if (position != null) { ITextViewerExtension extension= (ITextViewerExtension) fCurrentTarget.getViewer(); IRewriteTarget target= extension.getRewriteTarget(); if (fPreviousPosition != null && !fPreviousPosition.equals(position)) target.endCompoundChange(); target.beginCompoundChange(); } fPreviousPosition= position; return fPreviousPosition != null; }
|
2004-02-11 13:19:19
| 1,076,520,000 |
closed fixed
|
ac783da
| 1,076,580,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/link/LinkedUIControl.java
|
JDT
|
4,472 | 51,811 |
Bug 51811 NPE attempting to search NLS
|
I200402102000 With the RefactoringMessages.properties from org.eclipse.jdt.internal.debug.core.refactoring (renamed from RefractoringMessages.properties) selected in the PackageExplorer, I clicked on the Search toolbar button. From the NLS keys page, I clicked search. Related to the fact that there is another RefactoringMessages class? java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283) at org.eclipse.search.internal.ui.util.ExtendedDialogWindow.run (ExtendedDialogWindow.java:180) at org.eclipse.jdt.internal.ui.refactoring.nls.search.NLSSearchPage.performAction (NLSSearchPage.java:199) at org.eclipse.search.internal.ui.SearchDialog.performAction (SearchDialog.java:363) at org.eclipse.search.internal.ui.util.ExtendedDialogWindow.buttonPressed (ExtendedDialogWindow.java:147) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:402) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2029) at org.eclipse.jface.window.Window.runEventLoop(Window.java:647) at org.eclipse.jface.window.Window.open(Window.java:627) at org.eclipse.search.internal.ui.OpenSearchDialogAction.run (OpenSearchDialogAction.java:60) at org.eclipse.search.internal.ui.OpenSearchDialogAction.run (OpenSearchDialogAction.java:46) at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:273) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent (WWinPluginAction.java:207) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:536) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:488) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent (ActionContributionItem.java:460) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2348) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2029) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1550) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1526) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:257) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:104) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581) Caused by: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.refactoring.nls.search.NLSSearchResultCollector.fin dKey(NLSSearchResultCollector.java:199) at org.eclipse.jdt.internal.ui.refactoring.nls.search.NLSSearchResultCollector.acc ept(NLSSearchResultCollector.java:108) at org.eclipse.jdt.core.search.SearchEngine$ResultCollectorAdapter.acceptSearchMat ch(SearchEngine.java:58) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.report (MatchLocator.java:967) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.report (MatchLocator.java:948) at org.eclipse.jdt.internal.core.search.matching.PatternLocator.matchReportReferen ce(PatternLocator.java:228) at org.eclipse.jdt.internal.core.search.matching.TypeReferenceLocator.matchReportR eference(TypeReferenceLocator.java:168) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.reportMatching (MatchLocator.java:1136) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.reportMatching (MatchLocator.java:1337) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.reportMatching (MatchLocator.java:1348) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.reportMatching (MatchLocator.java:1201) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.process (MatchLocator.java:887) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.locateMatches (MatchLocator.java:619) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.locateMatches (MatchLocator.java:653) at org.eclipse.jdt.internal.core.search.matching.MatchLocator.locateMatches (MatchLocator.java:744) at org.eclipse.jdt.internal.core.search.JavaSearchParticipant.locateMatches (JavaSearchParticipant.java:157) at org.eclipse.jdt.internal.core.search.pattern.InternalSearchPattern.findMatches (InternalSearchPattern.java:190) at org.eclipse.jdt.core.search.SearchEngine.search(SearchEngine.java:716) at org.eclipse.jdt.core.search.SearchEngine.search(SearchEngine.java:684) at org.eclipse.jdt.core.search.SearchEngine.search(SearchEngine.java:665) at org.eclipse.jdt.internal.ui.refactoring.nls.search.NLSSearchOperation.execute (NLSSearchOperation.java:84) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run (WorkspaceModifyOperation.java:91) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1567) at org.eclipse.ui.actions.WorkspaceModifyOperation.run (WorkspaceModifyOperation.java:105) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:101)
|
2004-02-11 22:04:19
| 1,076,560,000 |
resolved fixed
|
70db708
| 1,076,580,000 |
org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchResultCollector.java
|
JDT
|
4,473 | 51,448 |
Bug 51448 Creating java project doesn't switch to java perspective [build path]
|
Smoke test for 2004-01-10 08:00 1) Create a java project in a new workspace 2) observe: you're not asked to switch to the java perspective.
|
2004-02-10 07:07:15
| 1,076,410,000 |
verified fixed
|
e2c1594
| 1,076,530,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizard.java
|
JDT
|
4,474 | 51,573 |
Bug 51573 [formatter] built-in profile; OK button enablement
|
Please disable the OK button on the "Show Profile ... [built-in]" dialog for the built-in profiles. This should be in addition to the warning. It's easy to read over a message, but a disabled OK button is a clear message that one cannot save changes.
|
2004-02-10 21:04:26
| 1,076,470,000 |
verified fixed
|
c9b175e
| 1,076,530,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/ModifyDialog.java
|
JDT
|
4,475 | 51,607 |
Bug 51607 project creation wizard: too tall [build path]
|
M7 test pass, I200402102000 1. Ctrl+N, choose Java Project -> The first page is too tall, filling out almost the entire screen although the space is not used.
|
2004-02-11 06:20:36
| 1,076,500,000 |
verified fixed
|
56aab35
| 1,076,530,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardFirstPage.java
|
JDT
|
4,476 | 51,608 |
Bug 51608 project creation wizard: add folder button lets one add existing folder the first time
|
M7 test pass, I200402102000 1. Create a new java project 2. configure using src and bin folders 3. on the second page, press "add folder" 4. enter "src" as the folder name into the mask -> there is no complaint about the added folder, although it already existed -> when pressing "add folder" a second time, a different dialog comes up, allowing to specify where to add a new folder. Entering an existing folder name here gets flagged as an error. -> it seems that although there is an entry for the preconfigured "src" folder, it does not yet exist really.
|
2004-02-11 06:25:22
| 1,076,500,000 |
verified fixed
|
9263607
| 1,076,520,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/JavaProjectWizardSecondPage.java
|
JDT
|
4,477 | 51,619 |
Bug 51619 Vertical ruler Roll-Overs should only appear for vertical ruler annotations
|
I200402102000 Roll-over shows all annotations also those which I explicitly disabled to show up in the vertical ruler. M7 candidate.
|
2004-02-11 07:18:17
| 1,076,500,000 |
verified fixed
|
b013f6d
| 1,076,520,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaExpandHover.java
|
JDT
|
4,478 | 50,904 |
Bug 50904 IllegalArgumentException during refactoring
|
build i0129, winxp, j9sc20031212 - create package /org.eclipse.core.runtime.compatibility/src-runtime/org.eclipse.core.runtime - in packages explorer, select org.eclipse.core.runtime.Preferences - Refactor -> move - destination is new package - Preview In the Preview, there were a lot (maybe 12?) classes selected but there wasn't any differences in the compare. I expanded one class and it had "updated imports". I selected that line (not sure if it was the line or the checkbox) and I got the following error in my log file. !ENTRY org.eclipse.core.runtime 4 2 Jan 29, 2004 14:50:25.641 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime". !STACK 0 java.lang.IllegalArgumentException: at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at org.eclipse.core.internal.runtime.Assert.isLegal(Assert.java) at org.eclipse.core.internal.runtime.Assert.isLegal(Assert.java) at org.eclipse.core.runtime.Status.setMessage(Status.java:156) at org.eclipse.core.runtime.Status.<init>(Status.java:75) at org.eclipse.jdt.internal.corext.refactoring.changes.Changes.asCoreException(Changes.java:25) at org.eclipse.jdt.internal.corext.refactoring.changes.TextChange.getContent(TextChange.java:655) at org.eclipse.jdt.internal.corext.refactoring.changes.TextChange.getCurrentContent(TextChange.java:402) at org.eclipse.jdt.internal.ui.refactoring.TextChangePreviewViewer.setInput(TextChangePreviewViewer.java:155) at org.eclipse.jdt.internal.ui.refactoring.TextEditChangeElement.feedInput(TextEditChangeElement.java:68) at org.eclipse.jdt.internal.ui.refactoring.PreviewWizardPage.showPreview(PreviewWizardPage.java:387) at org.eclipse.jdt.internal.ui.refactoring.PreviewWizardPage.access$2(PreviewWizardPage.java:366) at org.eclipse.jdt.internal.ui.refactoring.PreviewWizardPage$2.selectionChanged(PreviewWizardPage.java:357) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:1310) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:666) at org.eclipse.jface.viewers.CheckboxTreeViewer.handleSelect(CheckboxTreeViewer.java:261) at org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:690) at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:178) at org.eclipse.jface.util.OpenStrategy.access$3(OpenStrategy.java) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.jface.window.Window.runEventLoop(Window.java) at org.eclipse.jface.window.Window.open(Window.java:566) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate(RefactoringStarter.java:56) at org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgMoveAction.startRefactoring(ReorgMoveAction.java:135) at org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgMoveAction.run(ReorgMoveAction.java:119) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:212) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) at org.eclipse.jdt.ui.actions.MoveAction.run(MoveAction.java:123) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:212) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:536) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1530) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:221) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:101) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41) at java.lang.reflect.Method.invoke(Method.java:386) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-01-29 15:01:51
| 1,075,410,000 |
resolved fixed
|
6019623
| 1,076,520,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/Changes.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/TextChange.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/PreviewWizardPage.java
|
JDT
|
4,479 | 50,988 |
Bug 50988 3.0M6 - Refactor rename for class members ignore non java files, and java files which are not in the same source folder.
| null |
2004-01-30 14:32:54
| 1,075,490,000 |
verified fixed
|
66f82e9
| 1,076,520,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RefactoringScopeFactory.java
|
JDT
|
4,480 | 51,612 |
Bug 51612 [preferences] Indent new annotation style combo
|
I200402102000 The combo for text styles on the annotation preference page depends on the above check box. This should be shown by indenting the combo. Nice to have for M7 since it is in N&NW.
|
2004-02-11 06:38:26
| 1,076,500,000 |
verified fixed
|
d3561a7
| 1,076,510,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java
|
JDT
|
4,481 | 51,453 |
Bug 51453 Find Occurrences in File: Can't jump to location in class file
|
I20040209-1020: - select a java field in the java editor - Search > Occurrences in File - (Old) Search view appears with correct results - Doubleclicking a result or choosing 'Open File' from the context menu doesn't work.
|
2004-02-10 07:43:30
| 1,076,420,000 |
verified fixed
|
bc1fe45
| 1,076,510,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindOccurrencesEngine.java
|
JDT
|
4,482 | 51,541 |
Bug 51541 NPE restoring scrapbook editor
|
build I20040210-0800 plus latest UI and Text from HEAD When running my target eclipse, I got an error restoring a scrapbook editor that had been saved during the previous session. The log has the following. The line in question is: StyledText styledText= fSourceViewer.getTextWidget(); *** int caret= widgetOffset2ModelOffset(fSourceViewer, styledText.getCaretOffset()); !ENTRY org.eclipse.core.runtime 4 2 Feb 10, 2004 15:49:26.780 !MESSAGE Problems occurred when invoking code from plug- in: "org.eclipse.core.runtime". !STACK 0 java.lang.NullPointerException at org.eclipse.ui.texteditor.AbstractTextEditor.getCursorPosition (AbstractTextEditor.java:4399) at org.eclipse.ui.texteditor.AbstractTextEditor.updateStatusField (AbstractTextEditor.java:4357) at org.eclipse.ui.texteditor.AbstractTextEditor.setStatusField (AbstractTextEditor.java:4104) at org.eclipse.ui.texteditor.BasicTextEditorActionContributor.doSetActiveEditor (BasicTextEditorActionContributor.java:215) at org.eclipse.ui.texteditor.BasicTextEditorActionContributor.setActiveEditor (BasicTextEditorActionContributor.java:229) at org.eclipse.jdt.internal.ui.javaeditor.BasicJavaEditorActionContributor.setActiv eEditor(BasicJavaEditorActionContributor.java:187) at org.eclipse.jdt.internal.ui.javaeditor.BasicEditorActionContributor.setActiveEdi tor(BasicEditorActionContributor.java:83) at org.eclipse.jdt.internal.debug.ui.snippeteditor.SnippetEditorActionContributor.s etActiveEditor(SnippetEditorActionContributor.java:74) at org.eclipse.ui.internal.EditorActionBars.partChanged (EditorActionBars.java:291) at org.eclipse.ui.internal.WorkbenchPage$2.run(WorkbenchPage.java:474) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:819) at org.eclipse.core.runtime.Platform.run(Platform.java:493) at org.eclipse.ui.internal.WorkbenchPage.activatePart (WorkbenchPage.java:466) at org.eclipse.ui.internal.WorkbenchPage.onActivate (WorkbenchPage.java:1953) at org.eclipse.ui.internal.WorkbenchWindow$6.run (WorkbenchWindow.java:1824) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.ui.internal.WorkbenchWindow.setActivePage (WorkbenchWindow.java:1811) at org.eclipse.ui.internal.WorkbenchWindow.restoreState (WorkbenchWindow.java:1406) at org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1369) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:1337) at org.eclipse.ui.internal.Workbench$11.run(Workbench.java:1259) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:819) at org.eclipse.core.runtime.Platform.run(Platform.java:493) at org.eclipse.ui.internal.Workbench.openPreviousWorkbenchState (Workbench.java:1215) at org.eclipse.ui.internal.Workbench.init(Workbench.java:894) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1503) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:257) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:108) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-02-10 16:03:50
| 1,076,450,000 |
verified fixed
|
1a81c08
| 1,076,460,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/spelling/SpellReconcileStrategy.java
|
JDT
|
4,483 | 49,242 |
Bug 49242 NPE when canceling a reference search for a Java Type in the workspace [search]
|
When performing a reference search for an ambiguous Type (such as "List") using the context menu of the java editor and you cancel the dialog box, a NullPointerException is thrown. This happens on both M5 and M6. Steps to replicate: 1. Create a new class file 2. Type in "List" 3. Right click on List 4. Select References->Workspace 5. A dialog box should pop up asking you to qualify the type 6. Press Cancel 7. Dialog will pop up indicating an error has occured and to check the log It looks like the problem is that SelectionConverter.codeResolve will return null if cancel is selected. ActionUtil.isProcessable does not check that the object being checked is null, so the operation continues instead of cancelling. I added a null check in the run method in FindAction#run(ITextSelection) and it seemed to fix the problem. here is the stacktrace, if it helps: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run (ProgressMonitorDialog.java:394) at org.eclipse.jdt.ui.actions.FindAction.run(FindAction.java:293) at org.eclipse.jdt.ui.actions.FindReferencesAction.run (FindReferencesAction.java:84) at org.eclipse.jdt.ui.actions.FindAction.run(FindAction.java:239) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun (SelectionDispatchAction.java:216) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run (SelectionDispatchAction.java:188) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:509) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:461) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent (ActionContributionItem.java:408) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2311) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1992) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1482) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:246) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581) Caused by: java.lang.NullPointerException at org.eclipse.jdt.core.search.SearchEngine.createSearchPattern (SearchEngine.java:381) at org.eclipse.jdt.internal.ui.search.JavaSearchOperation.execute (JavaSearchOperation.java:99) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run (WorkspaceModifyOperation.java:91) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1555) at org.eclipse.ui.actions.WorkspaceModifyOperation.run (WorkspaceModifyOperation.java:105) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:101)
|
2003-12-20 19:08:26
| 1,071,970,000 |
resolved fixed
|
e9a7b2b
| 1,076,360,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.java
|
JDT
|
4,484 | 51,076 |
Bug 51076 Quick fix misses and presents wrong name for target field class
|
Observe this example: public class Test { class Foo { void foo() { x = 4; } } void foo() { bar(new Runnable() { public void run() { x = 5; } }); } void bar(Runnable runner) { } } Quick-fix markers are activated for "x = 4" and "x = 5". For "x = 4", there is no suggestion to add a field to 'Test'. For "x = 5", there is a suggestion to add a field to ''. This should be 'Test'
|
2004-02-02 14:41:14
| 1,075,750,000 |
resolved fixed
|
e0b6656
| 1,076,350,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java
|
JDT
|
4,485 | 47,785 |
Bug 47785 Exception in Extract Interface refactoring [refactoring]
|
Eclipse M5 1) Import JUnit 3.8.1 (as per Smoke test) 2) In the package explorer, select junit.runner.BaseTestRunner 3) From the context menu, select Refactor->Extract Interface 4) Input a name for the interface, select all methods 5) press the preview button 6) observe: you get an exception: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.run(RefactoringWizardDialog2.java:271) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.createChange(RefactoringWizard.java:377) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.computeUserInputSuccessorPage(RefactoringWizard.java:297) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.computeUserInputSuccessorPage(RefactoringWizard.java:293) at org.eclipse.jdt.internal.ui.refactoring.UserInputWizardPage.getNextPage(UserInputWizardPage.java:79) at org.eclipse.jdt.internal.ui.refactoring.ExtractInterfaceWizard$ExtractInterfaceInputPage.getNextPage(ExtractInterfaceWizard.java:278) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.previewPressed(RefactoringWizardDialog2.java:418) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2.access$3(RefactoringWizardDialog2.java:416) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizardDialog2$1.widgetSelected(RefactoringWizardDialog2.java:547) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2187) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1877) at org.eclipse.jface.window.Window.runEventLoop(Window.java:586) at org.eclipse.jface.window.Window.open(Window.java:566) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate(RefactoringStarter.java:56) at org.eclipse.jdt.ui.actions.ExtractInterfaceAction.startRefactoring(ExtractInterfaceAction.java:173) at org.eclipse.jdt.ui.actions.ExtractInterfaceAction.run(ExtractInterfaceAction.java:105) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:194) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:172) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:542) at org.eclipse.jface.action.ActionContributionItem.access$4(ActionContributionItem.java:494) at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:466) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2187) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1877) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1381) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:237) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:299) at org.eclipse.core.launcher.Main.run(Main.java:767) at org.eclipse.core.launcher.Main.main(Main.java:601) Caused by: java.lang.StringIndexOutOfBoundsException: String index out of range: -4 at java.lang.String.<init>(String.java:192) at org.eclipse.jdt.internal.core.Buffer.getText(Buffer.java:168) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.createInterfaceMethodDeclarationsSource(ExtractInterfaceRefactoring.java:568) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.createInterfaceMemberDeclarationsSource(ExtractInterfaceRefactoring.java:545) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.createInterfaceMemberDeclarationsSource(ExtractInterfaceRefactoring.java:519) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.createInterfaceSource(ExtractInterfaceRefactoring.java:501) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.createExtractedInterfaceCUSource(ExtractInterfaceRefactoring.java:477) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.createChangeManager(ExtractInterfaceRefactoring.java:309) at org.eclipse.jdt.internal.corext.refactoring.structure.ExtractInterfaceRefactoring.checkInput(ExtractInterfaceRefactoring.java:215) at org.eclipse.jdt.internal.ui.refactoring.CheckConditionsOperation.run(CheckConditionsOperation.java:65) at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run(CreateChangeOperation.java:100) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:101)
|
2003-12-01 05:43:11
| 1,070,280,000 |
verified fixed
|
395246d
| 1,076,350,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test100/in/A.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test100/out/A.java org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test100/out/I.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/ExtractInterfaceTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceRefactoring.java
|
JDT
|
4,486 | 51,001 |
Bug 51001 prefix parameter [code manipulation]
|
When implementing a methode or overriding a methode the prefixes of the parametersnames are wrongly changed. In the preferences I put an,a,some as prefix for parameters interface: public interface iTestInterFace { public void foo( String aParameter, Integer anInteger ) ; } when I implement this interface I get ( auto generated ): public class TestImplementation implements iTestInterFace { /* (non-Javadoc) * @see iTestInterFace#doStuff(java.lang.String, java.lang.Integer) */ public void foo( String someParameter, Integer someAnInteger ) { ^^^^ ^^^^^^ // TODO Auto-generated method stub } } When I extend this class and use override/implent methode from the source menu I get : public class TestExtender extends TestImplementation { /* (non-Javadoc) * @see iTestInterFace#foo(java.lang.String, java.lang.Integer) */ public void foo( String someSomeParameter, Integer someSomeAnInteger ) { ^^^^^^^^ ^^^^^^^^^^ // TODO Auto-generated method stub super.foo( someSomeParameter, someSomeAnInteger ); } } I would like that if the parameter starts with one of the prefixes that it is not changed. I use Eclipse Version: 3.0.0 Build id: 200401290841
|
2004-01-30 16:53:41
| 1,075,500,000 |
resolved fixed
|
0649db2
| 1,076,350,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java
|
JDT
|
4,487 | 50,911 |
Bug 50911 New search: can't search for a search result
|
I20040128 (5pm) -> New search view turned on The "search" context menu doesn't appear on selections in the search results view. I use this frequently for back-tracing when browsing code. Search for references to a method, and then search for references to the referencing method, etc. Ctrl+Shift+G to search on a selection in the search results view also used to work.
|
2004-01-29 16:14:52
| 1,075,410,000 |
resolved fixed
|
21d44a0
| 1,076,340,000 |
org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/AutomatedSuite.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/search/SearchTest.java org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/search/WorkspaceScopeTest.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ReferenceScopeFactory.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsInHierarchyAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReadReferencesInProjectAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReferencesAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindReferencesInHierarchyAction.java
|
JDT
|
4,488 | 50,574 |
Bug 50574 quick fix for removing local variable that is never read changes side effects
|
You'll need to set the "Local variable is never read" option in Window>Preferences>Java>Compiler>Unused Code to something other than "Ignore" to reproduce this. The quick fix "Remove variable <variable name> and assignments without possible side effects" that is offered if a local variable is never read makes two types of mistakes: 1. Some side effects are not recognized, e.g. "fixing" int k = 3; int n; n = k++; System.out.println (k); yields int k = 3; System.out.println (k); 2. The variable definition is removed even if it has side effects, e.g. int n = System.in.read (); is removed, whereas if a later assignment has side effects, it is left unchanged, including the now undefined reference to the local variable, e.g. int n; n = System.in.read (); becomes n = System.in.read (); What I think *should* happen is that the initializing assignment and later assignments should be treated alike; the left-hand side referring to the local variable should *always* be removed, and the right-hand side should be removed if and only if it has no side effects. This may result in invalid code if the right-hand side expression has side effects but does not form a statement; a deluxe version might extract the parts that have side effects and insert them as statements in the correct order, but even without this there would be a significant improvement over the current behaviour, which changes side effects and leaves references to undefined variables around.
|
2004-01-25 16:04:34
| 1,075,060,000 |
resolved fixed
|
e47f476
| 1,076,340,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/RemoveDeclarationCorrectionProposal.java
|
JDT
|
4,489 | 38,200 |
Bug 38200 quick fix: make method abstract [quick fix]
|
20030527 abstract class A{ String getText();//error here } it's likely that i want to make getText() abstract but there's no qf for it
|
2003-05-28 12:51:57
| 1,054,140,000 |
resolved fixed
|
bca6140
| 1,076,330,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java
|
JDT
|
4,490 | 48,831 |
Bug 48831 Introduce Factory: doesn't generate needed imports
|
I20031216 + patch Example code: package p1; public class A { public A() { } } package p2; public class B { void foo() { } } Create a factory method for A() in B. B is missing the import to A.
|
2003-12-16 06:16:37
| 1,071,570,000 |
resolved fixed
|
d873746
| 1,076,300,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceFactoryRefactoring.java
|
JDT
|
4,491 | 48,968 |
Bug 48968 "Focus on" in typehierarchy doesn't show name for anonymous inners [type hiearchy]
|
I2003-12-16-20:00 1) Import Junit 2) Create a Java working set containing junit.framework 3) open a type hierarchy on junit.framework.Protectable. 4) In the type hierarchy, select the working set created in step 2). 5) Observe: Protectable has an anonymous inner subclass 6) open the context menu on the anonymous class 7) observe: the menu contains an entry like this: "Focus on ''". I.e. there is no label for the anonymous inner class.
|
2003-12-17 05:07:36
| 1,071,660,000 |
resolved fixed
|
4739f58
| 1,076,300,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/FocusOnSelectionAction.java
|
JDT
|
4,492 | 51,160 |
Bug 51160 IllegalArgumentException inlining method
|
Build 20040203 Got the following IllegalArgumentException attempting to show the preview of an inline method refactoring: Caused by: java.lang.IllegalArgumentException at org.eclipse.jdt.core.dom.ASTNode.checkNewChild(ASTNode.java:1101) at org.eclipse.jdt.core.dom.ASTNode$NodeList.add(ASTNode.java:828) at org.eclipse.jdt.internal.corext.refactoring.code.CallInliner.addNewLocals (CallInliner.java:518) at org.eclipse.jdt.internal.corext.refactoring.code.CallInliner.perform (CallInliner.java:448) at org.eclipse.jdt.internal.corext.refactoring.code.InlineMethodRefactoring.checkIn put(InlineMethodRefactoring.java:229) at org.eclipse.jdt.internal.ui.refactoring.CheckConditionsOperation.run (CheckConditionsOperation.java:64) at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:99) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:101) Apparently, the child that is being added already has a parent.
|
2004-02-04 10:00:36
| 1,075,910,000 |
verified fixed
|
226dbe4
| 1,076,300,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java
|
JDT
|
4,493 | 50,892 |
Bug 50892 Search empty using Search perspective
|
Build 20040129 Here is my setup: - I have my own Search perspective defined. - I set the preference to use this perspective to report matches. - I'm NOT using the new search view. - I have one window per perspective. When I search for references to a method from the Java perspective, it briefly switches to the Search perspective, then come back to the Java perspctive, continue progress reporting (saying that matches are found), but at the end no result is shown in the Search perspective.
|
2004-01-29 13:37:05
| 1,075,400,000 |
resolved fixed
|
55e5e63
| 1,076,090,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.java
|
JDT
|
4,494 | 49,826 |
Bug 49826 Type filter ignores some filters
| null |
2004-01-11 15:17:18
| 1,073,850,000 |
resolved fixed
|
11a869d
| 1,076,020,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/TypeFilter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/TypeFilterInputDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/TypeFilterPreferencePage.java
|
JDT
|
4,495 | 38,458 |
Bug 38458 enhance 'remove from classpath' [reorg] [ccp]
|
20030604 No delete offered on external JAR's: It could ask to remove them from the class path
|
2003-06-05 05:14:12
| 1,054,800,000 |
resolved fixed
|
d0d275b
| 1,076,020,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/RemoveFromClasspathAction.java
|
JDT
|
4,496 | 50,676 |
Bug 50676 Out of memory during "Use supertype where possible"
| null |
2004-01-27 09:23:17
| 1,075,210,000 |
resolved fixed
|
6244a6f
| 1,076,000,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeTypeRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceUtil.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/CompositeOrTypeConstraint.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/ConstraintVariableFactory.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/FullConstraintCreator.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/ITypeConstraintFactory.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/SimpleTypeConstraint.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/typeconstraints/TypeConstraintFactory.java
|
JDT
|
4,497 | 51,184 |
Bug 51184 Fonts on Preference Pages
|
Eclipse 3.0 M6. The following preference pages do not inherit their font settings from their parent Composite. Of course, this could be by design, but I doubt it. You can see this by changing the Dialog Font preference (Workspace > Fonts) from the default, 8 points, to something big such as 16 points. Next time you open the preferences you'll see that most other pages respect the Dialog Font setting. The offenders are as follows: Java > Code Formatter - Preview text area. Java > Code Formatter (WIP turned on) - Preview text area. - Dialog that opens after Clicking the "Edit..." button. Java > Editor > Syntax tab - Preview text area. Java > Editor > Templates - Preview text area. Java > Work in Progress - The whole page. There are other preference page offenders in Platform and Team, for which I'll submit individual bug reports.
|
2004-02-04 12:43:30
| 1,075,920,000 |
resolved fixed
|
8a176da
| 1,076,000,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/WorkInProgressPreferencePage.java
|
JDT
|
4,498 | 51,209 |
Bug 51209 Unhandled event loop exception while trying to open a new file
|
i am using: I20040203 Tue, 3 Feb 2004 -- 09:05 (-0500) Version: 3.0.0 Build id: 200402030905 I had the IDE open, and the "work in progress" preference for auto refresh was turned on. I created a new java source file using another text editor (ie from outside Eclipse). After waiting for a few minutes, I used Ctrl+Shift+T to open the new class. The new class did appear in the "open java class dialog", but when I clicked on the OK button, nothing happened.
|
2004-02-04 21:11:03
| 1,075,950,000 |
closed fixed
|
7fc1cd0
| 1,076,000,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/IFileTypeInfo.java
|
JDT
|
4,499 | 51,092 |
Bug 51092 [reconciling] JavaMultiPassReconciler removes annotations
|
I20040130 + plug-in export Open a CU which has errors and warnings. Observe: the annotations in overview and annotation ruler are quickly visible and then get removed. This is caused by JavaMultiPassReconciler.
|
2004-02-03 05:24:43
| 1,075,800,000 |
verified fixed
|
831623e
| 1,075,830,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java
|
JDT
|
4,500 | 28,716 |
Bug 28716 [misc] 'Goto Matching Bracket' fails when 'Show Source of Selected Element Only' is selected
|
When the 'Show Source of Selected Element Only' button is pressed and the editor is narrowed down to the selected method the Goto Matching Bracket action fails. It reports 'No Matching Bracket' found in the status bar. Invoking the same action on the same bracket when the editor shows the whole of the source file works as expected.
|
2002-12-20 04:50:30
| 1,040,380,000 |
resolved fixed
|
68178cb
| 1,075,830,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java
|
JDT
|
4,501 | 46,753 |
Bug 46753 [misc] Typing should not be blocked by background activity
|
Build 20031111 1. Open an editor 2. Start a CVS background activity (e.g. Synchronize several projects) 3. Start typing in the editor Observe: The whole UI freezes and what you typed is not shown in the editor until the end of the backgroung activity
|
2003-11-17 02:07:12
| 1,069,050,000 |
verified fixed
|
f10329d
| 1,075,830,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/filebuffers/CompilationUnitDocumentProvider2.java
|
JDT
|
4,502 | 50,768 |
Bug 50768 [navigation] outline popup cannot be scrolled
|
I20040128 If I open the content outline popup on a class with a large number of methods (such as core.internal.resources.Workspace.java), it fills the height of the screen, and there is no way to scroll down in the list (no scrollbars, and arrow down does not cause it to scroll).
|
2004-01-28 11:45:13
| 1,075,310,000 |
verified fixed
|
16240c9
| 1,075,480,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java
|
JDT
|
4,503 | 31,818 |
Bug 31818 [navigation] Open Type Hierarchy loses selection
|
build I20030211 - open a CU (e.g. BookmarkNavigator.java) - position the cursor between methods - F4 - it opens the type hierarchy on the class, but also changes the text editor's selection to select the class name It should not affect the text editor selection.
|
2003-02-13 15:21:06
| 1,045,170,000 |
resolved fixed
|
f433653
| 1,075,460,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/OpenTypeHierarchyUtil.java
|
JDT
|
4,504 | 46,935 |
Bug 46935 Change method signature: More comfort for entering types [refactoring]
|
20031119 In the 'Refactoring > Change Method Signature' dialog, entering the return type as well as entering parameter type is very cumbersome. - No browse to choose a type - No combo for 'int', 'void' ect - Not clear how imports are handled. Do I have to enter qualified types to get imports, or will this result in qualified names in the code? - No validation as you type in for parameter fields. As this is a refactoring it looks strange that you can enter a non-existing file name. I would suggest that always fully qualified type are shown and that the refactoring creates imports but uses simple names.
|
2003-11-19 05:44:54
| 1,069,240,000 |
resolved fixed
|
35d8e13
| 1,075,450,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport01_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport01_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport02_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport02_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport03_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport03_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport04_in.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testImport04_out.java org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/cannotModify/A_testFailImport01.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/ChangeSignatureTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java
|
JDT
|
4,505 | 50,745 |
Bug 50745 [misc] StringIndexOutOfBoundsException while indenting
|
Note: I had plenty of compile and syntax errors in my source (-> refactoring using regexprs and other brute force methods). But all the parens/braces/brackets were matched, so I nevertheless expected the indenter to produce valid output. !MESSAGE Action for command 'org.eclipse.jdt.ui.edit.text.java.indent' failed to execute properly. !STACK 0 java.lang.StringIndexOutOfBoundsException: String index out of range: 0 at java.lang.StringBuffer.charAt(StringBuffer.java:283) at org.eclipse.jdt.internal.ui.actions.IndentAction.indentLine(IndentAction.java:257) at org.eclipse.jdt.internal.ui.actions.IndentAction.access$1(IndentAction.java:211) at org.eclipse.jdt.internal.ui.actions.IndentAction$1.run(IndentAction.java:133) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.jdt.internal.ui.actions.IndentAction.run(IndentAction.java:172) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.ui.internal.commands.ActionHandler.execute(ActionHandler.java:40) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:414) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:778) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:815) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:505) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:444) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:233) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:699) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:832) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:857) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1716) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1712) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3037) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2940) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2865) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1371) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2019) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1530) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:265) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:248) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:85) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581) Action for command 'org.eclipse.jdt.ui.edit.text.java.indent' failed to execute properly.
|
2004-01-28 04:52:36
| 1,075,280,000 |
verified fixed
|
fce0c2a
| 1,075,290,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.java
|
JDT
|
4,506 | 50,212 |
Bug 50212 [formatting] Repeated insertion of new line when formatting javadoc comment
|
Formatting the following javadoc comment multiple times results in the insertion of a new line before 'test' *each* time: /** * <pre></pre> * test */
|
2004-01-19 09:03:52
| 1,074,520,000 |
verified fixed
|
d65091a
| 1,075,200,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/CommentRegion.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/MultiCommentRegion.java
|
JDT
|
4,507 | 50,658 |
Bug 50658 3 type constraint tests failing
|
20040126 TypeConstraintTests.testConstraints4 TypeConstraintTests.testConstraints8 TypeConstraintTests.testConstraints19 are failing. I disabled them for now as the refactoring tests suites are unaffected.
|
2004-01-27 02:43:06
| 1,075,190,000 |
resolved fixed
|
38cd8fd
| 1,075,190,000 |
org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/typeconstraints/TypeConstraintTests.java
|
JDT
|
4,508 | 50,100 |
Bug 50100 [Performance] Huge performance issue with problem decorators
|
Using 0106 build, it takes minutes to update the markers for a compilation unit containing 250 problems (maximum limit). Each time I save the unit, the UI dies for several minutes. There is a running job in the background that I cannot identify. This is something new. I was not that bad with M5. I set it as critical, because it makes the editor unusable.
|
2004-01-15 15:49:48
| 1,074,200,000 |
resolved fixed
|
5fc0fa9
| 1,075,130,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/ProblemsLabelDecorator.java
|
JDT
|
4,509 | 49,658 |
Bug 49658 Incorrect decorator for inner classes of an interface [render]
|
public interface I { class IC {} } In Package Explorere and Members IC shows up with a blue triangle (package private). It is of course public. When public is added it shows up with no decorator. In any case it is questionalbe both here and when IC is a member of a class wether the decorator should be abasent in the latter case or whether it should be the gree circle.
|
2004-01-07 17:58:38
| 1,073,520,000 |
resolved fixed
|
bcb8cb0
| 1,075,120,000 |
org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/contentassist/JavaTypeCompletionProcessor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedCorrectionProposal.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ResultCollector.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyLabelProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementImageProvider.java
|
JDT
|
4,510 | 50,386 |
Bug 50386 Autoindent/Smart Tab in case statement
|
1: case SWT.TRAVERSE_ESCAPE : 2: fTableViewer.cancelEditing(); 3: e.doit= true; Pressing Tab at beginning of line 3 removes one tab character from line 3. It shouldn't. Same indentation error for Smart Return, Correct Indentation, ... for all lines which are 2+ lines after the case keyword.
|
2004-01-22 06:40:49
| 1,074,770,000 |
resolved fixed
|
eb60839
| 1,075,120,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaIndenter.java
|
JDT
|
4,511 | 42,233 |
Bug 42233 JUnit code generated for TestSuite is wrong [JUnit]
| null |
2003-08-28 15:51:57
| 1,062,100,000 |
resolved fixed
|
9a55400
| 1,074,810,000 |
org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/MethodStubsSelectionButtonGroup.java
|
JDT
|
4,512 | 6,579 |
Bug 6579 Packages view: can't open MANIFEST.MF of JAR file
|
1. Drill into a JAR with a manifest file (MANIFEST.MF) in the Packages view. Note: The JAR must be on the build path. 2. Double-click MANIFEST.MF -> nothing happens 3. From the context menu select "Open" -> nothing happens I used ant.jar in org.eclipse.ant.core as my test case.
|
2001-12-05 04:08:19
| 1,007,540,000 |
resolved fixed
|
c4846da
| 1,074,620,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/EditorUtility.java
|
JDT
|
4,513 | 50,230 |
Bug 50230 Paste omits a character
|
20040119 - In the following text, double click on 'rel' to get the word selected. - CTRL + C - Set cursor between empty brackets, paste -> only pastes 'el', the letter 'r' is gone protected Object getAttribute(Object parent, int childProperty) { if (child instanceof List) { } else if (rel != null && !rel.equals(child)) { } else if () return child; }
|
2004-01-19 13:13:10
| 1,074,540,000 |
verified fixed
|
df434eb
| 1,074,590,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java
|
JDT
|
4,514 | 50,194 |
Bug 50194 Indenting Java breaks comments
|
When correcting indentation (ctrl-I in my configuration), java comments are not properly preserved. My original code [1] is 'indented' to code [2], which is unexpected and syntactically incorrect. thanks PhF .. [1] try{ /* for(int i=0; i<8; i++){ System.out.println("something");} */ somethingElse(); .. [2] try{ /* */ for(int i=0; i<8; i++){ System.out.println("something");} */ somethingElse();
|
2004-01-19 03:57:06
| 1,074,500,000 |
verified fixed
|
1f57f57
| 1,074,520,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocAutoIndentStrategy.java
|
JDT
|
4,515 | 49,975 |
Bug 49975 Java Editor "hangs" and JavaEditorTextHoverDescriptor
|
Software: Windows 2000, Eclipse build id I200401060800, Sun JDK 1.4.1_05. Hardware: Celeron 1,7Ghz, 512MB Ram, -Xms64M -Xmx380M vm parameters At various tasks (simple editing, saving, changing to other java editor) sometimes Eclipse "hangs" on several seconds. After some investigating I think that it maybe related to the org.eclipse.jdt.internal.ui.text.java.hover.JavaEditorTextHoverDescriptor class. I imported the jdt.ui plugin as a source plugin and and enhance the following function with one System.out: private boolean dependsOn(IPluginDescriptor descriptor0, IPluginDescriptor descriptor1) { System.out.println("# Enter: " + descriptor0.getLabel() + ", " + descriptor1.getLabel()); ... - the other remains the same } When running the runtime workbench every occured "hang" produces a large list (over 1600 elements). After this list completes I can continue my work. A sample list fraction I got for a simple "hang" (after switching two java editor with Ctrl+F6). The full list consists of 1764 lines): # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Default Text Editor, JDI Debug UI # Enter: Eclipse IDE UI, JDI Debug UI # Enter: Views, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Configurator, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace Text, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Text Editor Framework, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace Text, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: File Buffers, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Compare Support, JDI Debug UI # Enter: Eclipse IDE UI, JDI Debug UI # Enter: Views, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Configurator, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace Text, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Text Editor Framework, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace Text, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Text, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse IDE UI, JDI Debug UI # Enter: Views, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Configurator, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Search Support, JDI Debug UI # Enter: Eclipse IDE UI, JDI Debug UI # Enter: Views, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Help System Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Core, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: Install/Update Configurator, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Core Resource Management, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Eclipse UI, JDI Debug UI # Enter: JFace, JDI Debug UI # Enter: Standard Widget Toolkit, JDI Debug UI # Enter: Core Runtime Plug-in Compatibility, JDI Debug UI # Enter: org.eclipse.core.runtime, JDI Debug UI # Enter: Workbench, JDI Debug UI # Enter: JFace, JDI Debug UI # Ent
|
2004-01-14 08:19:03
| 1,074,090,000 |
resolved fixed
|
417760c
| 1,074,190,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/BestMatchHover.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaEditorTextHoverDescriptorComparator.java
|
JDT
|
4,516 | 49,966 |
Bug 49966 Assertion failed while creating copy of compilation unit
|
CreateCopyOfCompilationUnitChange.createChangeManager passed a negative offset to the constructor of ReplaceEdit. This is reproducible with one specific compilation unit (a modified AbstractTextEditor, no errors, no warnings): - start eclipse - click on AbstractTextEditor in Package Explorer - Ctrl-C, Ctrl-V - confirm suggested new name with Enter -> Error dialog box with undo/abort buttons: "An exception has been caught while processing the change 'Create file:/test/src/test4/CopyOfAbstractTextEditor'. Reason: Assertion failed: " - and nothing more apart from the description of the buttons. From the log: org.eclipse.jface.text.Assert$AssertionFailedException: Assertion failed: at org.eclipse.jface.text.Assert.isTrue(Assert.java:175) at org.eclipse.jface.text.Assert.isTrue(Assert.java:160) at org.eclipse.text.edits.TextEdit.<init>(TextEdit.java:137) at org.eclipse.text.edits.ReplaceEdit.<init>(ReplaceEdit.java:35) at org.eclipse.jdt.internal.corext.refactoring.reorg.CreateCopyOfCompilationUnitChange.createChangeManager(CreateCopyOfCompilationUnitChange.java:103) at org.eclipse.jdt.internal.corext.refactoring.reorg.CreateCopyOfCompilationUnitChange.getCopiedFileSource(CreateCopyOfCompilationUnitChange.java:81) at org.eclipse.jdt.internal.corext.refactoring.reorg.CreateCopyOfCompilationUnitChange.getOldFile(CreateCopyOfCompilationUnitChange.java:63) at org.eclipse.jdt.internal.corext.refactoring.nls.changes.CreateFileChange.perform(CreateFileChange.java:79) at org.eclipse.jdt.internal.corext.refactoring.CompositeChange.createUndoList(CompositeChange.java:122) at org.eclipse.jdt.internal.corext.refactoring.CompositeChange.perform(CompositeChange.java:149) at org.eclipse.jdt.internal.ui.refactoring.RefactoringExecutionHelper$1.run(RefactoringExecutionHelper.java:80) at org.eclipse.jdt.internal.core.BatchOperation.executeOperation(BatchOperation.java:34) at org.eclipse.jdt.internal.core.JavaModelOperation.run(JavaModelOperation.java:698) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1555) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1574) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3129) at org.eclipse.jdt.internal.ui.refactoring.RefactoringExecutionHelper$Operation.run(RefactoringExecutionHelper.java:78) at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:302) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:394) at org.eclipse.jdt.internal.ui.refactoring.RefactoringExecutionHelper.perform(RefactoringExecutionHelper.java:130) at org.eclipse.jdt.internal.ui.refactoring.reorg.ReorgCopyStarter.run(ReorgCopyStarter.java:70) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction$JavaElementAndResourcePaster.paste(PasteAction.java:402) at org.eclipse.jdt.internal.ui.refactoring.reorg.PasteAction.run(PasteAction.java:189) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun(SelectionDispatchAction.java:212) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run(SelectionDispatchAction.java:188) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.ui.actions.RetargetAction.runWithEvent(RetargetAction.java:212) at org.eclipse.ui.internal.commands.ActionHandler.execute(ActionHandler.java:40) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:390) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:763) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:803) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:486) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$0(WorkbenchKeyboard.java:421) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:215) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:692) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:846) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:871) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:856) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1716) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1712) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3036) at org.eclipse.swt.widgets.Tree.WM_CHAR(Tree.java:1292) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2939) at org.eclipse.swt.widgets.Display.windowProc(Display.java:2836) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1369) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1990) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1482) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:246) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:85) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-01-14 05:31:10
| 1,074,080,000 |
verified fixed
|
0abeada
| 1,074,100,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/CreateCopyOfCompilationUnitChange.java
|
JDT
|
4,517 | 50,000 |
Bug 50000 PostSelectionWithAST causes IllegalArgumentException
|
I20040113 Opening a class file from a JAR which has no source causes IAE. !ENTRY org.eclipse.core.runtime 4 2 Jan 14, 2004 17:43:55.905 !MESSAGE An internal error occurred during: "Java AST creation". !STACK 0 java.lang.IllegalArgumentException at org.eclipse.jdt.core.dom.AST.parseCompilationUnit(AST.java:528) at org.eclipse.jdt.core.dom.AST.parseCompilationUnit(AST.java:439) at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$PartListenerGroup.computeAST(SelectionListenerWithASTManager.java:122) at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$PartListenerGroup.calculateASTandInform(SelectionListenerWithASTManager.java:133) at org.eclipse.jdt.internal.ui.viewsupport.SelectionListenerWithASTManager$1.run(SelectionListenerWithASTManager.java:93) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:62)
|
2004-01-14 12:01:32
| 1,074,100,000 |
resolved fixed
|
e223827
| 1,074,100,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java
|
JDT
|
4,518 | 44,535 |
Bug 44535 [misc] Wrong message displayed while opening a class file outside classapth
| null |
2003-10-09 07:33:03
| 1,065,700,000 |
verified fixed
|
9a60ab1
| 1,074,090,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/ResourceLocator.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java
|
JDT
|
4,519 | 49,840 |
Bug 49840 refactoring "Convert local variable to field" is buggy for arrays [refactoring]
|
When refactoring the code below to "Convert local variable to field", the type of the variable is not preserved. The type of the field is int, NOT array of int as expected. <my code> void someMethod(){ int someArray[]; } </my code>
|
2004-01-12 05:50:45
| 1,073,900,000 |
resolved fixed
|
5dd25e4
| 1,074,080,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_test19_in.java org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_test19_out.java org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_test20_in.java org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_test20_out.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/PromoteTempToFieldTests.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/PromoteTempToFieldRefactoring.java
|
JDT
|
4,520 | 49,869 |
Bug 49869 NPE showing Type Hierarchies history after layout change
|
M6 - I retrieve the org.eclipse.swt project from cvs, though this should happen with any java project - select the project in the Package Explorer and press F4 to open a hierarchy view on it - drop down the hierarchy view's Previous Type Hierarchies tool item, it will show 1+ item(s), good - drop down the hierarchy view's dropdown (ie.- the down-pointing triangle in the toolbar) and select Layout -> Horizontal View Orientation - now try to drop down the Previous Type Hierarchies tool item and the attached exception will occur
|
2004-01-12 14:15:55
| 1,073,930,000 |
resolved fixed
|
65b4d52
| 1,074,070,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HistoryDropDownAction.java
|
JDT
|
4,521 | 49,352 |
Bug 49352 [typing] Smart quotes problem
|
M6: write this: System.out.println(filter:) Now let's fix this: - enter a '"' between the ':' and the ')' System.out.println(filter:"") To correct this try to enter a '"' between '(' and 'f' System.out.println(filter:"""")
|
2003-12-26 16:13:44
| 1,072,470,000 |
resolved fixed
|
65d4593
| 1,074,070,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java
|
JDT
|
4,522 | 44,035 |
Bug 44035 [formatting] Error in formatting parts of java code snippets in comment
|
This is for build I20030930. The Java code formatter options are set to Format java code snippets. Taking the following comment: /** * The following is a Java snipet. * * <pre> * while ((size = availableSize(stream, size)) > 0) { * System.out.println("available"); * } * </pre> */ public void test() { } And trying to format it here is what we got: /** * The following is a Java snipet. * * <pre> * while ((size = availableSize(stream, size)) > 0) { * System.out.println("available"); } * </pre> */ public void test() { }
|
2003-10-01 16:05:59
| 1,065,040,000 |
resolved fixed
|
8cecdcd
| 1,074,070,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/CommentFormattingStrategy.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/CommentRange.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/HTMLEntity2JavaReader.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/ICommentAttributes.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/Java2HTMLEntityReader.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/JavaDocRegion.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/JavaSnippetFormattingStrategy.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/MultiCommentLine.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/MultiCommentRegion.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java
|
JDT
|
4,523 | 49,945 |
Bug 49945 Typing a brace destroys subsequent character
|
I20040106 + plugin-export 20040108_1804 Typing a brace destroys the subsequent '/' character: public class Example { public Example() { } // <- insert '{' before comment public static void main(String[] args) { } } All Preferences 'Java > Editor > Typing' have the default setting.
|
2004-01-13 15:35:13
| 1,074,030,000 |
verified fixed
|
70f988b
| 1,074,060,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java
|
JDT
|
4,524 | 46,929 |
Bug 46929 refactoring: anonymous subclass of local type can be made nested [refactoring]
|
I20031119 (M5 testpass) 1. Have this code: public class Test { public void foobar() { class Listener2 { public int bar() { return 0; } } this.addListener(new Listener2() { public int bar() { return 1; } }); } public void addListener(Object o) { } } 2. Select the anonymous class extending the local type 3. Choose Refactor->Convert Anonymous Class to Nested -> The refactoring is possible and does the semi-expected, creating a new nested type -> This is wrong, because the Listener type is not visible outside the method
|
2003-11-19 05:29:20
| 1,069,240,000 |
resolved fixed
|
3ec0f18
| 1,074,030,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ConvertAnonymousToNestedRefactoring.java
|
JDT
|
4,525 | 38,513 |
Bug 38513 JavaModel not updated when creating an "empty" IClasspathContainer [package explorer]
|
I have implemented IClasspathContainer. When I add my container to a java project via Project Properties > JavaBuild Path > Libraries > Add Library wizard, the Package Explorer view is not updated if my container resolves to an empty classpath and the container does not appear in the view. If I then close and then reopen the java project the container appears in the Package Explorer view correctly, even if the container resolves to an empty classpath. This problem can be reproduced in Eclipse 2.1 as follows: 1. Open the Java Perspective, Package Explorer view. 2. Create a new Java Project. 3. Right-click the project and select Properties > Java Build Path > Libraries (tab). 4. Note the default JRE System Libraries container should appear in the list. 5. Select the Add Library button and then select the Required Plug-ins container from the Add Library page. 6. Then select Next and then Finish to return to the Properties page. 7. In the Properties page select OK to return to the Package Explorer view. 8. Note the Package Explorer view has not updated and the Required Plug-ins container is not displayed. 9. Right-click on the java project and select Close Project form the menu. 10. Then right-click on the java project and select Open Project form the menu. 11. Note the Package Explorer view has now updated and the Required Plug-ins container is now displayed. I believe the JavaModel is not being updated if a newly added container resolves to an empty classpath. This is probably incorrect or lacking functionality in the special case of an "empty" IClasspathContainer and therefore some notification to update the JavaModel, under these circumstances, may be required. This problem was recreated under Windows 2000 SP1, Eclipse 2.1 Build 200303272130, and Sun Java 2 SDK Standard Edition v1.3.1. Regards, Joss Wright
|
2003-06-05 08:51:21
| 1,054,820,000 |
resolved fixed
|
0abbaef
| 1,073,930,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java
|
JDT
|
4,526 | 49,719 |
Bug 49719 wrong-sounding phrase in string externalization dialog [refactoring] [nls]
|
M6, this is a bit picky - select a java project in the Package Explorer, right-click, invoke Source -> Find Strings to Externalize... - the text on the next dialog should say "X non-externalized string(s) found."
|
2004-01-08 14:22:45
| 1,073,590,000 |
resolved fixed
|
6d73a50
| 1,073,910,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindStringsToExternalizeAction.java
|
JDT
|
4,527 | 49,802 |
Bug 49802 comparing with local history leaks an Image
|
M6 - open a java file - make a change to it and save it - in the open editor right-click -> Local History > Compare With... - Close the subsequent dialog This leaks the image from the "Java Source Compare" title bar each time it's invoked. Here's the creation trace: at org.eclipse.swt.graphics.Device.new_Object(Device.java:648) at org.eclipse.swt.graphics.Image.<init>(Image.java:629) at org.eclipse.jface.resource.ImageDescriptor.createImage (ImageDescriptor.java:135) at org.eclipse.jface.resource.ImageDescriptor.createImage (ImageDescriptor.java:94) at org.eclipse.jface.resource.ImageDescriptor.createImage (ImageDescriptor.java:83) at org.eclipse.jdt.internal.ui.compare.JavaCompareUtilities.getImage (JavaCompareUtilities.java:230) at org.eclipse.jdt.internal.ui.compare.JavaCompareWithEditionAction.run (JavaCompareWithEditionAction.java:76) at org.eclipse.jdt.internal.ui.compare.JavaHistoryAction.run (JavaHistoryAction.java:341) at org.eclipse.jface.action.Action.runWithEvent(Action.java:842) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:509) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:461) at org.eclipse.jface.action.ActionContributionItem$5.handleEvent (ActionContributionItem.java:408) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:833) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2318) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1999) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1482) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:246) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:47) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:85) 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:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581)
|
2004-01-09 17:28:52
| 1,073,690,000 |
resolved fixed
|
159696c
| 1,073,910,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaCompareWithEditionAction.java
|
JDT
|
4,528 | 45,585 |
Bug 45585 [syntax highlighting] Task Tags parsing bug
|
1) Add "BUG" to your Task Tags 2) Comment the following code case Level.DEBUG_INT : it will recognize "BUG" in "DEBUG" as a Task Tag.
|
2003-10-27 05:24:55
| 1,067,250,000 |
resolved fixed
|
3900959
| 1,073,670,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaCommentScanner.java
|
JDT
|
4,529 | 47,208 |
Bug 47208 Generate Javadoc dialog lays out too wide [javadoc]
|
If one uses a custom doclet and sets the doclet class path to a long path (e.g. with many JAR files on it), the "Generate Javadoc" dialog lays out to try and fit the full doclet class path on the screen; this results in a very wide dialog.
|
2003-11-21 06:47:22
| 1,069,420,000 |
resolved fixed
|
40faefa
| 1,073,650,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocTreeWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocWizardPage.java
|
JDT
|
4,530 | 49,708 |
Bug 49708 Deadlock saving compilation unit
|
It appears there is contention for the lock on the changed compilation unit resulting in the deadlock. The JUnit thread has the lock on the CU and attempts a synchExec. The UI thread is waiting for the lock on the CU. Full thread dump Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode): "Worker-254" prio=5 tid=0x0511c210 nid=0xd08 in Object.wait() [497f000..497fd94] at java.lang.Object.wait(Native Method) at org.eclipse.core.internal.jobs.WorkerPool.sleep(WorkerPool.java:184) - locked <0x124fbd70> (a org.eclipse.core.internal.jobs.WorkerPool) at org.eclipse.core.internal.jobs.WorkerPool.startJob (WorkerPool.java:21 0) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55) "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon prio=2 tid=0x040d0188 n id=0xe48 in Object.wait() [617f000..617fd94] at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:429) at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:149) - locked <0x109711f8> (a org.eclipse.swt.widgets.RunnableLock) at org.eclipse.ui.internal.UISynchronizer.syncExec (UISynchronizer.java:2 5) at org.eclipse.swt.widgets.Display.syncExec(Display.java:2628) at org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart.postSyncRunnable (TestRunnerViewPart.java:685) at org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart.codeHasChanged (T estRunnerViewPart.java:1094) at org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart$DirtyListener.pr ocessDelta(TestRunnerViewPart.java:285) at org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart$DirtyListener.el ementChanged(TestRunnerViewPart.java:260) at org.eclipse.jdt.internal.core.DeltaProcessor$2.run (DeltaProcessor.jav a:1388) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatfo rm.java:813) at org.eclipse.core.runtime.Platform.run(Platform.java:457) at org.eclipse.jdt.internal.core.DeltaProcessor.notifyListeners (DeltaPro cessor.java:1383) at org.eclipse.jdt.internal.core.DeltaProcessor.fireReconcileDelta (Delta Processor.java:1245) at org.eclipse.jdt.internal.core.DeltaProcessor.fire (DeltaProcessor.java :1203) at org.eclipse.jdt.internal.core.JavaModelOperation.run (JavaModelOperati on.java:723) at org.eclipse.jdt.internal.core.JavaElement.runOperation (JavaElement.ja va:524) at org.eclipse.jdt.internal.core.CompilationUnit.reconcile (CompilationUn it.java:1050) at org.eclipse.jdt.internal.core.CompilationUnit.reconcile (CompilationUn it.java:1022) at org.eclipse.jdt.internal.ui.text.java.JavaReconcilingStrategy.reconci le(JavaReconcilingStrategy.java:72) - locked <0x177f7f50> (a org.eclipse.jdt.internal.core.CompilationUnit) at org.eclipse.jdt.internal.ui.text.java.JavaReconcilingStrategy.reconci le(JavaReconcilingStrategy.java:99) at org.eclipse.jface.text.reconciler.MonoReconciler.process (MonoReconcil er.java:76) at org.eclipse.jface.text.reconciler.AbstractReconciler$BackgroundThread .run(AbstractReconciler.java:189) "Worker-224" prio=5 tid=0x04058e28 nid=0x818 waiting on condition [60ff000..60ff d94] at java.lang.Thread.sleep(Native Method) at org.eclipse.ui.internal.progress.AnimationManager.animateLoop (Animati onManager.java:321) at org.eclipse.ui.internal.progress.AnimationManager$3.run (AnimationMana ger.java:471) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:62) "Java indexing" daemon prio=4 tid=0x00a2fd10 nid=0x1d4 in Object.wait() [387f000 ..387fd94] at java.lang.Object.wait(Native Method) - waiting on <0x126d3d70> (a org.eclipse.jdt.internal.core.search.indexi ng.IndexManager) at java.lang.Object.wait(Object.java:429) at org.eclipse.jdt.internal.core.search.processing.JobManager.run (JobMan ager.java:327) - locked <0x126d3d70> (a org.eclipse.jdt.internal.core.search.indexing.I ndexManager) at java.lang.Thread.run(Thread.java:534) "Start Level Event Dispatcher" daemon prio=5 tid=0x00a478c0 nid=0xae4 in Object. wait() [307f000..307fd94] at java.lang.Object.wait(Native Method) - waiting on <0x124f0128> (a org.eclipse.osgi.framework.eventmgr.EventTh read) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent (EventThr ead.java:169) - locked <0x124f0128> (a org.eclipse.osgi.framework.eventmgr.EventThread ) at org.eclipse.osgi.framework.eventmgr.EventThread.run (EventThread.java: 120) "Framework Event Dispatcher" daemon prio=5 tid=0x00a4ce78 nid=0x938 in Object.wa it() [303f000..303fd94] at java.lang.Object.wait(Native Method) - waiting on <0x124f0178> (a org.eclipse.osgi.framework.eventmgr.EventTh read) at java.lang.Object.wait(Object.java:429) at org.eclipse.osgi.framework.eventmgr.EventThread.getNextEvent (EventThr ead.java:169) - locked <0x124f0178> (a org.eclipse.osgi.framework.eventmgr.EventThread ) at org.eclipse.osgi.framework.eventmgr.EventThread.run (EventThread.java: 120) "Signal Dispatcher" daemon prio=10 tid=0x0003d408 nid=0x91c waiting on condition [0..0] "Finalizer" daemon prio=9 tid=0x009c0120 nid=0xa68 in Object.wait() [2ccf000..2c cfd94] at java.lang.Object.wait(Native Method) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111) - locked <0x124f02a0> (a java.lang.ref.ReferenceQueue$Lock) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159) "Reference Handler" daemon prio=10 tid=0x009becf0 nid=0x7a8 in Object.wait() [2c 8f000..2c8fd94] at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:429) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115) - locked <0x124f0308> (a java.lang.ref.Reference$Lock) "main" prio=7 tid=0x00035260 nid=0x348 waiting for monitor entry [7f000..7fc3c] at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$MouseClickListener. getCurrentTextRegion(JavaEditor.java:544) - waiting to lock <0x177f7f50> (a org.eclipse.jdt.internal.core.Compilat ionUnit) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor$MouseClickListener. mouseMove(JavaEditor.java:771) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java: 144) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:847) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2311) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1992) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1506) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1482) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.jav a:246) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:47 ) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformAct ivator.java:226) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.ja va:85) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl. java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAcces sorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:279) at org.eclipse.core.launcher.Main.run(Main.java:742) at org.eclipse.core.launcher.Main.main(Main.java:581) "VM Thread" prio=5 tid=0x009fb6e8 nid=0xad8 runnable "VM Periodic Task Thread" prio=10 tid=0x0003fb58 nid=0xb40 waiting on condition "Suspend Checker Thread" prio=10 tid=0x009c2590 nid=0x924 runnable
|
2004-01-08 12:40:59
| 1,073,580,000 |
resolved fixed
|
164e445
| 1,073,590,000 |
org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java
|
JDT
|
4,531 | 49,655 |
Bug 49655 StringIndexOutOfBoundsException on test failure [JUnit]
|
While testing the move to Ant 1.6.0 I was adjusting the org.eclipse.ant.core test suite (it had failures). I was reliably getting the following exception when test failures occurred: java.lang.StringIndexOutOfBoundsException: String index out of range: -1 at java.lang.String.substring(String.java:1444) at org.eclipse.jdt.internal.junit.ui.TestRunnerViewPart.testFailed (TestRunnerViewPart.java:524) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient$7.run (RemoteTestRunnerClient.java:477) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:813) at org.eclipse.core.runtime.Platform.run(Platform.java:457) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient.notifyTestFailed (RemoteTestRunnerClient.java:474) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient.access$16 (RemoteTestRunnerClient.java:471) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient$TraceProcessingState.r eadMessage(RemoteTestRunnerClient.java:125) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient.receiveMessage (RemoteTestRunnerClient.java:309) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient.access$30 (RemoteTestRunnerClient.java:308) at org.eclipse.jdt.internal.junit.ui.RemoteTestRunnerClient$ServerConnection.run (RemoteTestRunnerClient.java:235)
|
2004-01-07 16:56:17
| 1,073,510,000 |
resolved fixed
|
fd62ecd
| 1,073,520,000 |
org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestRunnerViewPart.java
|
JDT
|
4,532 | 48,641 |
Bug 48641 [typing] Smart paste "fixes" comments
|
A new feature was added to M5 where smart paste fixes C style comments into Java style comments: /* * */ becomes: /* * */ The problem is that we have lots of text that is formatted the using C style and using smart paste makes the code inconistent. I don't use the feature but others on the team do. Shouldn't smart paste just indent the code?
|
2003-12-12 10:15:09
| 1,071,240,000 |
resolved fixed
|
ff15185
| 1,073,500,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaHeuristicScanner.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaIndenter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java
|
JDT
|
4,533 | 49,599 |
Bug 49599 Occurrences finder should use a job
|
Build: 3.0 M6 I noticed that the background task to find occurrences in the file creates a new thread every time, rather than using jobs. This is exactly the situation that jobs were created for (in fact Erich used this as a demo of the job infrastructure at a code camp). Some advantages of changing to jobs: - less overhead (currently a new thread is created per key press, jobs use a thread pool) - better handling of priority (currently running in a thread with same priority as the UI, and thus is competing with UI thread for CPU more than it should) - smarter scheduling. Jobs with "DECORATE" priority are run based on a check of how busy the system is. Thus they do not run immediately if there are other things going on (they will run eventually, just not as quickly). This smooths over bottlenecks when the system is busy. Note that you can prevent this job from showing in the progress view or making the progress animation (cigarette) move by making it a system job (Job.setSystem(true)). Generally jobs that the user didn't explicitly start can be marked as system jobs. If there was a reason why jobs were considered and rejected, I'd be curious to know. If the infrastructure isn't useful to you then I want to fix it.
|
2004-01-06 15:53:07
| 1,073,420,000 |
resolved fixed
|
c0a3666
| 1,073,500,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/SelectionListenerWithASTManager.java
|
JDT
|
4,534 | 48,393 |
Bug 48393 inline final static field [refactoring]
|
Please provide a refactoring to inline a constant (final static field).
|
2003-12-10 03:52:00
| 1,071,050,000 |
resolved fixed
|
60ca83c
| 1,073,470,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/InlineMethodRefactoring.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/InlineAction.java
|
JDT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.