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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
25,183 | Bug 25183 AST: ITypeBinding of interface returns constructor | 20021018 + jcore for 20021022 LocalCorrectionsQuickFixTest.testUnimplementedMethods Set breakpoint in UnimplementedMethodsCompletionProposal.findUnimplementedInterfaceMethods to see that the ITypeBinding of a interface returns a constructor | verified fixed | 9c77ba1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T13:33:21Z | 2002-10-22T12:33:20Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/QuickFixTest.java | package org.eclipse.jdt.ui.tests.quickfix;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.StringReader;
import java.util.List;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
i... |
19,886 | Bug 19886 setProjectJavadocLocation() only in internal package [api] [javadoc] | If You want to set the project javadoc location by API so You have to use an internal class, there is no public interface. see class org.eclipse.jdt.internal.corext.javadoc.JavaDocLocations (Otherwise the method setLibraryJavadocLocation() is public at org.eclipse.jdt.ui.JavaUI - thats ok.) | verified fixed | 1a70f57 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T14:21:40Z | 2002-06-11T10:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.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... |
21,857 | Bug 21857 Javadoc code completion does not work for public method of public inner class | Consider the following example, where the cursor is placed at the end of the javadoc comment line. Pressing Ctrl-Space now should complete with "someMethod()", shouldn't it? However, in Build 200206271827, it doesn't. public class TestCompletion { /** * {@link InnerTest#so */ public TestCompletion() { super(); } public... | verified fixed | 6e9aa8a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T14:45:00Z | 2002-07-24T14:13: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... |
24,929 | Bug 24929 quick fix: make exception more general [quick fix] | public class DD { void fs() throws MalformedURLException { f(); f1(); } void f() throws IOException{ } void f1() throws MalformedURLException{ } } it'd be cool if qf noticed that it can change the throws clause in fs() to throws IOException (change, not add) | verified fixed | a486bbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T15:31:04Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java | package org.eclipse.jdt.ui.tests.quickfix;
import java.util.ArrayList;
import java.util.Hashtable;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaProject;
import org.e... |
24,929 | Bug 24929 quick fix: make exception more general [quick fix] | public class DD { void fs() throws MalformedURLException { f(); f1(); } void f() throws IOException{ } void f1() throws MalformedURLException{ } } it'd be cool if qf noticed that it can change the throws clause in fs() to throws IOException (change, not add) | verified fixed | a486bbc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T15:31:04Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java | /*******************************************************************************
* Copyright (c) 2000, 2002 International Business Machines Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanie... |
24,919 | Bug 24919 quick fix: native methods do not specify a body either [quick fix] | 20021016 just like abstract ones - so you can offer removing the modifier | verified fixed | 48d74d9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T17:24:05Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/ModifierCorrectionsQuickFixTest.java | package org.eclipse.jdt.ui.tests.quickfix;
import java.util.ArrayList;
import java.util.Hashtable;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaProject;
import org.e... |
24,919 | Bug 24919 quick fix: native methods do not specify a body either [quick fix] | 20021016 just like abstract ones - so you can offer removing the modifier | verified fixed | 48d74d9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T17:24:05Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/ModifierCorrectionSubProcessor.java | package org.eclipse.jdt.internal.ui.text.correction;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.swt.graphics.Image;
import org.eclipse.jdt.core.IBuffer;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.... |
24,919 | Bug 24919 quick fix: native methods do not specify a body either [quick fix] | 20021016 just like abstract ones - so you can offer removing the modifier | verified fixed | 48d74d9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-22T17:24:05Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickFixProcessor.java | package org.eclipse.jdt.internal.ui.text.correction;
import java.util.List;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.core.compiler.IProblem;
/**
*/
public class QuickFixProcessor implements ICorrectionProcessor {
public static boolean hasCorrections(int problemId) {
switch (proble... |
25,031 | Bug 25031 [Dialogs] Bogus progress bar after canceling paste | Build 20021016 1) Select a file in the resource navigator 2) Right click and choose copy 3) Right click again and choose paste -> A dialog comes up asking for a new file name 4) Click cancel on this dialog. -> A progress bar appears in the status line. The message says, "Performing changes". The progress bar fills up i... | verified fixed | 89b2d1f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-23T14:18:17Z | 2002-10-17T21:26:40Z | org.eclipse.jdt.ui/ui | |
25,031 | Bug 25031 [Dialogs] Bogus progress bar after canceling paste | Build 20021016 1) Select a file in the resource navigator 2) Right click and choose copy 3) Right click again and choose paste -> A dialog comes up asking for a new file name 4) Click cancel on this dialog. -> A progress bar appears in the status line. The message says, "Performing changes". The progress bar fills up i... | verified fixed | 89b2d1f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-23T14:18:17Z | 2002-10-17T21:26:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/PerformChangeOperation.java | |
24,571 | Bug 24571 Move To Top Level: puts several statements on one line [refactoring] | Using 2.1 I20021008 Tried the "move to top level" refactoring on a static inner class. The new top level class has the package and import statements on one line. I'm guessing the fact I'm editing a file with unix line terminators could have something to do with it: Attaching new top level class. | verified fixed | 4b0b7ff | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-23T14:51:49Z | 2002-10-09T13:26:40Z | org.eclipse.jdt.ui/core | |
24,571 | Bug 24571 Move To Top Level: puts several statements on one line [refactoring] | Using 2.1 I20021008 Tried the "move to top level" refactoring on a static inner class. The new top level class has the package and import statements on one line. I'm guessing the fact I'm editing a file with unix line terminators could have something to do with it: Attaching new top level class. | verified fixed | 4b0b7ff | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-23T14:51:49Z | 2002-10-09T13:26:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
24,915 | Bug 24915 Use Supertype Where Possible: should update UI when checkbox changes [refactoring] | Build 20021016 1. Start Use Supertype Where Possible refactoring 2. Select a supertype where no possible updates can be found 3. Press Next 4. Go Back 5. Toggle the checkbox "Use the selected supertype in "instance of" expressions ==> not sure whether this should update the view (e.g. allow to start again with above ty... | verified fixed | 817dd4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-23T16:22:08Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui | |
24,915 | Bug 24915 Use Supertype Where Possible: should update UI when checkbox changes [refactoring] | Build 20021016 1. Start Use Supertype Where Possible refactoring 2. Select a supertype where no possible updates can be found 3. Press Next 4. Go Back 5. Toggle the checkbox "Use the selected supertype in "instance of" expressions ==> not sure whether this should update the view (e.g. allow to start again with above ty... | verified fixed | 817dd4d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-23T16:22:08Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/UseSupertypeInputPage.java | |
25,129 | Bug 25129 IAE in eating code assist | Don't have a reproducible case yet but do see it quite regularly. Have eating code assist enabled. java.lang.IllegalArgumentException: Index out of bounds at org.eclipse.swt.SWT.error(SWT.java:2125) at org.eclipse.swt.SWT.error(SWT.java:2071) at org.eclipse.swt.custom.StyledText.setStyleRange(StyledText.java:7168) at o... | verified fixed | 02e1360 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-28T15:57:59Z | 2002-10-21T17:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
25,069 | Bug 25069 Reuse editor in Search view does not check it the editor is pinned. | null | resolved fixed | afe3d03 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-28T17:03:56Z | 2002-10-18T16:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/GotoMarkerAction.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.search;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.action.Acti... |
25,211 | Bug 25211 Widget Is Disposed from java preference page | Build 20021018 I got the following "Widget is disposed" exception repeatedly when browsing the Java preference pages: !MESSAGE Widget is disposed !STACK 0 org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:2139) at org.eclipse.swt.SWT.error(SWT.java:2071) at org.eclipse.swt.widgets.W... | verified fixed | ab1de64 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-28T18:26:09Z | 2002-10-22T18:06: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... |
24,890 | Bug 24890 working sets: empty name inconsistencies [dialogs] | 20021016 The 'New Working set' dialog allows empty names while the 'Edit' dialog does not like them | verified fixed | 121bba8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-28T18:30:10Z | 2002-10-17T07:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java | |
25,199 | Bug 25199 Do not show import declarations children on members view [browsing] | R2.0.1 In the Java Browsing Perspective, the Members View has a plus sign where you can see the import declarations. When you have many import statments and the import declaration has focus it can be annoying if trying to navigate to a method because if you "close" the import declarations (pressing the minus sign) it r... | verified fixed | b5ea3a7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-28T18:45:50Z | 2002-10-22T15:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/MembersView.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.browsing;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.uti... |
24,841 | Bug 24841 Refactoring should use IWorkbench.saveAllEditors [refactoring] | null | verified fixed | d06c340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-29T13:24:22Z | 2002-10-16T14:53:20Z | org.eclipse.jdt.ui/ui | |
24,841 | Bug 24841 Refactoring should use IWorkbench.saveAllEditors [refactoring] | null | verified fixed | d06c340 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-29T13:24:22Z | 2002-10-16T14:53:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/RefactoringStarter.java | |
20,662 | Bug 20662 add .jar file to java build path from context menu in navigator [build path] | I'd like to be able to add a jar file to the current project build path from the resource navigator, via the context menu. This is a lot simpler than going through the project properties. It feels more natural to me to right click and add the library. | verified fixed | 36bb3e3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-30T09:54:03Z | 2002-06-19T15:20:00Z | 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... |
20,662 | Bug 20662 add .jar file to java build path from context menu in navigator [build path] | I'd like to be able to add a jar file to the current project build path from the resource navigator, via the context menu. This is a lot simpler than going through the project properties. It feels more natural to me to right click and add the library. | verified fixed | 36bb3e3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-30T09:54:03Z | 2002-06-19T15:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddJARToClasspathAction.java | |
20,662 | Bug 20662 add .jar file to java build path from context menu in navigator [build path] | I'd like to be able to add a jar file to the current project build path from the resource navigator, via the context menu. This is a lot simpler than going through the project properties. It feels more natural to me to right click and add the library. | verified fixed | 36bb3e3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-30T09:54:03Z | 2002-06-19T15:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/GenerateActionGroup.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... |
22,499 | Bug 22499 Code assist mangles/truncates import statements [code manipulation] | I used code assist to insert an anonymous inner class, which caused SelectionChangeEvent and ISelecitonChangeListener to get aded as imports. My list of imports became truncated at approximately 3180 characters. Before the new imports were added, the import statements also totalled 3180 characters. The result is that t... | verified fixed | 94a248e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-30T15:15:24Z | 2002-08-16T15:00:00Z | org.eclipse.jdt.ui/core | |
22,499 | Bug 22499 Code assist mangles/truncates import statements [code manipulation] | I used code assist to insert an anonymous inner class, which caused SelectionChangeEvent and ISelecitonChangeListener to get aded as imports. My list of imports became truncated at approximately 3180 characters. Before the new imports were added, the import statements also totalled 3180 characters. The result is that t... | verified fixed | 94a248e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-30T15:15:24Z | 2002-08-16T15:00:00Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/ImportsStructure.java | |
25,246 | Bug 25246 filecomment template does not accept '//' comments [wizards] | null | verified fixed | a4e94d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-30T15:34:13Z | 2002-10-23T13:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.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... |
25,169 | Bug 25169 Eating CA: visual indication remains | 1) set preference: Insert Proposals 2) open TestCase.java 3) enable segmentated view 4) select TestCase(String) 5) place cursor at Stri>I<ng 6) activate code assist 7) select String from the proposal list 8) press Ctrl 9) press Enter -> color indication remains although content assist window closed | verified fixed | 6e33835 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-10-31T17:08:26Z | 2002-10-22T09:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
25,002 | Bug 25002 [outline view] Add Go Into like functionality | Problem: The java outline view currently shows an outline of the entire CU, though most uses are only interested in the outline of the class itself. Because of the tree nature of the view, a fair amount of screen space is wasted on whitespace in front of the methods. It would be nice to be able to eliminate this whites... | verified fixed | d4bd378 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-04T16:51:40Z | 2002-10-17T15:53: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.core.resources.IResource;
import org.eclipse.swt.SWT;
import org.eclipse.... |
25,517 | Bug 25517 JVM crashes on method rename with circular dependecies in the classpath | I am reporting this bug for a WSAD customer. I have a simple scenario that will crash the Eclipse workbench. The key to making the crash happen seems to be that I need to have two projects whose classpath is dependent on each other with each dependency exported. I will attach two .zip files- each containing a Java Proj... | resolved fixed | 32f884c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-06T11:06:49Z | 2002-10-29T22:20:00Z | org.eclipse.jdt.ui/core | |
25,517 | Bug 25517 JVM crashes on method rename with circular dependecies in the classpath | I am reporting this bug for a WSAD customer. I have a simple scenario that will crash the Eclipse workbench. The key to making the crash happen seems to be that I need to have two projects whose classpath is dependent on each other with each dependency exported. I will attach two .zip files- each containing a Java Proj... | resolved fixed | 32f884c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-06T11:06:49Z | 2002-10-29T22:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RefactoringScopeFactory.java | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | extension/org/eclipse/jdt/internal/corext/dom/LocalVariableIndex.java | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/CallInliner.java | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/core | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/flow/InputFlowAnalyzer.java | |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/InlineMethodAction.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 v1.0
* which accompanies this... |
24,908 | Bug 24908 inline method - NPE when inlining into static methods [refactoring] | I-20021016 linux-gtk: public class Hoo { static { foo(); } private static void foo() { System.out.println("foo"); } } 1. select either use or declaration of foo 2. inline method 3. press finish 4. get an error dialog and log for NPE --8<--log--- !ENTRY org.eclipse.jdt.ui 4 1 Oct 17, 2002 12:13:21.76 !MESSAGE Internal E... | verified fixed | b3e24be | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-07T10:00:35Z | 2002-10-17T10:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenAction.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... |
25,903 | Bug 25903 AnnotationType.PROBLEM? | Why is there no PROBLEM annotation type? The method IAnnotationType.isProblem() has been deprecated. | closed fixed | 4a88d0a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T08:55:41Z | 2002-11-08T18:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/AnnotationType.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
25,914 | Bug 25914 Method signature refactor does not update Outline | I used the refactoring utility to change the type of one of the params in an interface. The utility completed successfully, but did not update the Outline window, which still shows the old signature. | verified fixed | 1e17bfb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T13:36:19Z | 2002-11-08T18:26:40Z | org.eclipse.jdt.ui/ui | |
25,914 | Bug 25914 Method signature refactor does not update Outline | I used the refactoring utility to change the type of one of the params in an interface. The utility completed successfully, but did not update the Outline window, which still shows the old signature. | verified fixed | 1e17bfb | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T13:36:19Z | 2002-11-08T18:26:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeSignatureInputPage.java | |
22,533 | Bug 22533 [runtime] Preferences.contains() returns false even if property has been set | Build: 20020819 0. get store (instance of org.eclipse.core.runtime.Preferences) 1. use store.setValue('key', false); 2. use store.contains('key'); ==> returns false which is a severe bug in my opinion. Reason for the bug is that the key is removed from the store if the value is the same as the default value [ok]. There... | resolved wontfix | 59857ba | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T14:08:13Z | 2002-08-19T15:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/CustomFiltersActionGroup.java | |
25,794 | Bug 25794 Buttons cut off in externalize strings dialog | I20021031 Linux/Motif. Open the Translate Strings dialog on a Java file. "Translate" is cut off at the top "Edit Key" is cut off at the bottom. | verified fixed | fd87172 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T14:37:14Z | 2002-11-06T19:13:20Z | org.eclipse.jdt.ui/ui | |
25,794 | Bug 25794 Buttons cut off in externalize strings dialog | I20021031 Linux/Motif. Open the Translate Strings dialog on a Java file. "Translate" is cut off at the top "Edit Key" is cut off at the bottom. | verified fixed | fd87172 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T14:37:14Z | 2002-11-06T19:13:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java | |
25,900 | Bug 25900 NPE in CompilationUnitEditor | Build I20021105++ - load JUnit - expand a CU - delete CU on disk - select a field of expanded CU - open type hierarchy ==> you get an editor saying that the file doesn't exist on disk - close editor java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.LinePainter.drawHighlightLine (LinePainter.java:... | verified fixed | 4618b77 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T15:04:55Z | 2002-11-08T15:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
25,900 | Bug 25900 NPE in CompilationUnitEditor | Build I20021105++ - load JUnit - expand a CU - delete CU on disk - select a field of expanded CU - open type hierarchy ==> you get an editor saying that the file doesn't exist on disk - close editor java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.LinePainter.drawHighlightLine (LinePainter.java:... | verified fixed | 4618b77 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T15:04:55Z | 2002-11-08T15:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/IPainter.java | package org.eclipse.jdt.internal.ui.javaeditor;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
public interface IPainter {
/** Paint reasons */
int SELECTION= 0;
int TEXT_CHANGE= 1;
int KEY_STROKE= 2;
int MOUSE_BUTTON= 4;
int INTERNAL= 8;
int CONFIGURATION= 16;
void dispose()... |
25,830 | Bug 25830 JUnit plugin does not run using JDK 1.1.8 | Eclipse will allow you to specify JDK 1.1.8 a JRE for running code. This is quite useful for those developing code for environments that don't support Java 2, such as some browser VMs. However, the JUnit plugin does not work with the JDK 1.1.8 because the RemoteTestRunner uses classes that aren't available in that VM. ... | resolved fixed | 8562a30 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-11T22:41:01Z | 2002-11-07T14:40:00Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/runner/RemoteTestRunner.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.junit.runner;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.io.StringWriter;
impo... |
25,870 | Bug 25870 Code assist for comments doesn't add new line character. | Eclipse's code assist for comment and javadoc doesn't add a line feed character to the second line of comment, it adds only carriage return character. Since other editors do not treat carriage return itself as a line feed, line nubmers for the source will appear differently between eclipse and other editors. HOW TO REP... | resolved fixed | ca33a59 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-12T09:15:34Z | 2002-11-08T01:46: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 java.text.BreakIterator;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.BadLocationException;
import org... |
25,737 | Bug 25737 Control+PERIOD does not navigate to next warning | If my CU has only Warnings, Control+PERIOD does not work. Why is this? On the ? Toolbar it is labeled "Next Problem". I am trying to fix warnings indicated by JDT's compiler such as non-externalized strings, and by CheckStyle. This Action should still be enabled when there are warning in the CU. | verified fixed | 4d5bc43 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-12T10:53:58Z | 2002-11-05T18:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaMarkerAnnotation.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
26,019 | Bug 26019 Deleting default package gives blank string in message | build I20021105 - in Package Explorer, select a default package - hit Delete - dialog box message is: Are you sure you want to delete ''? It should use the same text as shown in the view: Are you sure you want to delete '(default package)'? | verified fixed | 2733ebc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-12T10:55:53Z | 2002-11-12T05:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/DeleteResourcesAction.java | package org.eclipse.jdt.internal.ui.reorg;
import java.text.MessageFormat;
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.Er... |
25,137 | Bug 25137 Paste enabled with deleted file on clipboard [ccp] | null | verified fixed | 943bf11 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-13T15:22:56Z | 2002-10-21T19:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/PasteResourcesFromClipboardAction.java | package org.eclipse.jdt.internal.ui.reorg;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.swt.dnd.Clipboard;
import org.eclipse.swt.dnd.FileTransfer;
import ... |
25,729 | Bug 25729 Java editor opening up build.xml | Using Java editor to open .xml usually works. But when opening Ant build file (build.xml), it gives the NullPointerException and the IDE no longer works. !ENTRY org.eclipse.ui 4 4 Nov 05, 2002 09:28:39.131 !MESSAGE Unhandled exception caught in event loop. !ENTRY org.eclipse.ui 4 0 Nov 05, 2002 09:28:39.131 !MESSAGE ja... | verified fixed | d4a10a7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-13T16:21:13Z | 2002-11-05T15:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
26,287 | Bug 26287 NPE in Javadoc wizard | !ENTRY org.eclipse.ui 4 4 Nov 14, 2002 14:19:00.445 !MESSAGE Unhandled exception caught in event loop. !ENTRY org.eclipse.ui 4 0 Nov 14, 2002 14:19:00.485 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javadocexport.JavadocStandardWizardPage.findReferen ce... | resolved fixed | 0f49685 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-14T16:59:21Z | 2002-11-14T13: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... |
26,354 | Bug 26354 Errors Deleting packages in PackageExplorer | null | resolved fixed | 9cc0e77 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-14T17:33:13Z | 2002-11-14T16:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageFragmentProvider.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... |
26,289 | Bug 26289 JUnit: Exceptions when add new JUnit launch config | Build 20021113 1. Create Java project called JUnit and import JUnit 2. Press Run... from running man button 3. Select JUnit and press New 4. Press Search ==> nothing happens except an exception being written to .log (see attached file) | resolved fixed | 7a38577 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-14T17:51:53Z | 2002-11-14T13:20:00Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitMainTab.java | package org.eclipse.jdt.internal.junit.launcher;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.lang.reflect.InvocationTargetException;
import java.net.MalformedURLException;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
impor... |
26,377 | Bug 26377 Editor copy/paste not working when replacing code | Build 20021114 Attempting to replace some text with clipboard content, it ends up overriding the prefix of the target text only (target is larger than clipboard): select 'argSlotSize' and paste it over selected word argSlotSizeze . It will leave some of the selected word in. testcase: package p; public class Y { static... | resolved fixed | 7c5bb4e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-14T18:00:26Z | 2002-11-14T18:53:20Z | 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 java.util.Iterator;
import java.util.NoSuchElementException;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.t... |
25,203 | Bug 25203 ACC: JUnit gui is not accessible [junit] | 1) JUnit GUI is not screen reader accessible (can't read w/ MS Inspect or JAWS) 2) Moderately keyboard accessible........can't move between different areas without the use of the mouse | resolved fixed | 9688a3f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-14T23:26:48Z | 2002-10-22T15:20:00Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/CounterPanel.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.junit.ui;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.DisposeEvent;
import org.eclipse.swt.events.DisposeListener;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.layout.GridData;
import ... |
25,479 | Bug 25479 Open Type Dialog causes CPU to churn | Eclipse 2.0.1 & 2.1, Windows 2000 & Windows NT When I open the Open Type Dialog, my CPU is pegged for as long as the dialog is open. Not sure what it is doing in there, but it seems unlikely that it needs to work that hard just sitting open. -Andrew | resolved fixed | 06bf6d2 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T11:06:27Z | 2002-10-29T00:06:40Z | 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.List;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.s... |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_33/in/A.java | |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_33/out/A.java | |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_33/out/I.java | |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.ui.tests.refactoring/test | |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | cases/org/eclipse/jdt/ui/tests/refactoring/MoveInnerToTopLevelTests.java | |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.ui/core | |
26,252 | Bug 26252 "Move to Top Level..." fails with stacktrace [refactoring] | I20021113 Performing "Refactor->Move to Top Level..." results in the following stacktrace: java.lang.reflect.InvocationTargetException at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:106) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.ja... | resolved fixed | c09faf4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T15:27:43Z | 2002-11-14T10:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveInnerToTopRefactoring.java | |
25,284 | Bug 25284 Open Type Dialog Box doesn't persist new size | Open the Open Type dialog box and resize the window. Close the box and open again, the size isn't remembers. | resolved fixed | fadcaea | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T16:17:10Z | 2002-10-23T21:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/OpenTypeSelectionDialog.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.dialogs;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.operation.IRunnableContext;
import org.eclipse.ui.help.WorkbenchHelp;
import org.eclips... |
26,453 | Bug 26453 Use of extracted constant should be qualified by class name | When extracting a constant the constant should be qualified by the enclosing class name since its static. e.g. return "foo"; replaced by return Enclosing.FOO_CONSTANTS | resolved fixed | d3b545a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T16:58:09Z | 2002-11-15T11:33:20Z | org.eclipse.jdt.ui/core | |
26,453 | Bug 26453 Use of extracted constant should be qualified by class name | When extracting a constant the constant should be qualified by the enclosing class name since its static. e.g. return "foo"; replaced by return Enclosing.FOO_CONSTANTS | resolved fixed | d3b545a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T16:58:09Z | 2002-11-15T11:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractConstantRefactoring.java | |
26,453 | Bug 26453 Use of extracted constant should be qualified by class name | When extracting a constant the constant should be qualified by the enclosing class name since its static. e.g. return "foo"; replaced by return Enclosing.FOO_CONSTANTS | resolved fixed | d3b545a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T16:58:09Z | 2002-11-15T11:33:20Z | org.eclipse.jdt.ui/ui | |
26,453 | Bug 26453 Use of extracted constant should be qualified by class name | When extracting a constant the constant should be qualified by the enclosing class name since its static. e.g. return "foo"; replaced by return Enclosing.FOO_CONSTANTS | resolved fixed | d3b545a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T16:58:09Z | 2002-11-15T11:33:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/ExtractConstantInputPage.java | |
24,674 | Bug 24674 "try" template should use printStackTrace() | By default the "try" template is defined as: try { ${cursor} } catch (${Exception} e) { } It should probably use printStackTrace(), for example: try { ${cursor} } catch (${Exception} e) { e.printStackTrace(); } When you are not sure how to handle an exception, sending printStackTrace() is a useful best practice. Failin... | resolved fixed | 67e7ee7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T17:07:09Z | 2002-10-10T20:00:00Z | org.eclipse.jdt.ui/core | |
24,674 | Bug 24674 "try" template should use printStackTrace() | By default the "try" template is defined as: try { ${cursor} } catch (${Exception} e) { } It should probably use printStackTrace(), for example: try { ${cursor} } catch (${Exception} e) { e.printStackTrace(); } When you are not sure how to handle an exception, sending printStackTrace() is a useful best practice. Failin... | resolved fixed | 67e7ee7 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T17:07:09Z | 2002-10-10T20:00:00Z | extension/org/eclipse/jdt/internal/corext/template/java/JavaContextType.java | |
26,495 | Bug 26495 inline constant inlines too many occurences | public class A { static final String D= B.G; void f(){ String s= B.G; } } class B{ static final String G= "FRED"; } | resolved fixed | db07fc1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T20:02:55Z | 2002-11-15T17:06:40Z | org.eclipse.jdt.ui/ui | |
26,495 | Bug 26495 inline constant inlines too many occurences | public class A { static final String D= B.G; void f(){ String s= B.G; } } class B{ static final String G= "FRED"; } | resolved fixed | db07fc1 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-15T20:02:55Z | 2002-11-15T17:06:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/InlineConstantInputPage.java | |
25,014 | Bug 25014 JUnit TestCase Wizard accepts empty string as test case name[junit] | Version: 2.0 Build id: 200210161553 The JUnit TestCase wizard accepts empty string as the test case name when there is no Java class currently selected. Steps for reproducing the error: 1 - Ensure there is no class currently selected in the Package Explorer (e.g. select a package or project); 2 - Activate New JUnit Tes... | resolved fixed | d07b140 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-16T20:02:02Z | 2002-10-17T18:40:00Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/NewTestCaseCreationWizardPage.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.junit.wizards;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.ListIterator;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.run... |
26,380 | Bug 26380 GUI bloopers: Navigate > Go To > Referring Tests | null | resolved fixed | d825124 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-16T22:09:27Z | 2002-11-14T18:53:20Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/TestMethodSelectionDialog.java | package org.eclipse.jdt.internal.junit.ui;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.lang.reflect.InvocationTargetException;
import java.util.HashSet;
import java.util.Set;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.ResourcesPlugin;
import ... |
26,257 | Bug 26257 JUnit: New Test Case wizard generates code which does not compile | Build 20021113 This might be intentional: when I choose to generate the main class then the generate code contains a compile error: public static void main(String[] args) { junit.textui.TestRunner.run(TestCaseTest.suite()); } TestCaseTest.suite() does not exist. | resolved fixed | 8edde36 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-16T23:37:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/MethodStubsSelectionButtonGroup.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.junit.wizards;
import org.eclipse.jdt.internal.junit.util.*;
import org.eclipse.jface.util.Assert;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.SelectionList... |
26,231 | Bug 26231 Editor on method must be opened in order to delete it from the Members context menu. [refactoring] | Select a method in the Members pane on a class that is /not/ being edited. Open the context menu and the "Delete" operation is disabled. Workaround: Double click the method which opens it in an editor, /then/ you can open the context menu and choose "Delete". IMHO, I should not be forced to perform this extra step. Bui... | resolved fixed | e81a481 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T14:14:08Z | 2002-11-14T02:13:20Z | org.eclipse.jdt.ui/core | |
26,231 | Bug 26231 Editor on method must be opened in order to delete it from the Members context menu. [refactoring] | Select a method in the Members pane on a class that is /not/ being edited. Open the context menu and the "Delete" operation is disabled. Workaround: Double click the method which opens it in an editor, /then/ you can open the context menu and choose "Delete". IMHO, I should not be forced to perform this extra step. Bui... | resolved fixed | e81a481 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T14:14:08Z | 2002-11-14T02:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/DeleteRefactoring.java | |
26,382 | Bug 26382 Exception renaming source folder [refactoring] | Build 20021113 Linux-GTK In the packages view, I right clicked on a source folder and choose "Refactor->Rename" and renamed my plug-in's only source folder from "src-editorlist" to "src". A dialog popped up many times: Title: Reorganize Message: Unexpected exception. See log for details Reason: src-editorlist [in Edito... | resolved fixed | 39c411b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T14:21:02Z | 2002-11-14T18:53:20Z | org.eclipse.jdt.ui/core | |
26,382 | Bug 26382 Exception renaming source folder [refactoring] | Build 20021113 Linux-GTK In the packages view, I right clicked on a source folder and choose "Refactor->Rename" and renamed my plug-in's only source folder from "src-editorlist" to "src". A dialog popped up many times: Title: Reorganize Message: Unexpected exception. See log for details Reason: src-editorlist [in Edito... | resolved fixed | 39c411b | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T14:21:02Z | 2002-11-14T18:53:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/ReorgRefactoring.java | |
26,451 | Bug 26451 refactoring pref page: use groups for accessibility | 20021114 | resolved fixed | 8040fa3 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T14:30:22Z | 2002-11-15T08:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/RefactoringPreferencePage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.preferences;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.jface.preference.BooleanFieldEditor;
import org.eclipse.jface.preference.FieldEditor;
import org.eclipse.jface.preference.FieldEditorPref... |
26,357 | Bug 26357 Change Method Signature: displays error message on input page when table cell edit mode is entered then exitted | When a table cell (in the editable table of parameters) enters the editing state (i.e. when a caret appears in the cell), and then exits the editing state, an error message is displayed near the top of the wizard page saying "No parameters were modified, reordered or added, the visibility and return type are unchanged.... | resolved fixed | 58cbf14 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T15:45:20Z | 2002-11-14T16:06:40Z | org.eclipse.jdt.ui/core | |
26,357 | Bug 26357 Change Method Signature: displays error message on input page when table cell edit mode is entered then exitted | When a table cell (in the editable table of parameters) enters the editing state (i.e. when a caret appears in the cell), and then exits the editing state, an error message is displayed near the top of the wizard page saying "No parameters were modified, reordered or added, the visibility and return type are unchanged.... | resolved fixed | 58cbf14 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T15:45:20Z | 2002-11-14T16:06:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java | |
26,357 | Bug 26357 Change Method Signature: displays error message on input page when table cell edit mode is entered then exitted | When a table cell (in the editable table of parameters) enters the editing state (i.e. when a caret appears in the cell), and then exits the editing state, an error message is displayed near the top of the wizard page saying "No parameters were modified, reordered or added, the visibility and return type are unchanged.... | resolved fixed | 58cbf14 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T15:45:20Z | 2002-11-14T16:06:40Z | org.eclipse.jdt.ui/ui | |
26,357 | Bug 26357 Change Method Signature: displays error message on input page when table cell edit mode is entered then exitted | When a table cell (in the editable table of parameters) enters the editing state (i.e. when a caret appears in the cell), and then exits the editing state, an error message is displayed near the top of the wizard page saying "No parameters were modified, reordered or added, the visibility and return type are unchanged.... | resolved fixed | 58cbf14 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T15:45:20Z | 2002-11-14T16:06:40Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeSignatureInputPage.java | |
26,599 | Bug 26599 BadLocationException in JavaAutoIndentStrategy | I20021115: - Open the Java editor - select/copy a couple of lines with soem indentation - select all lines and delete them - paste them into the empty editor -> JavaAutoIndentStrategy.calcShiftBackReplace: BadLocationException | resolved fixed | 5324298 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T18:42:29Z | 2002-11-18T17:20: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 java.util.Iterator;
import java.util.NoSuchElementException;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.t... |
26,547 | Bug 26547 Automatic closing of strings is not smart enough | Trying to add strings around an existing identifier is highly annoying when the Automatically close Strings option is set. For example, when I try to add Strings around: System.out.println(a) before a then I get two quotes. I suggest the rule to not close a string when there is a letter that belongs to an identifier to... | resolved fixed | 7992adc | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-18T19:00:39Z | 2002-11-16T18:06:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
25,768 | Bug 25768 Package Explorer flashes too much on refresh and delete | build I20021105 - extracted a zip containing 22 non-Java files (.mxsd files from Dejan) into org.eclipse.ui - in Package Explorer, refreshed org.eclipse.ui - it flashed alot while refreshing - selected the 22 files and deleted them - it flashed even more | resolved fixed | 8d149b4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:02:14Z | 2002-11-06T13:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerContentProvider.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.packageview;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IResourceDelta;
import org.eclipse.swt.widg... |
25,827 | Bug 25827 Disposing of MemberFilterActionGroup | Build 2.0.2 and 2.1 When investigating an editor memory leak PR we found out that this group has a dispose method which is never called. When we then called from the editor it throw an exeption (viewer was disposed). Don't know if the group really needs dispose() if so it should get called. | resolved fixed | 4534791 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:46:11Z | 2002-11-07T14:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/MembersView.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.browsing;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.uti... |
25,827 | Bug 25827 Disposing of MemberFilterActionGroup | Build 2.0.2 and 2.1 When investigating an editor memory leak PR we found out that this group has a dispose method which is never called. When we then called from the editor it throw an exeption (viewer was disposed). Don't know if the group really needs dispose() if so it should get called. | resolved fixed | 4534791 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:46:11Z | 2002-11-07T14:40:00Z | 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.custom.BusyIndicator;
import org.eclipse.s... |
25,827 | Bug 25827 Disposing of MemberFilterActionGroup | Build 2.0.2 and 2.1 When investigating an editor memory leak PR we found out that this group has a dispose method which is never called. When we then called from the editor it throw an exeption (viewer was disposed). Don't know if the group really needs dispose() if so it should get called. | resolved fixed | 4534791 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:46:11Z | 2002-11-07T14:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.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... |
25,827 | Bug 25827 Disposing of MemberFilterActionGroup | Build 2.0.2 and 2.1 When investigating an editor memory leak PR we found out that this group has a dispose method which is never called. When we then called from the editor it throw an exeption (viewer was disposed). Don't know if the group really needs dispose() if so it should get called. | resolved fixed | 4534791 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:46:11Z | 2002-11-07T14:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.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.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.ScrollBa... |
25,827 | Bug 25827 Disposing of MemberFilterActionGroup | Build 2.0.2 and 2.1 When investigating an editor memory leak PR we found out that this group has a dispose method which is never called. When we then called from the editor it throw an exeption (viewer was disposed). Don't know if the group really needs dispose() if so it should get called. | resolved fixed | 4534791 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:46:11Z | 2002-11-07T14:40:00Z | 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... |
25,827 | Bug 25827 Disposing of MemberFilterActionGroup | Build 2.0.2 and 2.1 When investigating an editor memory leak PR we found out that this group has a dispose method which is never called. When we then called from the editor it throw an exeption (viewer was disposed). Don't know if the group really needs dispose() if so it should get called. | resolved fixed | 4534791 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T09:46:11Z | 2002-11-07T14:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/MemberFilterActionGroup.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... |
26,272 | Bug 26272 Add _$ to list of prefixes for field getter/setter creation [code manipulation] | A common convention is to use _ for instance variables and _$ for static instance variables. Although _ will be stripped by default, it would be useful if _$ was also in the list. Of course, this is settable for individual users (which I've already done) but since it is not an uncommon coding convention (and won't harm... | verified fixed | b60bab9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T11:00:19Z | 2002-11-14T13:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.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 v1.0
* which accompanies this... |
26,481 | Bug 26481 Working Set Selection (Java only) is unuseably slow. [filters] | When I try to create a new Working Set in 2.1 M2, as soon as I expand a project in the tree view, my CPU is pegged for ~1minute. Typing in the "Name" box is incredibly slow. In short, it is nearly unuseable because it is so slow too respond. Win NT, 512MB, ~2400 classes in workspace (split evenly over 2 projects). -And... | resolved fixed | 67b1d3f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T11:26:17Z | 2002-11-15T14:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/JavaWorkingSetPage.java | |
26,271 | Bug 26271 Link-Like navigation: Pixel not removed | 20021113 1. Create class public class A { private void fill(StringBuffer buffer, String s) { buffer.append(s); } } 2. CTRL pressed all the time 3. move the mouse over 'append' 4. While still presing CTRL go over 's' (same line) 5. You can see that there is still a blue pixel under 'append' | resolved fixed | 48770ef | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T15:21:04Z | 2002-11-14T13:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
26,262 | Bug 26262 link hover - paints 'assert' blue | 20021113 open junit Assert class hover over the 'assert' word in the following method (with ctrl pressed) static public void assert(String message, boolean condition) { if (!condition) fail(message); } note that 'assert' stays blue even after you move the mouse somewhere else (it does not seem to happen for any other w... | resolved fixed | 758d8a8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2002-11-19T16:16:43Z | 2002-11-14T10:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCodeScanner.java | /**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.