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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
26,186 | Bug 26186 Java preference page should use group bpxes instead of labels | 20021113 The labels on the Radio groups in the JavaPreferencePage will not be read by screen readers. Use Group boxes instead. Also an issue for the Code Generation, New Project and Refactoring Page. | resolved fixed | 702a1e6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-06T18:12:53Z | 2002-11-13T20:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NewJavaProjectPreferencePage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
// AW
package org.eclipse.jdt.internal.ui.preferences;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.NoSuchElementException;
import java.util.StringTokenizer;
import org.eclipse.core.resources.... |
27,801 | Bug 27801 Change the way external JARs are presented in Package Explorer | External JARs are currently presented in Package Explorer using their full path. This causes a problem in cases where this path is long (e.g. self- hosting). With the standard view widths, the most important part of the path (library name) is clipped and users have to scroll or move the mouse over to see the tool tip. ... | resolved fixed | b4c4551 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T12:47:45Z | 2002-12-05T20:26: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.jface.preference.IPreferenceStore;
import org.eclipse.ui.model.IWorkbenchAdapter;
import org.eclipse.jdt.core.IClassFile;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.ICompilat... |
21,047 | Bug 21047 code formatter availability inconsistent | Sometimes the hotkey (ctrl-shift-f) and the menu entry for formatting the source code are disabled, while the entry in the context menu is enabled and works as expected. I didn't find any patterns on when this occurs till now. | resolved fixed | ede408a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T14:01:43Z | 2002-06-27T09:26: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... |
28,875 | Bug 28875 Refactor - Change method signature [refactoring] | I tried it, and this is what I got in the log : java.lang.reflect.InvocationTargetException: java.lang.ClassCastException: org.eclipse.jdt.internal.core.SourceField at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring .getMethod(ChangeSignatureRefactoring.java:1081) at org.eclipse.jdt.int... | resolved fixed | 89c1e22 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T14:34:06Z | 2002-12-26T13:40:00Z | org.eclipse.jdt.ui/core | |
28,875 | Bug 28875 Refactor - Change method signature [refactoring] | I tried it, and this is what I got in the log : java.lang.reflect.InvocationTargetException: java.lang.ClassCastException: org.eclipse.jdt.internal.core.SourceField at org.eclipse.jdt.internal.corext.refactoring.structure.ChangeSignatureRefactoring .getMethod(ChangeSignatureRefactoring.java:1081) at org.eclipse.jdt.int... | resolved fixed | 89c1e22 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T14:34:06Z | 2002-12-26T13:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java | |
28,869 | Bug 28869 Parse error with final local vars without immediate assignment | Consider this prototype code: void foo() { final PreparedStatement statement; try { statement = xxx.prepareStatement(...) } catch (..) { // handle errors } return statement; } For this kind of thing I often use a final local variable - mostly to enable the compiler to find my errors (like assigning more than once). How... | verified fixed | a58f54a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T17:13:55Z | 2002-12-25T09:53:20Z | org.eclipse.jdt.ui/core | |
28,869 | Bug 28869 Parse error with final local vars without immediate assignment | Consider this prototype code: void foo() { final PreparedStatement statement; try { statement = xxx.prepareStatement(...) } catch (..) { // handle errors } return statement; } For this kind of thing I often use a final local variable - mostly to enable the compiler to find my errors (like assigning more than once). How... | verified fixed | a58f54a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T17:13:55Z | 2002-12-25T09:53:20Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/OrganizeImportsOperation.java | |
28,869 | Bug 28869 Parse error with final local vars without immediate assignment | Consider this prototype code: void foo() { final PreparedStatement statement; try { statement = xxx.prepareStatement(...) } catch (..) { // handle errors } return statement; } For this kind of thing I often use a final local variable - mostly to enable the compiler to find my errors (like assigning more than once). How... | verified fixed | a58f54a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T17:13:55Z | 2002-12-25T09:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OrganizeImportsAction.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... |
28,250 | Bug 28250 opening a file calls getImage 2 times on packageExplorer's label provider [package explorer] | 20021210 what is the reason for the package explorer to update its labels on opening/closing files? No resource has changed, nothing really happened - but stuff gets updated anyhow. it's called twice on opening and once on closing closing: Thread [main] (Suspended (breakpoint at line 67 in org.eclipse.jface.viewers.Dec... | resolved fixed | 655a6c0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-07T21:16:05Z | 2002-12-13T11:46:40Z | 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... |
29,165 | Bug 29165 exception when deleting a class in I20030107 (win2k) | steps to reproduce the exception : - selected class in package explorer - selected delete in contextmenu | resolved fixed | dd38a97 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:07:05Z | 2003-01-08T21:06:40Z | 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... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/astrewrite/ASTRewritingMoveCodeTest.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... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/astrewrite/ASTRewritingTypeDeclTest.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... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/AssistQuickFixTest.java | package org.eclipse.jdt.ui.tests.quickfix;
import java.util.ArrayList;
import java.util.Hashtable;
import org.eclipse.swt.graphics.Point;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.Document;
import org.eclipse.j... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40: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... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedMethodsQuickFixTest.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... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/UnresolvedVariablesQuickFixTest.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... |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | org.eclipse.jdt.ui/core | |
25,152 | Bug 25152 Code format too tight when creating a missing method [code manipulation] | When you choose the quick fix 'create method', the code generated butts up below the method without a new line: } /** * Method precompile. */ private void precompile() { } instead of: } /** * Method precompile. */ private void precompile() { } | resolved fixed | 027c529 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T09:53:35Z | 2002-10-21T22:40:00Z | extension/org/eclipse/jdt/internal/corext/dom/ASTRewriteAnalyzer.java | |
29,161 | Bug 29161 Quickfix can't fix a simple fix [quick fix] | If I have a class like this: public class Foo { private static final String BAR = "bar"; public Foo () { System.out.println(this.BAR); } } There's a light bulb on the 'this.BAR' line, which says "The static field Foo.BAR should be accessed in a static way", but says "No corrections available" when I click on it. The fi... | resolved fixed | c3ce08e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T11:31:10Z | 2003-01-08T18: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... |
29,161 | Bug 29161 Quickfix can't fix a simple fix [quick fix] | If I have a class like this: public class Foo { private static final String BAR = "bar"; public Foo () { System.out.println(this.BAR); } } There's a light bulb on the 'this.BAR' line, which says "The static field Foo.BAR should be accessed in a static way", but says "No corrections available" when I click on it. The fi... | resolved fixed | c3ce08e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T11:31:10Z | 2003-01-08T18: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... |
29,156 | Bug 29156 Highlight all occurances of local Java variable | Sorry if this is a duplicate of the one I wrote this morning as I did not get any confirmation. My browser didn't show the confirmation either. Earlier I had requested this feature and I was told that API did not support this kind of search. I recently discovered CTL-1 mechanism and found that it allowed me to rename l... | resolved fixed | f87a738 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T11:44:56Z | 2003-01-08T18:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/JavaCorrectionProcessor.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... |
29,091 | Bug 29091 Protected method created when overridding public method from super class | M4 Using org.eclipse.jdt.internal.debug.ui.launcher.MainTypeSelectionDialog, override TwoPaneElementSelector#createDialogArea(Composite) createDialogArea is created but is has protected visibility. I believe it should have public visibility as TwoPaneElementSelector#createDialogArea(Composite) is public and one cannot ... | resolved fixed | 2be043e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T14:47:38Z | 2003-01-07T17:20:00Z | org.eclipse.jdt.ui/core | |
29,091 | Bug 29091 Protected method created when overridding public method from super class | M4 Using org.eclipse.jdt.internal.debug.ui.launcher.MainTypeSelectionDialog, override TwoPaneElementSelector#createDialogArea(Composite) createDialogArea is created but is has protected visibility. I believe it should have public visibility as TwoPaneElementSelector#createDialogArea(Composite) is public and one cannot ... | resolved fixed | 2be043e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T14:47:38Z | 2003-01-07T17:20:00Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/AddMethodStubOperation.java | |
29,091 | Bug 29091 Protected method created when overridding public method from super class | M4 Using org.eclipse.jdt.internal.debug.ui.launcher.MainTypeSelectionDialog, override TwoPaneElementSelector#createDialogArea(Composite) createDialogArea is created but is has protected visibility. I believe it should have public visibility as TwoPaneElementSelector#createDialogArea(Composite) is public and one cannot ... | resolved fixed | 2be043e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T14:47:38Z | 2003-01-07T17:20:00Z | org.eclipse.jdt.ui/core | |
29,091 | Bug 29091 Protected method created when overridding public method from super class | M4 Using org.eclipse.jdt.internal.debug.ui.launcher.MainTypeSelectionDialog, override TwoPaneElementSelector#createDialogArea(Composite) createDialogArea is created but is has protected visibility. I believe it should have public visibility as TwoPaneElementSelector#createDialogArea(Composite) is public and one cannot ... | resolved fixed | 2be043e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T14:47:38Z | 2003-01-07T17:20:00Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java | |
29,091 | Bug 29091 Protected method created when overridding public method from super class | M4 Using org.eclipse.jdt.internal.debug.ui.launcher.MainTypeSelectionDialog, override TwoPaneElementSelector#createDialogArea(Composite) createDialogArea is created but is has protected visibility. I believe it should have public visibility as TwoPaneElementSelector#createDialogArea(Composite) is public and one cannot ... | resolved fixed | 2be043e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T14:47:38Z | 2003-01-07T17:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodStubCompletionProposal.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... |
29,078 | Bug 29078 Completion for anonymous inner class results in syntax error | 1) enable smart brackets 2) type in Runnable runnable= new Runnable(<code assist>) ->you get the code below with one superflus parenthesis: Runnable runnable= new Runnable() { public void run() { } }) | resolved fixed | 649753e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T15:31:11Z | 2003-01-07T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.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... |
29,078 | Bug 29078 Completion for anonymous inner class results in syntax error | 1) enable smart brackets 2) type in Runnable runnable= new Runnable(<code assist>) ->you get the code below with one superflus parenthesis: Runnable runnable= new Runnable() { public void run() { } }) | resolved fixed | 649753e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T15:31:11Z | 2003-01-07T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaTypeCompletionProposal.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... |
29,078 | Bug 29078 Completion for anonymous inner class results in syntax error | 1) enable smart brackets 2) type in Runnable runnable= new Runnable(<code assist>) ->you get the code below with one superflus parenthesis: Runnable runnable= new Runnable() { public void run() { } }) | resolved fixed | 649753e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T15:31:11Z | 2003-01-07T11:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/MethodStubCompletionProposal.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... |
29,003 | Bug 29003 Preferences 'Output Folder Name' needs to allow '/' in the path [build path] | In the window/preferences/Java/New Project panel, when 'Folders' radio button is set, the 'output folder name' cannot be set to something like 'WEB- INF/classes'. The error message "'/' is an invalid character" appears. However, when setting the output path on the project (project/properties), 'WEB- INF/classes' is all... | resolved fixed | d30c738 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T16:07:03Z | 2003-01-04T14:20:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NewJavaProjectPreferencePage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
// AW
package org.eclipse.jdt.internal.ui.preferences;
import java.net.URLDecoder;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.NoSuchElementException;
import java.util.StringTokenizer;
import org.eclipse.core.resources.... |
28,824 | Bug 28824 Quick Fix: Type Mismatch -> Cast bug [quick fix] | When using code assist to apply a cast to the following statement: DefaultMutableTreeNode root = getParentContainer().treeMapperTree.getModel ().getRoot(); You get: DefaultMutableTreeNode root = getParentContainer().(DefaultMutableTreeNode) treeMapperTree.getModel().getRoot(); When you should get: DefaultMutableTreeNod... | verified fixed | af53044 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-09T16:45:21Z | 2002-12-23T10:40: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... |
29,272 | Bug 29272 Typo in warning | When renaming a method (refactoring) if you start the method name with an upper case letter, you get a warning of: "By convention, all names of methods start with uppercase letters" It should, of course, read: "By convention, all names of methods start with lowercase letters" | resolved fixed | ad0d061 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-10T09:03:35Z | 2003-01-10T09:13:20Z | org.eclipse.jdt.ui/core | |
29,272 | Bug 29272 Typo in warning | When renaming a method (refactoring) if you start the method name with an upper case letter, you get a warning of: "By convention, all names of methods start with uppercase letters" It should, of course, read: "By convention, all names of methods start with lowercase letters" | resolved fixed | ad0d061 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-10T09:03:35Z | 2003-01-10T09:13:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java | |
29,200 | Bug 29200 NPE from 'Occurences in File' | Found in my log (don't have the corresponding source anymore) java.lang.NullPointerException at org.eclipse.jdt.internal.ui.search.SearchUsagesInFileAction$NameUsagesFinder.mat ch(SearchUsagesInFileAction.java(Compiled Code)) at org.eclipse.jdt.internal.ui.search.SearchUsagesInFileAction$NameUsagesFinder.vis it(SearchU... | resolved fixed | a9e1a8f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-10T16:13:21Z | 2003-01-09T11:00:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchUsagesInFileAction.java | /*******************************************************************************
* Copyright (c) 2003 International Business Machines Corp. and others. All
* rights reserved. This program and the accompanying materials are made
* available under the terms of the Common Public License v0.5 which accompanies
* this d... |
28,267 | Bug 28267 55% of open type hiearchy spent in sorting [type hierarchy] | 20021210+latest 1213 junit workspace typehierarchy on Object 55% is spent in sorting | resolved fixed | c1dd284 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-13T11:01:47Z | 2002-12-13T14:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaElementAdapterFactory.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IAda... |
29,375 | Bug 29375 Search for reference gives strange results when references are in static initialisers [search] | [M4] When references to a class or method are in the static initialiser for a class (which is also in a package other than the default one) the results contain spurious nulls. Test case: package foo.bar; public class Test { static { new Test().toString(); } } Highlight "Test" (either place) and search for references in... | resolved fixed | b00b226 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-13T15:26:03Z | 2003-01-13T12:13:20Z | 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.core.runtime.IPath;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.ui.model.IWorkbenchAdapter;
import org.eclipse.jdt.core.IClassFile;
import org.eclipse.jdt.core.IClasspathEntry... |
29,170 | Bug 29170 False error feedback from "Show in package explorer" | Build 20030107 1. Open a .java file in the Java editor. 2. Click "Collapse All" in the packages view to collapse the tree. 3. Right click on the top-level type in the Outline view and choose "Show in Package Explorer" 4. The packages view correctly expands to the selected type, but an error dialog pops up: Title: "Show... | resolved fixed | 75ceea6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-14T08:05:09Z | 2003-01-08T21: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... |
29,405 | Bug 29405 NPE in SearchUtil.isBinaryPrimitive [search] | 20030107 Sorry, unsure of steps to reproduce but thought may be interesting none the less. java.lang.NullPointerException at org.eclipse.jdt.internal.ui.search.SearchUtil.isBinaryPrimitveConstantOrString (SearchUtil.java:429) at org.eclipse.jdt.internal.ui.search.SearchUtil.warnIfBinaryConstant (SearchUtil.java:416) at... | resolved fixed | 0771670 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-14T08:17:45Z | 2003-01-13T17:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/SearchUtil.java | /*
* (c) Copyright IBM Corp. 2000, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.search;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IResource;
import org.eclip... |
29,416 | Bug 29416 Cannot create Type if typecomment Template doesn't exist | Actual: Click on File/New/Interface (or Class). Type a name, and click Finish. Error dialog appears telling me to look in the log (stack trace below). Interface/Class file is created, but is completely empty. If I go to Preferences and create the "typecomment" template, this problem goes away Expected: Class/Interface ... | resolved fixed | 3b9ae18 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-14T09:16:55Z | 2003-01-13T23:20:00Z | 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... |
29,500 | Bug 29500 Cannot cancel organize imports | After selecting organize imports on my project (to reduce the 4175 warnings about unused imports I got when I upgraded to 2.1 M4), I decided that maybe this was going to take longer than I thought, so I tried to cancel the action. The cancel button on the dialog didn't to do anything. I can repeat this at will with my ... | resolved fixed | b3d6599 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-15T11:09:58Z | 2003-01-15T05:53:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OrganizeImportsAction.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... |
28,443 | Bug 28443 organize imports sometimes added to logical packages, sometimes not | 20021216 select a logical package - 'organize imports' is not in the context menu select the logical package and another package - organize imports is in the menu | resolved fixed | 5cd6316 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-15T16:24:56Z | 2002-12-17T10:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OrganizeImportsAction.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... |
28,269 | Bug 28269 type hierarchy makes work much slower even though it's invisible | 20021210 i had a big type hierarchy open but put in the background - behind the package explorer i added 1 type to the workspace boom - tyhe whole thing froze for 2 minutes because the type hierarchy was doing a lot of work that i did not ask for and no busy cursor it makes it quite impossible to work if you have a typ... | resolved fixed | 9a4499d | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T11:02:54Z | 2002-12-13T14: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... |
28,575 | Bug 28575 Hierarchy view updates items twice [type hierarchy] | null | resolved fixed | 2098c30 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T13:53:22Z | 2002-12-17T21:20: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... |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/core | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/rename/RenameTypeRefactoring.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/core | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/MoveRefactoring.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/core | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveStaticMembersRefactoring.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/core | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/util/QualifiedNameFinder.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/ui | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveMembersWizard.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/ui | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/RenameJavaElementAction.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/SelectionTransferDropAdapter.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.packageview;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.eclipse.swt.SWT;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.DropTargetEvent;
import org.eclips... |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/JdtMoveAction.java | package org.eclipse.jdt.internal.ui.reorg;
import java.lang.reflect.InvocationTargetException;
import java.util.Iterator;
import java.util.List;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.GridData;
import org... |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/reorg/ReorgDestinationAction.java | |
29,698 | Bug 29698 drag and drop of java files between packages in package explorer doesn't work | the <preview> <ok> <cancel> dialog shows up, but <ok> has the same effect as <cancel> and <preview> would only show movements of files and no changes in imports of other java files. on <ok> in the preview it only moves the file(s) (as indicated ) without changing referencing imports. | resolved fixed | 386c5c6 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T14:02:05Z | 2003-01-17T10:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/refactoring/RenameSupport.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... |
28,054 | Bug 28054 awkward to change default output folder | Build I20021210 1. Create a new Java project P1 On the Java Settings page hit the Browse next to Default output folder. Observe: The dialog is empty, shows an error "No entries available", and only allows Cancel. Expectation: As with other dialogs, it would be better if I had an opportunity to create folders at this ti... | resolved fixed | aa4b231 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T16:50:28Z | 2002-12-10T22:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewProjectCreationWizard.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExecutableExtens... |
28,054 | Bug 28054 awkward to change default output folder | Build I20021210 1. Create a new Java project P1 On the Java Settings page hit the Browse next to Default output folder. Observe: The dialog is empty, shows an error "No entries available", and only allows Cancel. Expectation: As with other dialogs, it would be better if I had an opportunity to create folders at this ti... | resolved fixed | aa4b231 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T16:50:28Z | 2002-12-10T22:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewProjectCreationWizardPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.co... |
28,054 | Bug 28054 awkward to change default output folder | Build I20021210 1. Create a new Java project P1 On the Java Settings page hit the Browse next to Default output folder. Observe: The dialog is empty, shows an error "No entries available", and only allows Cancel. Expectation: As with other dialogs, it would be better if I had an opportunity to create folders at this ti... | resolved fixed | aa4b231 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T16:50:28Z | 2002-12-10T22:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resourc... |
28,054 | Bug 28054 awkward to change default output folder | Build I20021210 1. Create a new Java project P1 On the Java Settings page hit the Browse next to Default output folder. Observe: The dialog is empty, shows an error "No entries available", and only allows Cancel. Expectation: As with other dialogs, it would be better if I had an opportunity to create folders at this ti... | resolved fixed | aa4b231 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T16:50:28Z | 2002-12-10T22:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/JavaCapabilityConfigurationPage.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... |
28,398 | Bug 28398 New Java Project Wizard: no source folder after using "Back" | Build 20021213 1. Start the new Java Project wizard 2. Enter "JUnix" 3. Press "Next" - see: there's a source folder 4. Press "Back" 5. Change project name to "JUnit" 6. Press "Next" ==> no source folder | resolved fixed | 046e710 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-17T17:03:57Z | 2002-12-16T17:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.eclipse.core.resources.IContainer;
import org.eclipse.c... |
25,068 | Bug 25068 Reuse editor in Search view causes the menubar to refresh a lot. | null | resolved fixed | b37b167 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-18T13:54:06Z | 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.core.runtime.CoreException;
import org.eclipse.swt.widge... |
29,726 | Bug 29726 New compiler setting added: OPTION_ReportIncompatibleNonInheritedInterfaceMethod | JavaCore#OPTION_ReportIncompatibleNonInheritedInterfaceMethod COMPILER / Reporting Interface Method not Compatible with non-Inherited Methods When enabled, the compiler will issue an error or a warning whenever an interface defines a method incompatible with a non-inherited Object one. - option id: "org.eclipse.jdt.cor... | resolved fixed | 1b01b65 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T09:39:58Z | 2003-01-17T16:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java | 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.Map;
import java.util.StringTokenizer;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.I... |
23,112 | Bug 23112 [search] need a way to search for references to the implicit non-arg constructor | i'd like to search for references to all constructors of a class - it's easy when the class has some declared construcotrs. the problem is that when the class does not declare any explicit constructors, you can still have (super()) references to the non-arg implicit constructor. but how do i search for these? | resolved wontfix | af4f733 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T15:30:02Z | 2002-09-03T13:33:20Z | org.eclipse.jdt.ui/core | |
23,112 | Bug 23112 [search] need a way to search for references to the implicit non-arg constructor | i'd like to search for references to all constructors of a class - it's easy when the class has some declared construcotrs. the problem is that when the class does not declare any explicit constructors, you can still have (super()) references to the non-arg implicit constructor. but how do i search for these? | resolved wontfix | af4f733 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T15:30:02Z | 2002-09-03T13:33:20Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ConstructorReferenceFinder.java | |
25,845 | Bug 25845 Support for manually attaching source to a class path container | From Dejan: There is a work item on the ability to manually attach source to classpath entries managed by classpath container. We discussed it and we have workable options but we would like if we can have it by M3 because we want to start self-hosting using classpath containers ourselves. | resolved fixed | 3eaf7d8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T17:30:52Z | 2002-11-07T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.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,845 | Bug 25845 Support for manually attaching source to a class path container | From Dejan: There is a work item on the ability to manually attach source to classpath entries managed by classpath container. We discussed it and we have workable options but we would like if we can have it by M3 because we want to start self-hosting using classpath containers ourselves. | resolved fixed | 3eaf7d8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T17:30:52Z | 2002-11-07T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/SourceAttachmentDialog.java | package org.eclipse.jdt.internal.ui.javaeditor;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.core.resources.ResourcesPlugin;
import... |
25,845 | Bug 25845 Support for manually attaching source to a class path container | From Dejan: There is a work item on the ability to manually attach source to classpath entries managed by classpath container. We discussed it and we have workable options but we would like if we can have it by M3 because we want to start self-hosting using classpath containers ourselves. | resolved fixed | 3eaf7d8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T17:30:52Z | 2002-11-07T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/SourceAttachmentPropertyPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.preferences;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclips... |
25,845 | Bug 25845 Support for manually attaching source to a class path container | From Dejan: There is a work item on the ability to manually attach source to classpath entries managed by classpath container. We discussed it and we have workable options but we would like if we can have it by M3 because we want to start self-hosting using classpath containers ourselves. | resolved fixed | 3eaf7d8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T17:30:52Z | 2002-11-07T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/LibrariesWorkbookPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources... |
25,845 | Bug 25845 Support for manually attaching source to a class path container | From Dejan: There is a work item on the ability to manually attach source to classpath entries managed by classpath container. We discussed it and we have workable options but we would like if we can have it by M3 because we want to start self-hosting using classpath containers ourselves. | resolved fixed | 3eaf7d8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T17:30:52Z | 2002-11-07T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceAttachmentBlock.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import ... |
25,845 | Bug 25845 Support for manually attaching source to a class path container | From Dejan: There is a work item on the ability to manually attach source to classpath entries managed by classpath container. We discussed it and we have workable options but we would like if we can have it by M3 because we want to start self-hosting using classpath containers ourselves. | resolved fixed | 3eaf7d8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T17:30:52Z | 2002-11-07T17:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceAttachmentDialog.java | |
26,927 | Bug 26927 JavaDoc generation is hard to find [javadoc] | Feedback on the mailing list and questions on the newsgroup indicate that the javadoc support is difficult to find. Proposal: Add a Generate Java Doc action to the Project menu. (we should also investigate whether we want to surface other actions in the Project menu, e.g. open the "Properties") | resolved fixed | 7f099a8 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T18:00:55Z | 2002-11-22T10:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/GenerateJavadocAction.java | |
28,510 | Bug 28510 java build path inconsistency [build path] | 20021216 select rt.jar in the package explorer open properties it allows you to set the javadoc location but for source attachment you are sent somewhere else it's inconsistent - on the java build path they both look sort of the same (they sit under the same node in the tree) | resolved fixed | bcd21c9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T18:15:37Z | 2002-12-17T15:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resourc... |
28,510 | Bug 28510 java build path inconsistency [build path] | 20021216 select rt.jar in the package explorer open properties it allows you to set the javadoc location but for source attachment you are sent somewhere else it's inconsistent - on the java build path they both look sort of the same (they sit under the same node in the tree) | resolved fixed | bcd21c9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T18:15:37Z | 2002-12-17T15:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/CPListElement.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.net.URL;
import java.util.HashMap;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.runtime.IPath;
import org.... |
28,510 | Bug 28510 java build path inconsistency [build path] | 20021216 select rt.jar in the package explorer open properties it allows you to set the javadoc location but for source attachment you are sent somewhere else it's inconsistent - on the java build path they both look sort of the same (they sit under the same node in the tree) | resolved fixed | bcd21c9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T18:15:37Z | 2002-12-17T15:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/LibrariesWorkbookPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources... |
28,510 | Bug 28510 java build path inconsistency [build path] | 20021216 select rt.jar in the package explorer open properties it allows you to set the javadoc location but for source attachment you are sent somewhere else it's inconsistent - on the java build path they both look sort of the same (they sit under the same node in the tree) | resolved fixed | bcd21c9 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-20T18:15:37Z | 2002-12-17T15:46:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.eclipse.core.resources.IContainer;
import org.eclipse.c... |
25,291 | Bug 25291 Can't browse JRE_LIB jar file when working set selected | I found that when I was using a working set I couldn't expand the JRE_LIB jar file in the package explorer. When I deselected the working set, it worked fine. | resolved fixed | 1791872 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-21T09:15:24Z | 2002-10-24T03:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetFilter.java | |
29,848 | Bug 29848 Add Javadoc Comment creates incorrect declaration [javadoc] | Create a subclass of TransferHandler. Override canImport. The Javadoc comment generated is "@see javax.swing.TransferHandler#canImport (javax.swing.JComponent, java.awt.datatransfer.DataFlavor)", but it shuold be "@see javax.swing.TransferHandler#canImport(javax.swing.JComponent, java.awt.datatransfer.DataFlavor [])" -... | resolved fixed | cbac6e0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-21T11:25:02Z | 2003-01-20T22:00:00Z | org.eclipse.jdt.ui/core | |
29,848 | Bug 29848 Add Javadoc Comment creates incorrect declaration [javadoc] | Create a subclass of TransferHandler. Override canImport. The Javadoc comment generated is "@see javax.swing.TransferHandler#canImport (javax.swing.JComponent, java.awt.datatransfer.DataFlavor)", but it shuold be "@see javax.swing.TransferHandler#canImport(javax.swing.JComponent, java.awt.datatransfer.DataFlavor [])" -... | resolved fixed | cbac6e0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-21T11:25:02Z | 2003-01-20T22:00:00Z | extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java | |
18,568 | Bug 18568 api: IType::getMethod - how to distinguish constructors in this case? | it is legal to have both a constructor and a method with the same signature however, IType::getMethod does lot let me distinguish between the 2 cases given this code: class A { public A() {} protected void A() {} } call to IType::getMethod("A", new String[0]) returns the constructor (and it does, as suspected, return t... | resolved wontfix | fc625ee | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-22T15:42:37Z | 2002-06-01T08:26:40Z | org.eclipse.jdt.ui/core | |
18,568 | Bug 18568 api: IType::getMethod - how to distinguish constructors in this case? | it is legal to have both a constructor and a method with the same signature however, IType::getMethod does lot let me distinguish between the 2 cases given this code: class A { public A() {} protected void A() {} } call to IType::getMethod("A", new String[0]) returns the constructor (and it does, as suspected, return t... | resolved wontfix | fc625ee | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-22T15:42:37Z | 2002-06-01T08:26:40Z | extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java | |
29,996 | Bug 29996 Java Browsing perspective is missing the Resource Navigation action set | build I20030115 The Java Browsing perspective is missing the Resource Navigation action set, although the Java perspective uses it. Just wondering if this was by design. | resolved fixed | 6ee1f2e | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-23T08:32:44Z | 2003-01-22T15:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPerspectiveFactory.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.browsing;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
import org.eclipse.ui.IPlaceholderFolderLayout;
import org.eclipse.debug.ui.IDe... |
30,005 | Bug 30005 Can't create linked source folder in new java project wizard [build path] | Build: I20030122 1) Open the new java project wizard 2) Enter a name, hit next 3) Click "Add Folder" on the "Source" tab. -> dialog comes up that doesn't have an option to create a new folder 4) Click cancel. Click "Browse" next to the output folder field -> this dialog allows you to create a new folder (even a linked ... | resolved fixed | 844dc6a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-23T09:25:43Z | 2003-01-22T18:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resourc... |
30,005 | Bug 30005 Can't create linked source folder in new java project wizard [build path] | Build: I20030122 1) Open the new java project wizard 2) Enter a name, hit next 3) Click "Add Folder" on the "Source" tab. -> dialog comes up that doesn't have an option to create a new folder 4) Click cancel. Click "Browse" next to the output folder field -> this dialog allows you to create a new folder (even a linked ... | resolved fixed | 844dc6a | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-23T09:25:43Z | 2003-01-22T18:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards.buildpaths;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.eclipse.core.resources.IContainer;
import org.eclipse.c... |
30,007 | Bug 30007 Can't hit next in new java project wizard [build path] [code manipulation] | Build: I20020122 1) Open the new java project wizard 2) Enter a name, hit next 3) Hit the back button 4) Deselect the "Use default" check box 5) Type in a location -> It won't let me hit next, because it claims the project already exists. 6) Click cancel -> The project doesn't exist. | resolved fixed | 17121d0 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-23T11:08:26Z | 2003-01-22T21:13:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewProjectCreationWizardPage.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.wizards;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.co... |
30,102 | Bug 30102 NamingConvention: Tests fail | 20030122 I changed our tests to use NamingConvention. There are failuers, please check. NameProposerTest in jdt.ui.tests | verified fixed | 91c5449 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-23T16:28:19Z | 2003-01-23T16:40:00Z | org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CoreTests.java | package org.eclipse.jdt.ui.tests.core;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
*/
public class CoreTests extends TestCase {
public static Test suite() {
TestSuite suite= new TestSuite();
suite.addTest(new TestSuite(AddImportTest.class));
suite.a... |
30,092 | Bug 30092 [browsing]Missing View Short cuts in the Java Browsing perspective | 1) in the Java Browsing Perspective 2) execute Window>Show View ->notice that the Views shown in the Browsing Perspective do not show up in the menu. You have to go to the Other... dialog. This should be changed (the perspective factory can define the corresponding short cuts), e.g. layout.addShowViewShortcut(IPageLayo... | resolved fixed | ecb31df | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-23T17:53:33Z | 2003-01-23T16:40:00Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/browsing/JavaBrowsingPerspectiveFactory.java | /*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.ui.browsing;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
import org.eclipse.ui.IPlaceholderFolderLayout;
import org.eclipse.debug.ui.IDe... |
30,235 | Bug 30235 [refactoring] Exception in Move method refactoring | JUnit setup. 1) Select TestResult runTest in the source 2) accept the default settings 3) finish (without preview) !ENTRY org.eclipse.jdt.ui 4 10001 Jan 26, 2003 00:37:57.355 !MESSAGE Internal Error !STACK 0 java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread(Modal... | resolved fixed | df97c0f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T12:15:29Z | 2003-01-26T00:13:20Z | org.eclipse.jdt.ui/ui | |
30,235 | Bug 30235 [refactoring] Exception in Move method refactoring | JUnit setup. 1) Select TestResult runTest in the source 2) accept the default settings 3) finish (without preview) !ENTRY org.eclipse.jdt.ui 4 10001 Jan 26, 2003 00:37:57.355 !MESSAGE Internal Error !STACK 0 java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.runInCurrentThread(Modal... | resolved fixed | df97c0f | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T12:15:29Z | 2003-01-26T00:13:20Z | refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInstanceMethodInputPage.java | |
29,805 | Bug 29805 Resolve end symbol problem in Open Type dialog | Build I20030115 Here is the proposal we want to implement (it is pretty much what Randy Hudson proposed): The user must explicitly disable the adding of the wildcard by using a special end symbol. But instead of using the '.' JDT proposes to use the % character. Here are the reasons: - '.' is used in fully qualified na... | resolved fixed | 914191c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T13:56:27Z | 2003-01-20T16:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenBuildPathDialogAction.java | |
29,805 | Bug 29805 Resolve end symbol problem in Open Type dialog | Build I20030115 Here is the proposal we want to implement (it is pretty much what Randy Hudson proposed): The user must explicitly disable the adding of the wildcard by using a special end symbol. But instead of using the '.' JDT proposes to use the % character. Here are the reasons: - '.' is used in fully qualified na... | resolved fixed | 914191c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T13:56:27Z | 2003-01-20T16:26:40Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/BuildPathDialog.java | |
29,805 | Bug 29805 Resolve end symbol problem in Open Type dialog | Build I20030115 Here is the proposal we want to implement (it is pretty much what Randy Hudson proposed): The user must explicitly disable the adding of the wildcard by using a special end symbol. But instead of using the '.' JDT proposes to use the % character. Here are the reasons: - '.' is used in fully qualified na... | resolved fixed | 914191c | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T13:56:27Z | 2003-01-20T16:26: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... |
29,525 | Bug 29525 moving source file from one source folder to the other caused NullPointerException | Not strictly reproducible, the source folders are in the same project, source and destination package have the same name. This is the complete stack trace, note the contained stack trace starting at: "Caused by: java.lang.NullPointerException" java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.M... | resolved fixed | bbae512 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T13:59:33Z | 2003-01-15T11:26:40Z | org.eclipse.jdt.ui/core | |
29,525 | Bug 29525 moving source file from one source folder to the other caused NullPointerException | Not strictly reproducible, the source folders are in the same project, source and destination package have the same name. This is the complete stack trace, note the contained stack trace starting at: "Caused by: java.lang.NullPointerException" java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.M... | resolved fixed | bbae512 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T13:59:33Z | 2003-01-15T11:26:40Z | refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/MoveRefactoring.java | |
28,400 | Bug 28400 JavaEditorPreferencePage and JavaColorManager leak Colors | 20021216 everytime you do this: 1. open java editor pref page 2. close the pref page you end up having allocated and not disposed 8 colors 1 is allocated like this at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createColor(JavaEditorPreferencePage.java:560) at org.eclipse.jdt.internal.ui.preference... | resolved fixed | 64feff4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T17:20:04Z | 2002-12-16T17:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.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... |
28,400 | Bug 28400 JavaEditorPreferencePage and JavaColorManager leak Colors | 20021216 everytime you do this: 1. open java editor pref page 2. close the pref page you end up having allocated and not disposed 8 colors 1 is allocated like this at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createColor(JavaEditorPreferencePage.java:560) at org.eclipse.jdt.internal.ui.preference... | resolved fixed | 64feff4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T17:20:04Z | 2002-12-16T17:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaColorManager.java | package org.eclipse.jdt.internal.ui.text;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Display;
import org.e... |
28,400 | Bug 28400 JavaEditorPreferencePage and JavaColorManager leak Colors | 20021216 everytime you do this: 1. open java editor pref page 2. close the pref page you end up having allocated and not disposed 8 colors 1 is allocated like this at org.eclipse.jdt.internal.ui.preferences.JavaEditorPreferencePage.createColor(JavaEditorPreferencePage.java:560) at org.eclipse.jdt.internal.ui.preference... | resolved fixed | 64feff4 | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-01-27T17:20:04Z | 2002-12-16T17:33:20Z | org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaTextTools.java | package org.eclipse.jdt.ui.text;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.IDocumentPartitioner;
import org.eclipse.jface.text.rules.DefaultPartitioner;
import org.eclipse.jface.text.rules.IPartitionTokenSc... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.