issue_id
int64
2.03k
426k
title
stringlengths
9
251
body
stringlengths
1
32.8k
status
stringclasses
6 values
after_fix_sha
stringlengths
7
7
project_name
stringclasses
6 values
repo_url
stringclasses
6 values
repo_name
stringclasses
6 values
language
stringclasses
1 value
issue_url
null
before_fix_sha
null
pull_url
null
commit_datetime
timestamp[us, tz=UTC]
report_datetime
timestamp[us, tz=UTC]
updated_file
stringlengths
2
187
file_content
stringlengths
0
368k
33,405
Bug 33405 Refactoring extract local variable fails in nested if statements
If a local variable is extracted from a nested if statement, and it only exists in the second case onwards, then the variable is positioned incorrectly between the if cases. String x; boolean test,test2,test3; if (test) { } else if (test2) { x = "ExtractMe"; } else if (test3) { x = "ExtractMe"; } -> highlight "ExtractM...
verified fixed
8e802bb
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T16:53:57Z
2003-02-27T01:40:00Z
org.eclipse.jdt.ui/core
33,405
Bug 33405 Refactoring extract local variable fails in nested if statements
If a local variable is extracted from a nested if statement, and it only exists in the second case onwards, then the variable is positioned incorrectly between the if cases. String x; boolean test,test2,test3; if (test) { } else if (test2) { x = "ExtractMe"; } else if (test3) { x = "ExtractMe"; } -> highlight "ExtractM...
verified fixed
8e802bb
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T16:53:57Z
2003-02-27T01:40:00Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractTempRefactoring.java
32,656
Bug 32656 Open/Close project in package explorer looses selection on java-projects. [package explorer]
Not on non-java projects, which looks wrong when multiple java- and non-java-projects are opened/closed.
resolved fixed
855600e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:31:04Z
2003-02-24T15:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java
/* * (c) Copyright IBM Corp. 2000, 2002. * All Rights Reserved. */ package org.eclipse.jdt.internal.ui.packageview; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Set; import org.eclipse.core.resources.IProject; impo...
32,656
Bug 32656 Open/Close project in package explorer looses selection on java-projects. [package explorer]
Not on non-java projects, which looks wrong when multiple java- and non-java-projects are opened/closed.
resolved fixed
855600e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:31:04Z
2003-02-24T15:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java
/******************************************************************************* * Copyright (c) 2000, 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanie...
32,656
Bug 32656 Open/Close project in package explorer looses selection on java-projects. [package explorer]
Not on non-java projects, which looks wrong when multiple java- and non-java-projects are opened/closed.
resolved fixed
855600e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:31:04Z
2003-02-24T15:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/PasteResourcesFromClipboardAction.java
package org.eclipse.jdt.internal.ui.reorg; import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.NullProgressMonitor; import org.eclipse.swt.dnd.Clipboard; import org.eclipse.swt.dnd.FileTransfer; import o...
32,656
Bug 32656 Open/Close project in package explorer looses selection on java-projects. [package explorer]
Not on non-java projects, which looks wrong when multiple java- and non-java-projects are opened/closed.
resolved fixed
855600e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:31:04Z
2003-02-24T15:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/ReorgDestinationAction.java
32,656
Bug 32656 Open/Close project in package explorer looses selection on java-projects. [package explorer]
Not on non-java projects, which looks wrong when multiple java- and non-java-projects are opened/closed.
resolved fixed
855600e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:31:04Z
2003-02-24T15:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenProjectAction.java
/******************************************************************************* * Copyright (c) 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanies this...
33,258
Bug 33258 Push Down needs busy cursor
Build 2.1 RC1 1. Select IAction.run 2. Refactor->Push Down ==> neither busy cursor nor progress is shown even though the system is frozen for more than 6 seconds (and I have one of the faster machines). Note: Same might be true for other refactoring with pre-checking.
resolved fixed
d05097c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:37:59Z
2003-02-26T14:33:20Z
org.eclipse.jdt.ui/ui
33,258
Bug 33258 Push Down needs busy cursor
Build 2.1 RC1 1. Select IAction.run 2. Refactor->Push Down ==> neither busy cursor nor progress is shown even though the system is frozen for more than 6 seconds (and I have one of the faster machines). Note: Same might be true for other refactoring with pre-checking.
resolved fixed
d05097c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:37:59Z
2003-02-26T14:33:20Z
refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/RefactoringStarter.java
32,969
Bug 32969 No QF for uncaught exception type in explicit super call to constructor
RC1 - Given a class CC with default constructor throwing an IOException - create new class C derived from CC - add a default constructor C() Observe: no QFs are proposed for the error: "Unhandled exception type IOException"
resolved fixed
0b5cff7
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:39:23Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java
package org.eclipse.jdt.ui.tests.quickfix; import java.util.ArrayList; import java.util.Hashtable; import junit.framework.Test; import junit.framework.TestSuite; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.IJavaProject; import org.e...
32,969
Bug 32969 No QF for uncaught exception type in explicit super call to constructor
RC1 - Given a class CC with default constructor throwing an IOException - create new class C derived from CC - add a default constructor C() Observe: no QFs are proposed for the error: "Unhandled exception type IOException"
resolved fixed
0b5cff7
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:39:23Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java
/******************************************************************************* * Copyright (c) 2000, 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanie...
33,683
Bug 33683 Quick fix doesn't work for null type
null
resolved fixed
2fdde07
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T17:59:24Z
2003-03-03T16:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java
/******************************************************************************* * Copyright (c) 2000, 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanie...
33,251
Bug 33251 Pull Up reports error even though there is none
Build 2.1 RC1 1. Add A.x() and B.x() 2. Start to Pull Up B.x() 3. On the second wizard page select to delete A.x(). 4. Press "Finish" ==> error warns about the fact that there will be a compile error. This is not true: 5. Press "Finish" again ==> everything is done as expected.
resolved fixed
b77daa5
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:08:45Z
2003-02-26T14:33:20Z
org.eclipse.jdt.ui.tests.refactoring/test
33,251
Bug 33251 Pull Up reports error even though there is none
Build 2.1 RC1 1. Add A.x() and B.x() 2. Start to Pull Up B.x() 3. On the second wizard page select to delete A.x(). 4. Press "Finish" ==> error warns about the fact that there will be a compile error. This is not true: 5. Press "Finish" again ==> everything is done as expected.
resolved fixed
b77daa5
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:08:45Z
2003-02-26T14:33:20Z
cases/org/eclipse/jdt/ui/tests/refactoring/PullUpTests.java
33,251
Bug 33251 Pull Up reports error even though there is none
Build 2.1 RC1 1. Add A.x() and B.x() 2. Start to Pull Up B.x() 3. On the second wizard page select to delete A.x(). 4. Press "Finish" ==> error warns about the fact that there will be a compile error. This is not true: 5. Press "Finish" again ==> everything is done as expected.
resolved fixed
b77daa5
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:08:45Z
2003-02-26T14:33:20Z
org.eclipse.jdt.ui/core
33,251
Bug 33251 Pull Up reports error even though there is none
Build 2.1 RC1 1. Add A.x() and B.x() 2. Start to Pull Up B.x() 3. On the second wizard page select to delete A.x(). 4. Press "Finish" ==> error warns about the fact that there will be a compile error. This is not true: 5. Press "Finish" again ==> everything is done as expected.
resolved fixed
b77daa5
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:08:45Z
2003-02-26T14:33:20Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/PullUpRefactoring.java
32,972
Bug 32972 Convert Local to Field: text input field doesn't have focus
RC1
resolved fixed
f2d2231
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:23:29Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui/ui
32,972
Bug 32972 Convert Local to Field: text input field doesn't have focus
RC1
resolved fixed
f2d2231
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:23:29Z
2003-02-25T16:20:00Z
refactoring/org/eclipse/jdt/internal/ui/refactoring/PromoteTempInputPage.java
32,966
Bug 32966 Use suprttype where possible: table should have focus
RC1 - JUnit setup - select TestCase - Refactor->User supertype... Observe: table doesn't have focus
resolved fixed
e32f47e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:27:53Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui/ui
32,966
Bug 32966 Use suprttype where possible: table should have focus
RC1 - JUnit setup - select TestCase - Refactor->User supertype... Observe: table doesn't have focus
resolved fixed
e32f47e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:27:53Z
2003-02-25T16:20:00Z
refactoring/org/eclipse/jdt/internal/ui/refactoring/UseSupertypeInputPage.java
32,101
Bug 32101 JavaCompletionProcessor: error message never shown
null
resolved fixed
fb20794
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T18:29:27Z
2003-02-18T12:06:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProcessor.java
package org.eclipse.jdt.internal.ui.text.java; /* * (c) Copyright IBM Corp. 2000, 2001. * All Rights Reserved. */ import java.io.IOException; import java.util.ArrayList; import java.util.Arrays; import java.util.Hashtable; import java.util.List; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.graph...
33,175
Bug 33175 Missing target in delete imports dialog
Problem Description: While browsing a class in the outline view, if the "delete" item from the context menu of the "import declarations" item is selected, the pop-up confirmation dialog asks 'Are you sure you want to delete ""?' (i.e 'import declarations' is missing between the quotes). Steps to Reproduce: 1. Open a Ja...
closed fixed
074eb40
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T19:07:18Z
2003-02-26T00:40:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/DeleteSourceReferencesAction.java
package org.eclipse.jdt.internal.ui.reorg; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import org.eclipse.core.resources.IFile; import or...
33,300
Bug 33300 Package Explorer->Refactor->Move does not allow non-Java projects as destination
Build id: 200302211557 Although you can see non-Java projects and resources on the Package Explorer view, when moving a resource (Refactor->Move), only Java projects are offered as options for destination. If I can use this option to move any resource (from the user perspective, it looks like the same move action - whe...
resolved fixed
3b7e759
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T19:38:39Z
2003-02-26T17:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/JdtMoveAction.java
package org.eclipse.jdt.internal.ui.reorg; import java.util.Iterator; import java.util.List; import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.s...
33,300
Bug 33300 Package Explorer->Refactor->Move does not allow non-Java projects as destination
Build id: 200302211557 Although you can see non-Java projects and resources on the Package Explorer view, when moving a resource (Refactor->Move), only Java projects are offered as options for destination. If I can use this option to move any resource (from the user perspective, it looks like the same move action - whe...
resolved fixed
3b7e759
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T19:38:39Z
2003-02-26T17:20:00Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/ReorgDestinationAction.java
32,654
Bug 32654 [Refactoring] Change method signature with problems
2.1 I20030214 I observed some problems when using the "Change method signature" refactoring. This seems to happen when the original method signature includes an array parameter. Problem: I introduced a new method parameter of type boolean with default value set to true. Previewing the changes, I had to realize that the...
resolved fixed
7a7a396
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T23:03:13Z
2003-02-24T15:20:00Z
org.eclipse.jdt.ui/core
32,654
Bug 32654 [Refactoring] Change method signature with problems
2.1 I20030214 I observed some problems when using the "Change method signature" refactoring. This seems to happen when the original method signature includes an array parameter. Problem: I introduced a new method parameter of type boolean with default value set to true. Previewing the changes, I had to realize that the...
resolved fixed
7a7a396
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T23:03:13Z
2003-02-24T15:20:00Z
extension/org/eclipse/jdt/internal/corext/dom/ASTRewriteAnalyzer.java
32,917
Bug 32917 the "Change to Constructor" QF deletes my code.
RC1: - create class C - create method "int C()" int C() { return 19*19; } - use QF to "Change method to constructor" Observe: return statement is removed - add "if (true) return 123;" as the first line of method C() - use QF again Observe: no return statement is removed.
resolved fixed
82fbcff
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T23:09:39Z
2003-02-25T10:46:40Z
org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ReturnTypeQuickFixTest.java
package org.eclipse.jdt.ui.tests.quickfix; import java.util.ArrayList; import java.util.Hashtable; import junit.framework.Test; import junit.framework.TestSuite; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.IJavaProject; import org.e...
32,917
Bug 32917 the "Change to Constructor" QF deletes my code.
RC1: - create class C - create method "int C()" int C() { return 19*19; } - use QF to "Change method to constructor" Observe: return statement is removed - add "if (true) return 123;" as the first line of method C() - use QF again Observe: no return statement is removed.
resolved fixed
82fbcff
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T23:09:39Z
2003-02-25T10:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReturnTypeSubProcessor.java
package org.eclipse.jdt.internal.ui.text.correction; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.eclipse.core.runtime.CoreException; import org.eclipse.swt.graphics.Image; import org.eclipse.jdt.core.ICompilationUnit; import org.eclipse.jdt.core.dom.AST; import org.eclip...
32,953
Bug 32953 wording of "remove" QF
RC1 - enable warnings for unused methods - add a (unused) private method xxx to a class - open QF Observe: the only quickfix listed is a very brief "remove". Since "remove" is a potentially dangerous operation, it would be good to explicitely state what gets removed, like "remove unused method" or even better "remove u...
resolved fixed
daf62e0
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-03T23:30:14Z
2003-02-25T13:33:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java
/******************************************************************************* * Copyright (c) 2000, 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanie...
33,230
Bug 33230 Convert local to field not always using code generation templates
Build 2.1 RC1 Select to initialize the field in the constructor ==> the code generation templates (comment and body) are not used.
resolved fixed
199d71c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T09:51:51Z
2003-02-26T11:46:40Z
org.eclipse.jdt.ui.tests.refactoring/resources/PromoteTempToField/canPromote/A_test4_out.java
package p; //initialize in constructors class A{ private int i; A() { i= 0; } void f(){ i++; } }
33,230
Bug 33230 Convert local to field not always using code generation templates
Build 2.1 RC1 Select to initialize the field in the constructor ==> the code generation templates (comment and body) are not used.
resolved fixed
199d71c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T09:51:51Z
2003-02-26T11:46:40Z
org.eclipse.jdt.ui.tests.refactoring/test
33,230
Bug 33230 Convert local to field not always using code generation templates
Build 2.1 RC1 Select to initialize the field in the constructor ==> the code generation templates (comment and body) are not used.
resolved fixed
199d71c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T09:51:51Z
2003-02-26T11:46:40Z
cases/org/eclipse/jdt/ui/tests/refactoring/PromoteTempToFieldTests.java
33,230
Bug 33230 Convert local to field not always using code generation templates
Build 2.1 RC1 Select to initialize the field in the constructor ==> the code generation templates (comment and body) are not used.
resolved fixed
199d71c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T09:51:51Z
2003-02-26T11:46:40Z
org.eclipse.jdt.ui/core
33,230
Bug 33230 Convert local to field not always using code generation templates
Build 2.1 RC1 Select to initialize the field in the constructor ==> the code generation templates (comment and body) are not used.
resolved fixed
199d71c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T09:51:51Z
2003-02-26T11:46:40Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/code/PromoteTempToFieldRefactoring.java
33,230
Bug 33230 Convert local to field not always using code generation templates
Build 2.1 RC1 Select to initialize the field in the constructor ==> the code generation templates (comment and body) are not used.
resolved fixed
199d71c
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T09:51:51Z
2003-02-26T11:46:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ConvertLocalToFieldAction.java
/******************************************************************************* * Copyright (c) 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanies this...
33,027
Bug 33027 Externalize Strings does not use code template for constructor
Build 2.1 RC1 Externalize some strings and choose to generate the Messages class. Observe: the file and type comment templates are used but not the one for the constructor.
resolved fixed
802f1a5
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:15:35Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui/core
33,027
Bug 33027 Externalize Strings does not use code template for constructor
Build 2.1 RC1 Externalize some strings and choose to generate the Messages class. Observe: the file and type comment templates are used but not the one for the constructor.
resolved fixed
802f1a5
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:15:35Z
2003-02-25T16:20:00Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/nls/NLSRefactoring.java
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_0/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_1/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } void f(){ } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_10/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_11/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ new Inner(this.a); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_12/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ this.a.foo(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_13/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ this.a.i= 1; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_14/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } void f(){ A.X x= this.a.new X(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_15/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ A.foo(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_16/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ A.i= 1; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_17/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } void f(){ A.X x= new A.X(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_2/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } void f(){ } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_22/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_23/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_26/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ A.foo(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_27/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } void f(){ A.foo(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_28/out/Inner.java
package p; public class Inner extends A.OtherInner { private A a; Inner(A a) { this.a = a; }}
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_3/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_30/out/Inner.java
package p; class Inner{ private final A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_31/out/Inner.java
package p; class Inner{ private final A a; Inner(A a) { this.a= a; } void f(){ this.a.m(); } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_32/out/Inner.java
package p; class Inner{ private final A a; Inner(A a) { this.a= a; } void f(){ this.a.m= 1; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_33/out/I.java
package p; class I{ private final A a; I(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_35/in/A.java
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_35/out/A.java
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_35/out/Inner.java
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_4/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_5/out/Inner.java
package p; class Inner{ private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_7/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_8/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_9/out/Inner.java
package p; class Inner { private A a; Inner(A a) { this.a= a; } }
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui.tests.refactoring/test
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
cases/org/eclipse/jdt/ui/tests/refactoring/MoveInnerToTopLevelTests.java
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
org.eclipse.jdt.ui/core
33,015
Bug 33015 Convert to toplevel type does not use code templates
Buid 2.1 RC1 The file template is used but not the type and constructor template: /* * Dani - Kreated on 25.02.2003 * * To change this generated comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ package danisaddons.preferences; class T { T(T) { } private final PreferencePage preferencePage; T...
resolved fixed
bce534a
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:49:47Z
2003-02-25T16:20:00Z
refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java
33,187
Bug 33187 Eclipse stops working at seemingly random times...
Whenever I am using the Linux-GTK version of Eclipse, eventually, eclipse will stop opening files. It will simply never bring up the editor when I double- click on files. I have previously opened them, and I have never had this problem in the Windows version. There does not seem to be any triggering event that I could ...
resolved fixed
38e7f32
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:58:26Z
2003-02-26T03:26:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaMarkerAnnotation.java
/********************************************************************** Copyright (c) 2000, 2003 IBM Corp. and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www...
33,187
Bug 33187 Eclipse stops working at seemingly random times...
Whenever I am using the Linux-GTK version of Eclipse, eventually, eclipse will stop opening files. It will simply never bring up the editor when I double- click on files. I have previously opened them, and I have never had this problem in the Windows version. There does not seem to be any triggering event that I could ...
resolved fixed
38e7f32
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T10:58:26Z
2003-02-26T03:26:40Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaAnnotationHover.java
/********************************************************************** Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www...
33,163
Bug 33163 Search again menu option fails to find new occurrences
R2.1 RC1 From the java editor popup menu "Search -> Occurrences in file" on an item that will generate one or more matches. Note the number of matches. Now insert another instance of the item you searched for and press save to recompile the class. RMB in the search view and "Search again" It won't find the new occurren...
resolved fixed
3c9d20f
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T11:02:30Z
2003-02-25T21:53:20Z
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindOccurrencesEngine.java
/******************************************************************************* * Copyright (c) 2000, 2003 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials are made * available under the terms of the Common Public License v1.0 which accompanies * ...
33,458
Bug 33458 StringIndexOutOfBoundsException from Junit HierarchyRunView
20030227 I am attempting to run my PDE JUnit tests for Debug and Ant Core. All produce similar stack traces to the following: java.lang.StringIndexOutOfBoundsException: String index out of range: -57 at java.lang.String.substring(String.java:1480) at org.eclipse.jdt.internal.junit.ui.HierarchyRunView.newTreeEntry (Hier...
resolved fixed
cf6929e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T11:59:24Z
2003-02-27T18:20:00Z
org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/runner/MessageIds.java
/* * (c) Copyright IBM Corp. 2000, 2001. * All Rights Reserved. */ package org.eclipse.jdt.internal.junit.runner; /** * Message identifiers for messages sent by the * RemoteTestRunner. * * @see RemoteTestRunner */ public class MessageIds { /** * The header length of a message, all messages * have a fix...
33,458
Bug 33458 StringIndexOutOfBoundsException from Junit HierarchyRunView
20030227 I am attempting to run my PDE JUnit tests for Debug and Ant Core. All produce similar stack traces to the following: java.lang.StringIndexOutOfBoundsException: String index out of range: -57 at java.lang.String.substring(String.java:1480) at org.eclipse.jdt.internal.junit.ui.HierarchyRunView.newTreeEntry (Hier...
resolved fixed
cf6929e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T11:59:24Z
2003-02-27T18:20:00Z
org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java
/* * (c) Copyright IBM Corp. 2000, 2001. * All Rights Reserved. */ package org.eclipse.jdt.internal.junit.runner; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.io.StringWriter; impo...
33,458
Bug 33458 StringIndexOutOfBoundsException from Junit HierarchyRunView
20030227 I am attempting to run my PDE JUnit tests for Debug and Ant Core. All produce similar stack traces to the following: java.lang.StringIndexOutOfBoundsException: String index out of range: -57 at java.lang.String.substring(String.java:1480) at org.eclipse.jdt.internal.junit.ui.HierarchyRunView.newTreeEntry (Hier...
resolved fixed
cf6929e
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T11:59:24Z
2003-02-27T18:20:00Z
org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/RemoteTestRunnerClient.java
/******************************************************************************* * Copyright (c) 2000, 2002 International Business Machines Corp. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v0.5 * which accompanie...
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test1/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test10/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test11/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test12/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test13/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test14/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test15/out/I.java
package p; /** typecomment template*/ interface I { void m(); void m1(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test16/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test17/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test18/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test19/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test2/out/I.java
package p; import java.util.List; /** typecomment template*/ interface I { List m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test20/out/I.java
package p; /** typecomment template*/ interface I { void m(); void m1(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test21/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test22/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test23/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test24/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test25/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test26/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test27/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test28/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test29/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test3/out/I.java
package p; /** typecomment template*/ interface I { void m(); }
32,626
Bug 32626 [refactor] extract interface causing exception
Got the following exception extracting an interface using RC1: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:307) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:246) at org.eclipse.jdt.internal.ui.refactoring.RefactoringW...
resolved fixed
ac677f6
JDT
https://github.com/eclipse-jdt/eclipse.jdt.ui
eclipse-jdt/eclipse.jdt.ui
java
null
null
null
2003-03-04T12:28:06Z
2003-02-24T12:33:20Z
org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test30/out/I.java
package p; /** typecomment template*/ interface I { void m(); }