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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
79,690 | Bug 79690 Find declaring node doesn't work for type variables | public class A_test1105 { public <E> void foo(E param) { /*[*/E local= param; foo(local);/*]*/ } } - calling CompllationUnit#findDeclaringNode with the type binding representing E doesn't return the node <E> (e.g. the one in the method declaration) | verified fixed | d78349f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:28:56Z | 2004-11-29T17:40:00Z | org.eclipse.jdt.ui/core | |
79,690 | Bug 79690 Find declaring node doesn't work for type variables | public class A_test1105 { public <E> void foo(E param) { /*[*/E local= param; foo(local);/*]*/ } } - calling CompllationUnit#findDeclaringNode with the type binding representing E doesn't return the node <E> (e.g. the one in the method declaration) | verified fixed | d78349f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:28:56Z | 2004-11-29T17:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java | |
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/enums_in/A_test1150.java | /*
* Created on Nov 26, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package enums_in;
/**
* @author dbaeumer
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation... |
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/enums_in/A_test1151.java | /*
* Created on Nov 26, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package enums_in;
/**
* @author dbaeumer
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation... |
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/enums_in/A_test1152.java | /*
* Created on Nov 26, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package enums_in;
/**
* @author dbaeumer
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation... |
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/enums_out/A_test1150.java | package enums_out;
/**
* @author dbaeumer
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public enum A_test1150 {
A;
public void foo() {
extracted();
}
protected void extracted() {
/*[*/foo();/*]*/
}
}
|
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/enums_out/A_test1151.java | package enums_out;
/**
* @author dbaeumer
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public enum A_test1151 {
A;
static {
extracted();
}
protected static void extracted() {
/*[*/foo();/*]*/
}
private static... |
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/enums_out/A_test1152.java | package enums_out;
/**
* @author dbaeumer
*
* To change the template for this generated type comment go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
public enum A_test1152 {
A {
public void foo() {
extracted();
}
protected void extracted() {
/*[*/foo();/*]*/
}
};
}
|
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/validSelection_out/A_test363.java | package validSelection_out;
public class A_test363 {
public Object foo() {
return extracted();
}
protected Class extracted() {
return /*[*/A_test363.class/*]*/;
}
}
|
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | org.eclipse.jdt.ui.tests.refactoring/test | |
79,752 | Bug 79752 Need access to type binding of anonymous enumerations | enum XXX { A { void foo() {}}; } - currently there is now API to access the typ[e binding of the anonymous enum created by { void foo() {}} To make anonymous enums more consistent with AnonymousClassDeclaration the EnumConstantDeclaration should have a subnode AnonymousEnumDeclaration. The AnonymousEnumDeclaration woul... | verified fixed | 7e9df84 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-13T18:42:00Z | 2004-11-30T07:33:20Z | cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java | |
80,839 | Bug 80839 [dom] Need API to control extended source range computation | I20041208 I have started to get rid of the OldASTrewrite however the old version gave me some control over the extended source range used when replacing/deleting nodes. Some refactorings (extract method, surround with try catch) are selection based and the refactoring should honor the selection. For example if a user s... | verified fixed | a813120 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T08:50:35Z | 2004-12-13T17:46:40Z | org.eclipse.jdt.ui/core | |
80,839 | Bug 80839 [dom] Need API to control extended source range computation | I20041208 I have started to get rid of the OldASTrewrite however the old version gave me some control over the extended source range used when replacing/deleting nodes. Some refactorings (extract method, surround with try catch) are selection based and the refactoring should honor the selection. For example if a user s... | verified fixed | a813120 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T08:50:35Z | 2004-12-13T17:46:40Z | extension/org/eclipse/jdt/internal/corext/dom/ReplaceRewrite.java | |
80,891 | Bug 80891 Move Member Type fails with anonymous inner class | I have an abstract class (which I will attach) with a static member that is defined with an anonymous class of the same type as the enclosing class. Attempting to Refactor->Move Member Type to New File results in an error, null argument. Here is the relevant snippet. I'm trying to extract the class assigned to LastDay ... | resolved fixed | b44cd17 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T14:01:00Z | 2004-12-13T23:20:00Z | org.eclipse.jdt.ui/core | |
80,891 | Bug 80891 Move Member Type fails with anonymous inner class | I have an abstract class (which I will attach) with a static member that is defined with an anonymous class of the same type as the enclosing class. Attempting to Refactor->Move Member Type to New File results in an error, null argument. Here is the relevant snippet. I'm trying to extract the class assigned to LastDay ... | resolved fixed | b44cd17 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T14:01:00Z | 2004-12-13T23:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java | |
80,891 | Bug 80891 Move Member Type fails with anonymous inner class | I have an abstract class (which I will attach) with a static member that is defined with an anonymous class of the same type as the enclosing class. Attempting to Refactor->Move Member Type to New File results in an error, null argument. Here is the relevant snippet. I'm trying to extract the class assigned to LastDay ... | resolved fixed | b44cd17 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T14:01:00Z | 2004-12-13T23:20:00Z | org.eclipse.jdt.ui/core | |
80,891 | Bug 80891 Move Member Type fails with anonymous inner class | I have an abstract class (which I will attach) with a static member that is defined with an anonymous class of the same type as the enclosing class. Attempting to Refactor->Move Member Type to New File results in an error, null argument. Here is the relevant snippet. I'm trying to extract the class assigned to LastDay ... | resolved fixed | b44cd17 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T14:01:00Z | 2004-12-13T23:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MemberVisibilityAdjustor.java | |
80,891 | Bug 80891 Move Member Type fails with anonymous inner class | I have an abstract class (which I will attach) with a static member that is defined with an anonymous class of the same type as the enclosing class. Attempting to Refactor->Move Member Type to New File results in an error, null argument. Here is the relevant snippet. I'm trying to extract the class assigned to LastDay ... | resolved fixed | b44cd17 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T14:01:00Z | 2004-12-13T23:20:00Z | org.eclipse.jdt.ui/core | |
80,891 | Bug 80891 Move Member Type fails with anonymous inner class | I have an abstract class (which I will attach) with a static member that is defined with an anonymous class of the same type as the enclosing class. Attempting to Refactor->Move Member Type to New File results in an error, null argument. Here is the relevant snippet. I'm trying to extract the class assigned to LastDay ... | resolved fixed | b44cd17 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T14:01:00Z | 2004-12-13T23:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
80,952 | Bug 80952 NPE in ChangeParametersControl.installParameterTypeContentAssist | I20041214-0800 + ZRH plug-in export Steps: smoke test, extract method test (in AboutDialog.java) --- eclipse.buildId=I20041214-0800 java.version=1.5.0 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 -clean -consolelog !ENTR... | resolved fixed | 6314b8e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T17:49:35Z | 2004-12-14T16:00:00Z | org.eclipse.jdt.ui/ui | |
80,952 | Bug 80952 NPE in ChangeParametersControl.installParameterTypeContentAssist | I20041214-0800 + ZRH plug-in export Steps: smoke test, extract method test (in AboutDialog.java) --- eclipse.buildId=I20041214-0800 java.version=1.5.0 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US Command-line arguments: -os linux -ws gtk -arch x86 -clean -consolelog !ENTR... | resolved fixed | 6314b8e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-14T17:49:35Z | 2004-12-14T16:00:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeParametersControl.java | |
81,161 | Bug 81161 [nls tooling] Hyperlink navigation from ClassFile to .properties finds no key | I200412142000 - import o.e.ui.workbench.texteditor and dependencies as linked projects - open ContentAssistHandler - navigate from one of the two getString(...)s with Ctrl-Click to the properties file -> PropertiesFileEditor opens, but keys are not found | verified fixed | 2b16141 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-15T19:22:25Z | 2004-12-15T14:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/NLSKeyHyperlink.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
80,912 | Bug 80912 JUnit tests can't be launched with a 1.3 level jvm anymore | In latest 3.1 integration builds the eclipse textrunner doesn't work if you select a 1.3 level jvm for running the test. It crashes for a dependency from IdentityHashMap (java 1.4). Although eclipse need a 1.4 jre, selecting a 1.3 jre from the run/debug configuration should be possible: this is a show stopper for anyon... | verified fixed | 43616bf | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T08:22:17Z | 2004-12-14T10:26:40Z | org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/CustomHashtable.java | |
80,912 | Bug 80912 JUnit tests can't be launched with a 1.3 level jvm anymore | In latest 3.1 integration builds the eclipse textrunner doesn't work if you select a 1.3 level jvm for running the test. It crashes for a dependency from IdentityHashMap (java 1.4). Although eclipse need a 1.4 jre, selecting a 1.3 jre from the run/debug configuration should be possible: this is a show stopper for anyon... | verified fixed | 43616bf | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T08:22:17Z | 2004-12-14T10:26:40Z | org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/IElementComparer.java | |
80,912 | Bug 80912 JUnit tests can't be launched with a 1.3 level jvm anymore | In latest 3.1 integration builds the eclipse textrunner doesn't work if you select a 1.3 level jvm for running the test. It crashes for a dependency from IdentityHashMap (java 1.4). Although eclipse need a 1.4 jre, selecting a 1.3 jre from the run/debug configuration should be possible: this is a show stopper for anyon... | verified fixed | 43616bf | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T08:22:17Z | 2004-12-14T10:26:40Z | org.eclipse.jdt.junit.runtime/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
80,673 | Bug 80673 Package explorer using working sets does not display source folders correctly on project creation | Using I200412081200 Do the following steps: - Open new java project wizard and enter a name - set the location to the workpace and use the project folder as root - click next - click on "Add folder" and enter a name - on the following dialog, click "no" - click finish We just created a source folder, but the icon displ... | verified fixed | 1b86745 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T08:34:28Z | 2004-12-10T09:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/OthersWorkingSetUpdater.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,070 | Bug 81070 ElementMapper should not use Integer keys computed from System#identityHashCode | null | verified fixed | bfe6bf2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T08:35:48Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetModel.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,195 | Bug 81195 [spell checking][nls toolsing] Add Quick Fix menu for Properties File editor | 3.1 M4 Candidate I've enabled spell checking and created a .properties file. If my values have spelling mistakes they are underlined, but I can't find a way to see the suggested words. If there quick fix in the properties editors? | verified fixed | dbd2a21 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T09:48:31Z | 2004-12-15T17:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/propertiesfileeditor/PropertiesFileEditorActionContributor.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,329 | Bug 81329 Disable sort member action for enums | Tobias, can you please disable the sort member action for enums. JDT/Core can't fix the problem. | verified fixed | a89b9d0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T09:52:43Z | 2004-12-15T22:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SortMembersAction.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,372 | Bug 81372 Package Explorer working set mode can't be restored anymore | M4 test pass - create project - go into this project - press go up to show all projects again - switch to working set mode - close Eclipe - restart observe: Package explorer comes up in project mode again. Even if you switch to working set mode again the package explorer will be in project mode on every restart. Proble... | verified fixed | ebe5459 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T09:53:54Z | 2004-12-16T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,372 | Bug 81372 Package Explorer working set mode can't be restored anymore | M4 test pass - create project - go into this project - press go up to show all projects again - switch to working set mode - close Eclipe - restart observe: Package explorer comes up in project mode again. Even if you switch to working set mode again the package explorer will be in project mode on every restart. Proble... | verified fixed | ebe5459 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T09:53:54Z | 2004-12-16T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,082 | Bug 81082 NPE when testing switch to 5.0 quick fix [quick fix] [5.0] | I20041214-2000 I was testing the new quick fix which changes the compliance: added <T> as return type of Logo.paint(Graphics). I pressed the "Run in Background" button on the upcoming dialog. and continued working. When I now try to change the workspace compliance again I always get the NPE. java.lang.NullPointerExcept... | verified fixed | fd4d8da | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:10:46Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReorgCorrectionsSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,078 | Bug 81078 [preferences] Restore Defaults duplicates list entries | I200412142000 Restore Defaults on Java > Editor > Appearance duplicates the "Appearance color options" entries. | verified fixed | 57ae10a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:32:25Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/AbstractConfigurationBlock.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,078 | Bug 81078 [preferences] Restore Defaults duplicates list entries | I200412142000 Restore Defaults on Java > Editor > Appearance duplicates the "Appearance color options" entries. | verified fixed | 57ae10a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:32:25Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeAssistConfigurationBlock.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,078 | Bug 81078 [preferences] Restore Defaults duplicates list entries | I200412142000 Restore Defaults on Java > Editor > Appearance duplicates the "Appearance color options" entries. | verified fixed | 57ae10a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:32:25Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorAppearanceConfigurationBlock.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,078 | Bug 81078 [preferences] Restore Defaults duplicates list entries | I200412142000 Restore Defaults on Java > Editor > Appearance duplicates the "Appearance color options" entries. | verified fixed | 57ae10a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:32:25Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,078 | Bug 81078 [preferences] Restore Defaults duplicates list entries | I200412142000 Restore Defaults on Java > Editor > Appearance duplicates the "Appearance color options" entries. | verified fixed | 57ae10a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:32:25Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/LinkedModeConfigurationBlock.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,131 | Bug 81131 IllegalArgumentException in SimpleName.setIdentifier when moving vararg method | M4 test pass (I20041214-2000-gtk) 1. have the type below 2. move 'method' to 'Inner' -> get the exception below --------- Test.java -------- package com.example.m4testing; public class Test { static class Inner { private Object fObject; public boolean check() { return true; } public Object get() { return fObject; } pub... | verified fixed | 0f7bdfd | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:43:22Z | 2004-12-15T14:13:20Z | org.eclipse.jdt.ui/core | |
81,131 | Bug 81131 IllegalArgumentException in SimpleName.setIdentifier when moving vararg method | M4 test pass (I20041214-2000-gtk) 1. have the type below 2. move 'method' to 'Inner' -> get the exception below --------- Test.java -------- package com.example.m4testing; public class Test { static class Inner { private Object fObject; public boolean check() { return true; } public Object get() { return fObject; } pub... | verified fixed | 0f7bdfd | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-16T10:43:22Z | 2004-12-15T14:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInstanceMethodProcessor.java | |
60,297 | Bug 60297 [navigation] Find Occurrences: declaration of method parameter is write-access | Find Occurrences: declaration of method parameter is write-access (methods, constructors, anonymous class creation expr, ...). Currently, those are flagged as read-access. | resolved fixed | 324e525 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-17T13:56:18Z | 2004-04-28T19:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesFinder.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
75,806 | Bug 75806 [templates] Should be able to look up Templates by ID | Templates added to Eclipse using the extension point org.eclipse.ui.editors. templates have an ID and a name. In a template preference page that is the subclass of org.eclipse.ui.texteditor.templates.TemplatePreferencePage the name of the template is shown to the user, the ID is not. Therefore I would like to internati... | resolved fixed | b0b3c39 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-17T15:13:08Z | 2004-10-07T14:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProjectTemplateStore.java | |
67,327 | Bug 67327 [content assist] Method Parameter code assist is not working | Method parameter code assist is not working when method parameters wrapped to more then one line. Ff I format the same code to one line, the code assist works. | resolved fixed | 8f49313 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-20T14:27:48Z | 2004-06-15T17:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaParameterListValidator.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | org.eclipse.jdt.text.tests/src/org/eclipse/jdt/text/tests/formatter/comment/JavaDocTestCase.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | org.eclipse.jdt.ui/core | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | extension/org/eclipse/jdt/internal/corext/text/comment/CommentRange.java | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | org.eclipse.jdt.ui/core | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | extension/org/eclipse/jdt/internal/corext/text/comment/ICommentAttributes.java | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | org.eclipse.jdt.ui/core | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | extension/org/eclipse/jdt/internal/corext/text/comment/MultiCommentLine.java | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | org.eclipse.jdt.ui/core | |
49,686 | Bug 49686 [formatting] Javadoc Formatter mishandles spaces in comments | null | resolved fixed | 8e539d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T09:53:28Z | 2004-01-08T13:53:20Z | extension/org/eclipse/jdt/internal/corext/text/comment/MultiCommentRegion.java | |
81,740 | Bug 81740 Package explorer not correctly updated when deleting more than one project | M4 - create two projects X and XX - switch to workingset mode - put both into a working set - select both and delete them observe: one project is still rendered as a closed project. | resolved fixed | a56eeeb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T16:56:21Z | 2004-12-21T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetUpdater.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,505 | Bug 81505 Search Again throws NPE if a search query cannot be rerun | I200412162000 - new workspace, new Java Propject with CU p/A.java: package p; public class A {} - Find identifier occurrences for A - activate the search result view and don't open the context menu - press F5 -> the problem seems to be that the query is rerun although it answers false to canRerun() Error 2004-12-17 12:... | resolved fixed | b93c3da | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-21T17:39:06Z | 2004-12-17T10:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesSearchQuery.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,733 | Bug 81733 RefactoringWizardDialog - ErrorPage - action buttons "Next Problem", "Previous Problem" do not work correctly | If a refactoring (checkFinalConditions method) finishes with a refactoring status, that has several entries with different severities, the following situation can happen: Action buttons "Next Problem", "Previous Problem" do not work correctly. (For example the button "Previous" does nothing.) Explanation: There is a bu... | resolved fixed | 2a044e5 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-22T10:03:29Z | 2004-12-21T14:40:00Z | org.eclipse.ltk.ui.refactoring/src/org/eclipse/ltk/internal/ui/refactoring/RefactoringStatusViewer.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
35,866 | Bug 35866 Refactoring doesn't handle resource changes [refactoring] | When you want to refactor and it affect some resources but those resources are read-only. You get a pop up saying they are read-only. when you then change those resources to writable outside of eclipse and click back on the pop-up and try to redo the refactoring you get an unhandled exception: Java Model Exception: Cor... | resolved fixed | c465be9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-22T10:34:34Z | 2003-03-31T14:13:20Z | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/core/refactoring/TextFileChange.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
35,866 | Bug 35866 Refactoring doesn't handle resource changes [refactoring] | When you want to refactor and it affect some resources but those resources are read-only. You get a pop up saying they are read-only. when you then change those resources to writable outside of eclipse and click back on the pop-up and try to redo the refactoring you get an unhandled exception: Java Model Exception: Cor... | resolved fixed | c465be9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-22T10:34:34Z | 2003-03-31T14:13:20Z | org.eclipse.ltk.core.refactoring/src/org/eclipse/ltk/internal/core/refactoring/Changes.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
36,365 | Bug 36365 Surround w/ try/catch generates unique identifier for exception when it is not needed [refactoring] | null | resolved fixed | 64df757 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-22T10:58:22Z | 2003-04-10T18:40:00Z | org.eclipse.jdt.ui/core | |
36,365 | Bug 36365 Surround w/ try/catch generates unique identifier for exception when it is not needed [refactoring] | null | resolved fixed | 64df757 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-22T10:58:22Z | 2003-04-10T18:40:00Z | extension/org/eclipse/jdt/internal/corext/dom/CodeScopeBuilder.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_in/A_test575.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_in/A_test576.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_out/A_test575.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/locals_out/A_test576.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/ExtractMethodTests.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui/core | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui/core | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | org.eclipse.jdt.ui/core | |
42,777 | Bug 42777 Extract method refactoring remove local variable definition resulting in compilation errors [refactoring] | I'll attach a before after pictures. yvind | resolved fixed | 844425c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T10:39:49Z | 2003-09-09T12:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/InputFlowAnalyzer.java | |
44,150 | Bug 44150 No Drag and Drop of .class files from Package Explorer | I am working on a GEF application that supports drag and drop of Java classes from the Package Explorer. With source code (.java files) this works fine, but when I try to drag a compiled class (.class from a JAR withtin a project) it seems that the drag doesn't even get initiated. It is possibly, however, to open .clas... | resolved fixed | bd41b1c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T11:03:33Z | 2003-10-03T19:40:00Z | org.eclipse.jdt.ui/core | |
44,150 | Bug 44150 No Drag and Drop of .class files from Package Explorer | I am working on a GEF application that supports drag and drop of Java classes from the Package Explorer. With source code (.java files) this works fine, but when I try to drag a compiled class (.class from a JAR withtin a project) it seems that the drag doesn't even get initiated. It is possibly, however, to open .clas... | resolved fixed | bd41b1c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T11:03:33Z | 2003-10-03T19:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgPolicyFactory.java | |
44,150 | Bug 44150 No Drag and Drop of .class files from Package Explorer | I am working on a GEF application that supports drag and drop of Java classes from the Package Explorer. With source code (.java files) this works fine, but when I try to drag a compiled class (.class from a JAR withtin a project) it seems that the drag doesn't even get initiated. It is possibly, however, to open .clas... | resolved fixed | bd41b1c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T11:03:33Z | 2003-10-03T19:40:00Z | org.eclipse.jdt.ui/core | |
44,150 | Bug 44150 No Drag and Drop of .class files from Package Explorer | I am working on a GEF application that supports drag and drop of Java classes from the Package Explorer. With source code (.java files) this works fine, but when I try to drag a compiled class (.class from a JAR withtin a project) it seems that the drag doesn't even get initiated. It is possibly, however, to open .clas... | resolved fixed | bd41b1c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T11:03:33Z | 2003-10-03T19:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgUtils.java | |
44,150 | Bug 44150 No Drag and Drop of .class files from Package Explorer | I am working on a GEF application that supports drag and drop of Java classes from the Package Explorer. With source code (.java files) this works fine, but when I try to drag a compiled class (.class from a JAR withtin a project) it seems that the drag doesn't even get initiated. It is possibly, however, to open .clas... | resolved fixed | bd41b1c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T11:03:33Z | 2003-10-03T19:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/SelectionTransferDragAdapter.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
53,641 | Bug 53641 [implementation] IllegalArgumentException: Argument not valid | i20040303 Selected a type in the "Open Type" dialog, and pressed ok. The type was not opened in an editor. Got an error dialog. Title is "Error Executing Command", message is "The command for the key you pressed failed", reason is "Argument not valid". After that, the editor did not redraw anymore, keeping the contents... | verified fixed | 25e5d22 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T12:14:58Z | 2004-03-03T16:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaSourceViewer.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
45,496 | Bug 45496 Global Search Dialog needs Persistent History Lists | Global Search Dialog should keep persistent history lists. At the moment all settings are lost after worckbench shutdown. I would recommend to limit the number of entries saved to 10. | resolved fixed | 70f9cd9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T13:17:45Z | 2003-10-24T12:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
71,287 | Bug 71287 Reuse editor preference has no effect in tree mode | options -> Reuse editors to show matches in workbench -> search - has no effect | resolved fixed | 6176aeb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T15:29:20Z | 2004-08-03T13:33:20Z | org.eclipse.jdt.ui/ui | |
71,287 | Bug 71287 Reuse editor preference has no effect in tree mode | options -> Reuse editors to show matches in workbench -> search - has no effect | resolved fixed | 6176aeb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T15:29:20Z | 2004-08-03T13:33:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchResultPage.java | |
71,287 | Bug 71287 Reuse editor preference has no effect in tree mode | options -> Reuse editors to show matches in workbench -> search - has no effect | resolved fixed | 6176aeb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T15:29:20Z | 2004-08-03T13:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchEditorOpener.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
71,287 | Bug 71287 Reuse editor preference has no effect in tree mode | options -> Reuse editors to show matches in workbench -> search - has no effect | resolved fixed | 6176aeb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-23T15:29:20Z | 2004-08-03T13:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultPage.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/invalid/TestInterruptedExecutionFlow.java | |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/InlineMethodTests.java | |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | org.eclipse.jdt.ui/core | |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java | |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | org.eclipse.jdt.ui/core | |
45,081 | Bug 45081 Method inlining yields compile errors on method bodies with try/catch [refactoring] | 3.0 M4: When using the "Inline" refactoring on a method with body like the following: int alignOffset(int offset) { try { return document.getLineInformationOfOffset(offset).getOffset(); } catch (BadLocationException exception) { return offset; }; } the body is directly assigned to the target variable at the call site w... | resolved fixed | 482f5f3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2004-12-30T23:50:39Z | 2003-10-17T11:26:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/SourceProvider.java | |
81,612 | Bug 81612 Invalid thread access while refactoring | 3.1M4 running Java5, compliance set to 1.4/default Having package foo.bar; public interface IConstant { String FOO = "Foo"; } package foo.bar; public class AClass { } package foo.bar; public class BClass { public static final String FOO = "Foo"; } Moving "FOO" from the Interface to A fails with an invalid thread accesa... | verified fixed | 0e4b91e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T10:42:06Z | 2004-12-19T18:13:20Z | org.eclipse.jdt.ui/core | |
81,612 | Bug 81612 Invalid thread access while refactoring | 3.1M4 running Java5, compliance set to 1.4/default Having package foo.bar; public interface IConstant { String FOO = "Foo"; } package foo.bar; public class AClass { } package foo.bar; public class BClass { public static final String FOO = "Foo"; } Moving "FOO" from the Interface to A fails with an invalid thread accesa... | verified fixed | 0e4b91e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T10:42:06Z | 2004-12-19T18:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveStaticMembersProcessor.java | |
82,041 | Bug 82041 [misc] ClassFileEditor uses generic names for method arguments when source info is available in class file | Version: 3.1.0 Build id: 200412210800 When you open a class file that has no source attachment but has full debugging information the editor does not show the real names of method arguments. 1. Open a class file editor on a class file that does not have a source attachment but has local variable debugging info. 2. Noti... | resolved fixed | 2d269e3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T11:38:05Z | 2004-12-31T08:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
82,083 | Bug 82083 Configure Workspace Settings... for Code Formatter jumps to Code Style | I20041221-0800 On a java project without project-specific Code Formatter settings, open the "Code Formatter" properties page and press "Configure Workspace Settings..." The "Code Style" preferences page is opened (expected: guess what ;-). | resolved fixed | 5376dcb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T13:40:32Z | 2005-01-03T11:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeFormatterPreferencePage.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,625 | Bug 81625 [hovering] Combined Hover does not work in ja_JP locale with NLPack | A combined hover does not work correctly in JavaEditor with NLPack. An opened hover does not display javadoc documents but sources. In org.eclipse.jdt.ui.nl1_3.0.1/plugin_ja.properties sequentialHover=\u6700\u9069\u306A\u5439\u304D\u51FA\u3057 I delete this line, hover works fine. eclipse.buildId=I200406251208 java.ver... | resolved fixed | 2e288e7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T15:55:28Z | 2004-12-20T02:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,625 | Bug 81625 [hovering] Combined Hover does not work in ja_JP locale with NLPack | A combined hover does not work correctly in JavaEditor with NLPack. An opened hover does not display javadoc documents but sources. In org.eclipse.jdt.ui.nl1_3.0.1/plugin_ja.properties sequentialHover=\u6700\u9069\u306A\u5439\u304D\u51FA\u3057 I delete this line, hover works fine. eclipse.buildId=I200406251208 java.ver... | resolved fixed | 2e288e7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T15:55:28Z | 2004-12-20T02:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaEditorTextHoverDescriptor.java | /*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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, an... |
81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | verified fixed | 7664dcc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T16:01:22Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test10/in/A.java | |
81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | verified fixed | 7664dcc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T16:01:22Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test10/out/A.java | |
81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | verified fixed | 7664dcc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T16:01:22Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test11/in/A.java | |
81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | verified fixed | 7664dcc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T16:01:22Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/resources/RenamePrivateField/test11/out/A.java | |
81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | verified fixed | 7664dcc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T16:01:22Z | 2004-12-15T11:26:40Z | org.eclipse.jdt.ui.tests.refactoring/test | |
81,084 | Bug 81084 [1.5][search]Rename field fails on field based on parameterized type with member type parameter | M4 test pass (I20041214-2000-gtk) - Have the class below - Rename fList to fElements Expected: the field and the reference in the ctor are renamed Actual: only the field is renamed; no warning in preview Note: the same operation succeeds when not a nested type is used as parameter (e.g. String). --------- snip --------... | verified fixed | 7664dcc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2005-01-03T16:01:22Z | 2004-12-15T11:26:40Z | cases/org/eclipse/jdt/ui/tests/refactoring/RenamePrivateFieldTests.java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.