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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
22,827 | Bug 22827 nls: incorrect error if package starts with uppercase [refactoring] | If you try to externalize strings from a class contained in a package whose name starts with a cap, you will not be able to complete the externalization because of an error on the second page. The error message says : "By convention, packages names usually start with a lowercase letter". This is inconsistent with the b... | resolved fixed | 0d45186 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-08-28T16:16:19Z | 2002-08-26T08:20:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage2.java | |
17,402 | Bug 17402 Search should use the package compression... [search] | Enable package compression in the Java preferences and change the Search sort order to be 'Parent Name'... it would be nice if the package names were compressed using the same compression as the packages view. | resolved fixed | 65c76fe | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-02T10:55:06Z | 2002-05-23T16:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultLabelProvider.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.search;
import org.eclipse.core.resources.IMarker;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jface.viewers.ILabelDecorator;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.ecl... |
23,079 | Bug 23079 JavaElementLabels does not honor P_COMPRESSED for types and members | Build 20020903 The label provider has an option to compress the package name (P_COMPRESSED). This option is not applied to types and members. Test Case: 1. Enable package fragment name compression 2. Search for declarations of a type or method which is not in the default package ==> the Search view should honor the pac... | resolved fixed | f655a9a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-02T14:40:38Z | 2002-09-02T09:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementLabels.java | package org.eclipse.jdt.internal.ui.viewsupport;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.ui.model.IWorkbenchAdapter;
import org.eclipse.jdt.core.IClassFile;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IField;
import org... |
21,583 | Bug 21583 Generate Javadoc won't link prereqed projects | In the export wizard for generating javadoc, there is no easy way to link the javadoc from a prereqed project. The wizard has a screen for linking in javadoc from libraries included in the classpath, but projects in the classpath do not show up. I got a temporary workaround from the news group. Just add a "-link URL_TO... | resolved fixed | 7e648ba | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-02T17:14:43Z | 2002-07-15T16:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocStandardWizardPage.java | package org.eclipse.jdt.internal.ui.javadocexport;
import java.io.File;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.StringTokenizer;
import org.eclipse.core.resources.IProject;
import org.eclipse.co... |
23,082 | Bug 23082 extract interface: default package | incorrect interface cu is created: package ; //<<<ERROR interface I{ } | resolved fixed | aec6fd0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-03T08:59:48Z | 2002-09-02T15:20:00Z | org.eclipse.jdt.ui/core | |
23,082 | Bug 23082 extract interface: default package | incorrect interface cu is created: package ; //<<<ERROR interface I{ } | resolved fixed | aec6fd0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-03T08:59:48Z | 2002-09-02T15:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceRefactoring.java | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/wiki_out/A_test2001.java | package wiki_out;
public class A_test2001 {
int field= 0;
void fun() {
int i;
/*]*/extracted();/*[*/
}
protected void extracted() {
int i;
i= 0;
System.out.println("i, field == " + i++ +", " + field);
}
} |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/wiki_out/A_test2002.java | package wiki_out;
public class A_test2002 {
int field= 0;
void fun() {
int i= 0;
/*]*/i = extracted(i);/*[*/
System.out.println("i == " + i);
}
protected int extracted(int i) {
System.out.println("i, field == " + i++ +", " + field);
return i;
}
} |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/wiki_out/A_test2003.java | package wiki_out;
public class A_test2003 {
int field= 0;
void fun() {
int i= 0;
/*]*/extracted(i);/*[*/
}
protected void extracted(int i) {
if (field == 1) {
i= 1;
System.out.println("i, field == " + i + ", " + field);
} else {
System.out.println("i, field == " + i + ", " + field);
}
... |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/wiki_out/A_test2004.java | package wiki_out;
public class A_test2004 {
int field= 0;
void fun() {
int i= 0;
while (field < 2) {
field++;
/*]*/i = extracted(i);/*[*/
}
}
protected int extracted(int i) {
System.out.println("i, field == " + i++ +", " + field);
return i;
}
} |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/wiki_out/A_test2005.java | package wiki_out;
import java.io.IOException;
public class A_test2005 {
static void fun() throws IOException {
}
public static void main(String args[]) {
try {
/*]*/extracted();/*[*/
} catch (Exception e) {
}
}
protected static void extracted() throws IOException {
fun();
}
} |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/SefWorkSpace/SefTests/A.java | public class A {
static int sField;
int field;
public void foo() {
field= 10;
this.field= 10;
A.sField= 10;
new A().field= 30;
}
}
|
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/resources/SefWorkSpace/SefTests/invalid/TestInvalidOverwrite.java | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/SefTests.java | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui/core | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui/core | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui/core | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RefactoringScopeFactory.java | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | org.eclipse.jdt.ui/core | |
9,598 | Bug 9598 Self encapsulate field: Renamed method might shadow existing method in base class [refactoring] | 20020212 1. field: private IType fClass; 2. encapsulate field, choose setter name getClass 3. compile error in the created class private IType getClass() { return fClassC; } 'Return type is not compatible with java.lang.Object.getClass()' | resolved fixed | e2f86ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-04T16:20:28Z | 2002-02-13T14:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/sef/SelfEncapsulateFieldRefactoring.java | |
23,188 | Bug 23188 Open Type dialog needs real RE support | I cannot ask the Open Type dialog for types ending in "X" with the RE "*X". I get lower case "x"s AND types that do not end in "X" or "x". Very annoying to have to sift through hundreds of classes to find the one I want when I do not want to type the whole thing or I am not sure which one I really want until I see a sh... | resolved fixed | 0a12950 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-05T09:12:18Z | 2002-09-04T22:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionDialog.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.dialogs;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.runtime.IProgressMon... |
19,996 | Bug 19996 rename type: no progress reported when changes are performed [refactoring] | smoke test for 20020612 when you rename a type there's no progress reported in the change preforming phase | resolved fixed | 96207ae | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-05T12:58:06Z | 2002-06-12T11:06:40Z | org.eclipse.jdt.ui/core | |
19,996 | Bug 19996 rename type: no progress reported when changes are performed [refactoring] | smoke test for 20020612 when you rename a type there's no progress reported in the change preforming phase | resolved fixed | 96207ae | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-05T12:58:06Z | 2002-06-12T11:06:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/CompositeChange.java | |
21,808 | Bug 21808 delete confirmation prompts inconsistent with Navigator view [ccp] | Select a .java file in the Package Explorer and then Delete from its context menu. A Confirm Delete windows appears saying, "Are you sure you want to delete the selected element(s)? Yes or No. If you try the same thing from the Navigator view, a Confirm Resource Delete window appears saying, "Are you sure you want to d... | resolved fixed | ea8a1fa | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-05T13:57:40Z | 2002-07-23T16:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/DeleteResourcesAction.java | package org.eclipse.jdt.internal.ui.reorg;
import java.util.Iterator;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.MultiStatus;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jf... |
21,808 | Bug 21808 delete confirmation prompts inconsistent with Navigator view [ccp] | Select a .java file in the Package Explorer and then Delete from its context menu. A Confirm Delete windows appears saying, "Are you sure you want to delete the selected element(s)? Yes or No. If you try the same thing from the Navigator view, a Confirm Resource Delete window appears saying, "Are you sure you want to d... | resolved fixed | ea8a1fa | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-05T13:57:40Z | 2002-07-23T16:00: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... |
20,151 | Bug 20151 Copy/Paste inserts two new lines [ccp] | F3 - select a method in ouliner - copy - select CU - paste observe: method has two trailing newlines. There should be only one. May be this is a regression of the CodeFormatter fix | resolved fixed | d83a297 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-06T16:28:11Z | 2002-06-13T12:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/PasteSourceReferencesFromClipboardAction.java | package org.eclipse.jdt.internal.ui.reorg;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.swt.dnd.Clipboard;
import org.eclipse.jface.viewers.IStructuredSelect... |
4,263 | Bug 4263 Error ticks should also cover search results (1GKPVSU) [search] | Search matches do not get decorated with red Xs, though it could be interesting to show. Indeed when dealing with a large set of errors, one way to navigate is through search operations. NOTES: | resolved fixed | 697fa51 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T07:46:03Z | 2001-10-11T03:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultLabelProvider.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.search;
import org.eclipse.core.resources.IMarker;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jface.viewers.ILabelDecorator;
import org.eclipse.jface.viewers.ILabelProviderListener;
import org.ecl... |
23,320 | Bug 23320 Incomplete classpath and circular classpath options should be surfaced | null | resolved fixed | 58d7dfc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T10:21:22Z | 2002-09-09T11:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerPreferencePage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.preferences;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Hashtable;
import java.util.StringTokenizer;
import org.eclipse.core.resource... |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | org.eclipse.jdt.ui/core | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | extension/org/eclipse/jdt/internal/corext/template/TemplateContext.java | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | org.eclipse.jdt.ui/core | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | extension/org/eclipse/jdt/internal/corext/template/java/GlobalVariables.java | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | org.eclipse.jdt.ui/core | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | extension/org/eclipse/jdt/internal/corext/template/java/JavaContext.java | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | org.eclipse.jdt.ui/core | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | extension/org/eclipse/jdt/internal/corext/template/java/JavaDocContext.java | |
23,069 | Bug 23069 Class wizard fails with file/typecomment enabled [regression] build I0827 | When creating a new class or interface with the wizards, the evaluation of the file/typecomment templates fails, generation the following error log: *** Error Log: !SESSION Aug 31, 2002 08:36:29.537 --------------------------------------------- java.version=1.4.1-rc java.vendor=Sun Microsystems Inc. BootLoader constant... | verified fixed | 5962c4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-10T15:17:27Z | 2002-08-31T13:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/template/TemplateEngine.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.text.template;
import java.util.ArrayList;
import org.eclipse.swt.graphics.Point;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.ITextViewer;
import... |
23,316 | Bug 23316 preference to turn off automagic-closing-brackets | there should be a way to turn it off - i'm not used to it and it gets in my way a bit | resolved fixed | 14e32bc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-11T13:11:22Z | 2002-09-09T08:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | package org.eclipse.jdt.internal.ui.javaeditor;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StyledText... |
23,316 | Bug 23316 preference to turn off automagic-closing-brackets | there should be a way to turn it off - i'm not used to it and it gets in my way a bit | resolved fixed | 14e32bc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-11T13:11:22Z | 2002-09-09T08:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.preferences;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
im... |
23,316 | Bug 23316 preference to turn off automagic-closing-brackets | there should be a way to turn it off - i'm not used to it and it gets in my way a bit | resolved fixed | 14e32bc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-11T13:11:22Z | 2002-09-09T08:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java | package org.eclipse.jdt.internal.ui.text.java;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.DefaultAutoIndentStrategy;
import org.eclipse.jface.text.DocumentCommand;
import org.eclipse.jface.text.IDocument;
impo... |
23,316 | Bug 23316 preference to turn off automagic-closing-brackets | there should be a way to turn it off - i'm not used to it and it gets in my way a bit | resolved fixed | 14e32bc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-11T13:11:22Z | 2002-09-09T08:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaStringAutoIndentStrategy.java | package org.eclipse.jdt.internal.ui.text.java;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.DefaultAutoIndentStrategy;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.DocumentCommand;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IRegi... |
23,316 | Bug 23316 preference to turn off automagic-closing-brackets | there should be a way to turn it off - i'm not used to it and it gets in my way a bit | resolved fixed | 14e32bc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-11T13:11:22Z | 2002-09-09T08:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocAutoIndentStrategy.java | package org.eclipse.jdt.internal.ui.text.javadoc;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.DefaultAutoIndentStrategy;
import org.eclipse.jface.text.DocumentCo... |
23,434 | Bug 23434 ArrayStoreException attempting rename field [refactoring] | 20020910 In org.eclipse.ant.internal.core.ant.ProgressBuildListener when I attempt to rename the "mainProject" field to "fMainProject" I get: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:310) at org.eclipse.jface.operation.ModalContext.run... | resolved fixed | d44be8e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-12T07:02:03Z | 2002-09-11T21:33:20Z | org.eclipse.jdt.ui/core | |
23,434 | Bug 23434 ArrayStoreException attempting rename field [refactoring] | 20020910 In org.eclipse.ant.internal.core.ant.ProgressBuildListener when I attempt to rename the "mainProject" field to "fMainProject" I get: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:310) at org.eclipse.jface.operation.ModalContext.run... | resolved fixed | d44be8e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-12T07:02:03Z | 2002-09-11T21:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RefactoringScopeFactory.java | |
23,459 | Bug 23459 add preference option to turn off variable guessing on method completion | request from Adam | resolved fixed | 75fbf65 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-12T15:39:37Z | 2002-09-12T08:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.preferences;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
im... |
23,459 | Bug 23459 add preference option to turn off variable guessing on method completion | request from Adam | resolved fixed | 75fbf65 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-12T15:39:37Z | 2002-09-12T08:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/ContentAssistPreference.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.text;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.preference.PreferenceConverter;
import org.eclipse.... |
23,459 | Bug 23459 add preference option to turn off variable guessing on method completion | request from Adam | resolved fixed | 75fbf65 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-12T15:39:37Z | 2002-09-12T08:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ExperimentalProposal.java | |
23,459 | Bug 23459 add preference option to turn off variable guessing on method completion | request from Adam | resolved fixed | 75fbf65 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-12T15:39:37Z | 2002-09-12T08:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ExperimentalResultCollector.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.text.java;
import org.eclipse.jface.text.ITextViewer;
/**
* Bin to collect the proposal of the infrastructure on code assist in a java text.
*/
public class ExperimentalResultCollector extends ResultCollector {... |
23,362 | Bug 23362 DOM: incorrect length for InfixExpression. | Latest Head 2002/09/10. package test1; public class E { public void foo() { i= (1 + 2) * 3; } } The infix expression for "1 + 2" has a length of 3. It should be 5. | verified fixed | 84b1a3b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T09:28:17Z | 2002-09-10T15:00:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/astrewrite/ASTRewritingExpressionsTest.java | package org.eclipse.jdt.ui.tests.astrewrite;
import java.util.Hashtable;
import java.util.List;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.c... |
22,938 | Bug 22938 Refactor doesn't work with cast and spacing. | I explain my problem with a little piece of code. If you have this example code: class NonnaPapera { } class Paperino extends NonnaPapera { } public class TestRefactor { public static void main(String[] args) { Paperino paperino = new Paperino(); NonnaPapera nonnaPapera = ( NonnaPapera )paperino; } } I have refactored ... | resolved fixed | eda87e1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T10:56:51Z | 2002-08-28T10:20:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
22,938 | Bug 22938 Refactor doesn't work with cast and spacing. | I explain my problem with a little piece of code. If you have this example code: class NonnaPapera { } class Paperino extends NonnaPapera { } public class TestRefactor { public static void main(String[] args) { Paperino paperino = new Paperino(); NonnaPapera nonnaPapera = ( NonnaPapera )paperino; } } I have refactored ... | resolved fixed | eda87e1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T10:56:51Z | 2002-08-28T10:20:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/InlineTempTests.java | |
22,938 | Bug 22938 Refactor doesn't work with cast and spacing. | I explain my problem with a little piece of code. If you have this example code: class NonnaPapera { } class Paperino extends NonnaPapera { } public class TestRefactor { public static void main(String[] args) { Paperino paperino = new Paperino(); NonnaPapera nonnaPapera = ( NonnaPapera )paperino; } } I have refactored ... | resolved fixed | eda87e1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T10:56:51Z | 2002-08-28T10:20:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
22,938 | Bug 22938 Refactor doesn't work with cast and spacing. | I explain my problem with a little piece of code. If you have this example code: class NonnaPapera { } class Paperino extends NonnaPapera { } public class TestRefactor { public static void main(String[] args) { Paperino paperino = new Paperino(); NonnaPapera nonnaPapera = ( NonnaPapera )paperino; } } I have refactored ... | resolved fixed | eda87e1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T10:56:51Z | 2002-08-28T10:20:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/RenameTempTests.java | |
22,938 | Bug 22938 Refactor doesn't work with cast and spacing. | I explain my problem with a little piece of code. If you have this example code: class NonnaPapera { } class Paperino extends NonnaPapera { } public class TestRefactor { public static void main(String[] args) { Paperino paperino = new Paperino(); NonnaPapera nonnaPapera = ( NonnaPapera )paperino; } } I have refactored ... | resolved fixed | eda87e1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T10:56:51Z | 2002-08-28T10:20:00Z | org.eclipse.jdt.ui.tests.refactoring/test | |
22,938 | Bug 22938 Refactor doesn't work with cast and spacing. | I explain my problem with a little piece of code. If you have this example code: class NonnaPapera { } class Paperino extends NonnaPapera { } public class TestRefactor { public static void main(String[] args) { Paperino paperino = new Paperino(); NonnaPapera nonnaPapera = ( NonnaPapera )paperino; } } I have refactored ... | resolved fixed | eda87e1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T10:56:51Z | 2002-08-28T10:20:00Z | cases/org/eclipse/jdt/ui/tests/refactoring/RenameTypeTests.java | |
18,961 | Bug 18961 Adding new class creates class in wrong package in Java Browsing Perspective [browsing] | Hi, I'm working on a class in package A and want to create a class in package B in the Java Browsing perspective. I select package B in the Packages view go into the Types view, click the right mouse button and select New Class. The new class is created in package A instead of package B. Environment: Windows 2000 JSDK ... | resolved fixed | 02ce495 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T12:06:55Z | 2002-06-04T03:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPart.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.browsing;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.Iterator;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
im... |
18,961 | Bug 18961 Adding new class creates class in wrong package in Java Browsing Perspective [browsing] | Hi, I'm working on a class in package A and want to create a class in package B in the Java Browsing perspective. I select package B in the Packages view go into the Types view, click the right mouse button and select New Class. The new class is created in package A instead of package B. Environment: Windows 2000 JSDK ... | resolved fixed | 02ce495 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T12:06:55Z | 2002-06-04T03:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | package org.eclipse.jdt.internal.ui.javaeditor;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.swt.custom.BidiSegmentEvent;
import org.eclipse.swt.custom.BidiSegmentListener;
import org.eclipse.sw... |
18,961 | Bug 18961 Adding new class creates class in wrong package in Java Browsing Perspective [browsing] | Hi, I'm working on a class in package A and want to create a class in package B in the Java Browsing perspective. I select package B in the Packages view go into the Types view, click the right mouse button and select New Class. The new class is created in package A instead of package B. Environment: Windows 2000 JSDK ... | resolved fixed | 02ce495 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T12:06:55Z | 2002-06-04T03:06:40Z | 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... |
18,961 | Bug 18961 Adding new class creates class in wrong package in Java Browsing Perspective [browsing] | Hi, I'm working on a class in package A and want to create a class in package B in the Java Browsing perspective. I select package B in the Packages view go into the Types view, click the right mouse button and select New Class. The new class is created in package A instead of package B. Environment: Windows 2000 JSDK ... | resolved fixed | 02ce495 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T12:06:55Z | 2002-06-04T03:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.e... |
18,961 | Bug 18961 Adding new class creates class in wrong package in Java Browsing Perspective [browsing] | Hi, I'm working on a class in package A and want to create a class in package B in the Java Browsing perspective. I select package B in the Packages view go into the Types view, click the right mouse button and select New Class. The new class is created in package A instead of package B. Environment: Windows 2000 JSDK ... | resolved fixed | 02ce495 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T12:06:55Z | 2002-06-04T03:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/IViewPartInputProvider.java | |
18,961 | Bug 18961 Adding new class creates class in wrong package in Java Browsing Perspective [browsing] | Hi, I'm working on a class in package A and want to create a class in package B in the Java Browsing perspective. I select package B in the Packages view go into the Types view, click the right mouse button and select New Class. The new class is created in package A instead of package B. Environment: Windows 2000 JSDK ... | resolved fixed | 02ce495 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T12:06:55Z | 2002-06-04T03:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewContainerWizardPage.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 v1.0
* which accompanie... |
23,366 | Bug 23366 Modify parameters refactoring remebers last state [refactoring] | 2.x - select a method with 2 arguments - activate modify parameters - change order and one name - click next to see preview - press cancel - activate refactoring again observe: the dialog shows the last entered settings. | resolved fixed | d6e1ac6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:14Z | 2002-09-10T15:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ExtractInterfaceAction.java | package org.eclipse.jdt.ui.actions;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.ui.IWorkbenchSite;
import org.eclipse.ui.help.WorkbenchHelp;... |
23,366 | Bug 23366 Modify parameters refactoring remebers last state [refactoring] | 2.x - select a method with 2 arguments - activate modify parameters - change order and one name - click next to see preview - press cancel - activate refactoring again observe: the dialog shows the last entered settings. | resolved fixed | d6e1ac6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:14Z | 2002-09-10T15:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ModifyParametersAction.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... |
23,366 | Bug 23366 Modify parameters refactoring remebers last state [refactoring] | 2.x - select a method with 2 arguments - activate modify parameters - change order and one name - click next to see preview - press cancel - activate refactoring again observe: the dialog shows the last entered settings. | resolved fixed | d6e1ac6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:14Z | 2002-09-10T15:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/MoveInnerToTopAction.java | package org.eclipse.jdt.ui.actions;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.ui.IWorkbenchSite;
import org.eclipse.ui.help.WorkbenchHelp;... |
23,366 | Bug 23366 Modify parameters refactoring remebers last state [refactoring] | 2.x - select a method with 2 arguments - activate modify parameters - change order and one name - click next to see preview - press cancel - activate refactoring again observe: the dialog shows the last entered settings. | resolved fixed | d6e1ac6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:14Z | 2002-09-10T15:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/PullUpAction.java | package org.eclipse.jdt.ui.actions;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/core | |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/TextChange.java | |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CUCorrectionProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CorrectPackageDeclarationProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/InsertCorrectionProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40: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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewConstructorCompletionProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewMethodCompletionProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ReplaceCorrectionProposal.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... |
23,528 | Bug 23528 quick fix: adds bogus whitespaces on 'add throws declaration' | class A{ void a() throws Exception{ } void f(){ a(); } } qf the call to a() 'add throws declaration' you will get 'void f() throws Exception{' i have to go and fix it every time it used to work :( | resolved fixed | ec0851e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T13:08:45Z | 2002-09-13T09:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.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... |
23,324 | Bug 23324 pull up: incorrect indent | 2 cases: //testFieldMethod0 package p; class A { } class B extends A { void m() { int i= f; } int f; } and //test19 package p; class A { void m() { //implementation } } class C extends A { } class B extends C { void m() { super.m(); //further implementation } } | resolved fixed | 3d553ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T14:09:28Z | 2002-09-09T14:00:00Z | org.eclipse.jdt.ui/core | |
23,324 | Bug 23324 pull up: incorrect indent | 2 cases: //testFieldMethod0 package p; class A { } class B extends A { void m() { int i= f; } int f; } and //test19 package p; class A { void m() { //implementation } } class C extends A { } class B extends C { void m() { super.m(); //further implementation } } | resolved fixed | 3d553ca | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T14:09:28Z | 2002-09-09T14:00:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/PullUpRefactoring.java | |
15,732 | Bug 15732 String not found message not cleared | Build 20020508 - did a search, and it found no matches - the status line shows "String Not Found" in red - the message remains even if I click around, switch between editors of the same type (even though I didn't search in the other editors), or switch to another view and back to the editor Either the message should no... | resolved fixed | 79e965d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-13T16:00:29Z | 2002-05-10T14:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | package org.eclipse.jdt.internal.ui.javaeditor;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StyledText... |
20,549 | Bug 20549 Class generation from Interface generates @see - tags Javadoc doesn't understand [javadoc] | I have an interface stack like this: public interface OuterI { public interface InnerI {} public void eatInner(InnerI innerI); } I use New/Class to generate a class implementing OuterI. Here is (a slightly boiled-down version of) what I get: import OuterI.InnerI; public class Impl implements OuterI { /** * @see OuterI#... | resolved fixed | f7ca609 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T13:55:26Z | 2002-06-18T17:06:40Z | org.eclipse.jdt.ui/core | |
20,549 | Bug 20549 Class generation from Interface generates @see - tags Javadoc doesn't understand [javadoc] | I have an interface stack like this: public interface OuterI { public interface InnerI {} public void eatInner(InnerI innerI); } I use New/Class to generate a class implementing OuterI. Here is (a slightly boiled-down version of) what I get: import OuterI.InnerI; public class Impl implements OuterI { /** * @see OuterI#... | resolved fixed | f7ca609 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T13:55:26Z | 2002-06-18T17:06:40Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/AddJavaDocStubOperation.java | |
20,549 | Bug 20549 Class generation from Interface generates @see - tags Javadoc doesn't understand [javadoc] | I have an interface stack like this: public interface OuterI { public interface InnerI {} public void eatInner(InnerI innerI); } I use New/Class to generate a class implementing OuterI. Here is (a slightly boiled-down version of) what I get: import OuterI.InnerI; public class Impl implements OuterI { /** * @see OuterI#... | resolved fixed | f7ca609 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T13:55:26Z | 2002-06-18T17:06:40Z | org.eclipse.jdt.ui/core | |
20,549 | Bug 20549 Class generation from Interface generates @see - tags Javadoc doesn't understand [javadoc] | I have an interface stack like this: public interface OuterI { public interface InnerI {} public void eatInner(InnerI innerI); } I use New/Class to generate a class implementing OuterI. Here is (a slightly boiled-down version of) what I get: import OuterI.InnerI; public class Impl implements OuterI { /** * @see OuterI#... | resolved fixed | f7ca609 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T13:55:26Z | 2002-06-18T17:06:40Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java | |
19,889 | Bug 19889 [assist] completion in throws clause or in javadoc @throws tag should propose only exception class | When I'm here: /** {@link Unsupp and ask for autocompletion, it comes up with a window listing a few types, among them java.lang.UnsupportedOperationException. When I'm here: /** @throws Unsupp or here: /** @exception Unsupp autocompletion has no idea what could possibly follow. | resolved wontfix | 10d9d51 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T14:17:42Z | 2002-06-11T12:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionEvaluator.java | package org.eclipse.jdt.internal.ui.text.javadoc;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.ArrayList;
import java.util.List;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.e... |
22,553 | Bug 22553 "Show in Types Hierarchy" selects the "wrong" class [type hierarchy] | My custom perspective has a Packages pane, Hierarchy pane and a code editor pane. My packages pane is really a pane with a Packages Tab and a Projects Tab. (1) I select one of my packages. (2) I choose Open in Types Hierarchy. (3) E opens by package in the Types Hierarchy but Selects the class Object! (4) This causes t... | resolved fixed | 4297428 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:12:15Z | 2002-08-19T23:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.typehierarchy;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.e... |
23,219 | Bug 23219 bad decorator for methods which implement abstract methods. [render] | Build 200209031019 In the outline view, the current decorator for a method which implements an abstract method defined in a abstract class is the full triangle, as for a method which overrides an other method. The decorator should be the empty triangle, as for methods which implement other abstract methods (interface m... | resolved fixed | c5dae6b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:53:41Z | 2002-09-05T12:46:40Z | org.eclipse.jdt.ui/core | |
23,219 | Bug 23219 bad decorator for methods which implement abstract methods. [render] | Build 200209031019 In the outline view, the current decorator for a method which implements an abstract method defined in a abstract class is the full triangle, as for a method which overrides an other method. The decorator should be the empty triangle, as for methods which implement other abstract methods (interface m... | resolved fixed | c5dae6b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:53:41Z | 2002-09-05T12:46:40Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/AddMethodStubOperation.java | |
23,219 | Bug 23219 bad decorator for methods which implement abstract methods. [render] | Build 200209031019 In the outline view, the current decorator for a method which implements an abstract method defined in a abstract class is the full triangle, as for a method which overrides an other method. The decorator should be the empty triangle, as for methods which implement other abstract methods (interface m... | resolved fixed | c5dae6b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:53:41Z | 2002-09-05T12:46:40Z | org.eclipse.jdt.ui/core | |
23,219 | Bug 23219 bad decorator for methods which implement abstract methods. [render] | Build 200209031019 In the outline view, the current decorator for a method which implements an abstract method defined in a abstract class is the full triangle, as for a method which overrides an other method. The decorator should be the empty triangle, as for methods which implement other abstract methods (interface m... | resolved fixed | c5dae6b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:53:41Z | 2002-09-05T12:46:40Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java | |
23,219 | Bug 23219 bad decorator for methods which implement abstract methods. [render] | Build 200209031019 In the outline view, the current decorator for a method which implements an abstract method defined in a abstract class is the full triangle, as for a method which overrides an other method. The decorator should be the empty triangle, as for methods which implement other abstract methods (interface m... | resolved fixed | c5dae6b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:53:41Z | 2002-09-05T12:46:40Z | org.eclipse.jdt.ui/core | |
23,219 | Bug 23219 bad decorator for methods which implement abstract methods. [render] | Build 200209031019 In the outline view, the current decorator for a method which implements an abstract method defined in a abstract class is the full triangle, as for a method which overrides an other method. The decorator should be the empty triangle, as for methods which implement other abstract methods (interface m... | resolved fixed | c5dae6b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T15:53:41Z | 2002-09-05T12:46:40Z | extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java | |
23,598 | Bug 23598 incorrect handling of auto-string-closing in linked positions | 0916.1 plugin export 1. package p; public class A{ void f(String hola) { } } 2. enter somewhere f<<CODE ASSIST HERE 3. choose the first entry - you get f(hola) << hola is selected and underlined 4. type "" fast 5. you get f(""a) - the last character is always left there | resolved fixed | ee21f97 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T16:35:42Z | 2002-09-16T12:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java | package org.eclipse.jdt.internal.ui.text.java;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.DefaultAutoIndentStrategy;
import org.eclipse.jface.text.Document... |
11,703 | Bug 11703 Outline sorting -> constructors should be before statics | build 2002-03-19 on Win98. - open a Java editor on a Java file - in the Outline view have "sort" and "hide fields" icons selected - note that the sort order seems to be statics then constructors then instance methods - in build 2002-03-14 constructors used to be listed at the top next to the class name - this is much m... | resolved fixed | c59109a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T18:31:22Z | 2002-03-19T20:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui;
import org.eclipse.jdt.ui.JavaUI;
/**
* Help context ids for the Java UI.
* <p>
* This interface contains constants only; it is not intended to be implemented
* or extended.
* </p>
*
*/
public interface... |
11,703 | Bug 11703 Outline sorting -> constructors should be before statics | build 2002-03-19 on Win98. - open a Java editor on a Java file - in the Outline view have "sort" and "hide fields" icons selected - note that the sort order seems to be statics then constructors then instance methods - in build 2002-03-14 constructors used to be listed at the top next to the class name - this is much m... | resolved fixed | c59109a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T18:31:22Z | 2002-03-19T20:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.core... |
11,703 | Bug 11703 Outline sorting -> constructors should be before statics | build 2002-03-19 on Win98. - open a Java editor on a Java file - in the Outline view have "sort" and "hide fields" icons selected - note that the sort order seems to be statics then constructors then instance methods - in build 2002-03-14 constructors used to be listed at the top next to the class name - this is much m... | resolved fixed | c59109a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T18:31:22Z | 2002-03-19T20:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java | package org.eclipse.jdt.internal.ui.javaeditor;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.List;
import java.util.Vector;
import org.eclipse.swt.SWT;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.DragSo... |
11,703 | Bug 11703 Outline sorting -> constructors should be before statics | build 2002-03-19 on Win98. - open a Java editor on a Java file - in the Outline view have "sort" and "hide fields" icons selected - note that the sort order seems to be statics then constructors then instance methods - in build 2002-03-14 constructors used to be listed at the top next to the class name - this is much m... | resolved fixed | c59109a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T18:31:22Z | 2002-03-19T20:33:20Z | 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... |
11,703 | Bug 11703 Outline sorting -> constructors should be before statics | build 2002-03-19 on Win98. - open a Java editor on a Java file - in the Outline view have "sort" and "hide fields" icons selected - note that the sort order seems to be statics then constructors then instance methods - in build 2002-03-14 constructors used to be listed at the top next to the class name - this is much m... | resolved fixed | c59109a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-09-16T18:31:22Z | 2002-03-19T20:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/MembersOrderPreferencePage.java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.