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 | updated_files stringlengths 29 34.1k | 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] |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
45,926 | Bug 45926 Change Method Signature dialog does not show "static" in Method Signature Preview. [refactoring] | The Refactor/Change Method Signature dialog does not show "static" in Method Signature Preview for static methods. Version: 3.0.0 Build id: 200310101454 | resolved fixed | a565abc | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeSignatureRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-15T15:47:47Z | 2003-11-03T00:40:00Z |
46,933 | Bug 46933 refactoring: NPE when using "Generalize Type" on field in local type | I20031119 (M5 test pass) 1. have this code: public class Test { public void foobar() { class Listener3 { private Test fTest; private Listener3() { fTest= new Test(); } public int bar() { return foo(); } public int foo() { return 1; } private String getProperty() { return null; } } this.addListener(new Listener3() { pub... | resolved fixed | 4493b21 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ChangeTypeRefactoring/negative/A_testFieldOfLocalType_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ChangeTypeRefactoring/negative/A_testFieldOfLocalType_out.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/Chang... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-15T13:24:10Z | 2003-11-19T11:06:40Z |
48,696 | Bug 48696 Add JUnit libraries Quick Fix [JUnit] | Currently the Quick Fix only works on a line containing "TestCase". It should also work on lines w/ a) "junit.framework" b) "Test suite()" c) "TestSuite" | verified fixed | 7284a4f | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitQuickFixProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-14T15:32:11Z | 2003-12-13T15:40:00Z |
27,907 | Bug 27907 Autocreate of a local variable outside of current block | If you type something like the following void myMethod() { try { a=someCall(); } catch(Exception e) { } System.out.println(a); } the variable 'a' isn't declared and code assist proposes to create a declaration for the local variable 'a'. But it is created inside the current block and not in the context of the method: v... | resolved fixed | 29bc7e6 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-13T00:11:58Z | 2002-12-08T23:26:40Z |
48,617 | Bug 48617 Error range for unresolved names in qualified references | 20031211 1. in the following code public void foo() { int i= xxx.yyy; } 2. if 'xxx' is undefined, but the compiler marks 'xxx.yyy' as unresolved. It would be better to only mark 'xxx' | verified fixed | 885286b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-12T22:39:05Z | 2003-12-12T00:46:40Z |
45,448 | Bug 45448 Operation unavailable attempting to search a local variable [search] | Build 20031023 Selecting a local variable declaration in a Java editor and attempting to search for references to this local variable brings up a dialog saying the the operation is unavailable for the selected element. | verified fixed | a6ada08 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultLabelProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/FindDeclarationsInHierarch... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-12T10:44:16Z | 2003-10-23T14:40:00Z |
48,473 | Bug 48473 code and comments preference section is blank | I will atach a screen shot to demonstrate | verified fixed | 4ad3a82 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NameConventionConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T19:46:49Z | 2003-12-11T10:53:20Z |
47,874 | Bug 47874 Change Method Signature: enable if cursor is in signature [refactoring] | M5 Currently the user has to select the method name. Would be better if the refactoring will work if the cursor is inside the method's signature. | resolved fixed | 18d4077 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ModifyParametersAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T17:19:36Z | 2003-12-02T10:13:20Z |
47,838 | Bug 47838 Make refactoring menu selection sensitive in editor [refactoring] | M5 Currently all refactoring actions are enabled in the editor's context menu. Make them selection dependent. Check if code resolve might be enough (no need to create an AST). | verified fixed | d4785a8 | ["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/MoveMembersTests.java", "org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/refactoring/PullUpTests.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/Checks.java", ... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T13:22:10Z | 2003-12-01T20:20:00Z |
44,891 | Bug 44891 Search view hanging while resorting search matches | Build 3.0 M4 Search all references to type String in self-hosted workspace. Finds almost 80.000 of them. Now sort them by parent name... it will take minutes to recover, while it works UI is entirely non responsive. | resolved fixed | d79e542 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ElementNameSorter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchSorter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ParentNameSorter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/PathNameSorter... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T13:20:05Z | 2003-10-15T12:13:20Z |
10,947 | Bug 10947 [Cell Editors] Clicking in white space on property sheet doesn't commit change | Make a change in a text cell editor in the property sheet. click on the table somewhere below the last table item. The change is not committed. 02-14 build | resolved fixed | 782f51c | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeParametersControl.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T11:50:58Z | 2002-03-07T14:06:40Z |
46,941 | Bug 46941 Change method signature: Edit dialog: Window dialog to long [refactoring] | 20031119 In the 'Refactoring > Change Method Signature' dialog, press edit. The window dialog says 'Modify Declaration of Parameter myParameter' This is too long. Window titles should not be a sentence anyway. Suggest to change it to 'Method Parameter' and to add a description 'Declaration of parameter 'myParameter':' | resolved fixed | 4d51b31 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ParameterEditDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T09:53:16Z | 2003-11-19T11:06:40Z |
48,431 | Bug 48431 Incorrect order for modifiers in generated testcases [JUnit] | null | resolved fixed | 148ecc1 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/wizards/NewTestCaseCreationWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-11T00:42:26Z | 2003-12-10T18:13:20Z |
48,360 | Bug 48360 ArrayIndexOutOfBoundsException when using escape key [reorg] | Using 1209, I got the following stack trace when trying to use Ctrl + C for copying and then cancelling it with the escape key. STEPS TO REPRODUCE: 1) Select a folder 2) Copy it in a folder that already contains a folder with the same name 3) You get a dialog asking if you want to override the existing file 4) Cancel i... | resolved fixed | ba138ba | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/ReorgQueries.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-10T10:37:30Z | 2003-12-09T20:00:00Z |
47,822 | Bug 47822 refactor rename duplicate local variable throws NPE [refactoring] | refactor rename the second b in the following example: ------------------------------------------------------- public class Test { public static void main(String[] args) { final int a = 3; final int b = 3; final int b = 3;//<-- refactor rename this variable final int b = 3; } } -----------------------------------------... | resolved fixed | 0cca1ff | ["org.eclipse.jdt.ui.tests.refactoring/resources/RenameTemp/canRename/A_test51_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameTemp/canRename/A_test51_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/RenameTemp/cannotRename/A_testFail32.java", "org.eclipse.jdt.ui.tests.refactoring/test", "case... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T18:53:22Z | 2003-12-01T17:33:20Z |
48,338 | Bug 48338 JavaSearchResultCollector should not create 'Searching' subtask [search] | Build 20031203 org.eclipse.jdt.internal.ui.search.JavaSearchResultCollector.aboutToStart() creates a subtask 'Searching'. This looks awkward as the search infrastructure is also printing this message. | resolved fixed | 2b5bb03 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultCollector.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T17:48:12Z | 2003-12-09T14:26:40Z |
47,875 | Bug 47875 Java search: too many cascading menus | - remove everything except reference. Inline reference in main menu - make it work in progress (per default enabled) | resolved fixed | 32c5937 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/WorkInProgressPreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/JavaSearchActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T16:28:08Z | 2003-12-02T10:13:20Z |
47,062 | Bug 47062 Change method signature: Refactor fails for methods/ctors used in static initializers [refactoring] | I have type-safe enum code similar to the class below. If I try to make any change to the constructor or static method using "Change Method Signature", the operation fails with "Internal error while creating a change object". This only happens when the method in question is called from a static initializer as in the ex... | resolved fixed | 6e86b02 | ["org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testAddRecursive1_in.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testAddRecursive1_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/ChangeSignature/canModify/A_testInStatic01_in.java", "org.ecli... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T16:14:01Z | 2003-11-20T09:20:00Z |
47,674 | Bug 47674 Formatting problem with paste | M5: - create class Bar with this code: public class Bar { void foo() { int i= 1; if (i == 2) { i= 1; } i= 2; } } - select full line "i= 2" and cut to clipboard - paste line inside if-statement Observe: the closing bracket is indented public class Bar { void foo() { int i= 1; if (i == 2) { i= 1; i= 2; } } } | resolved fixed | 7586211 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T14:47:28Z | 2003-11-27T21:53:20Z |
24,894 | Bug 24894 Ctrl+A in Type Hierarchy works strange [type hierarchy] | Build 20021016 This problem is caused because of the two panes in the view. If I select the toolbar of the lower pane and then press Ctrl+A I expect all members to be selected. This does not work in most of the cases: I have to click into the list and then press Ctrl+A. | resolved fixed | 4f6edb5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T13:43:02Z | 2002-10-17T10:20:00Z |
45,179 | Bug 45179 Save dialog state of rename dialog [refactoring] | when you are making batch refactor you use some specifig kind of setting for it like : refactor -> rename has following choices : Update references to renamed classes (checked by default) Update references in javadocs Update references in regular comments Update references in string literals Update fully qualifed names... | resolved fixed | 7114d5d | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameFieldWizard.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/RenameInputWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T09:59:58Z | 2003-10-19T21:46:40Z |
37,353 | Bug 37353 add variable button can't add variable only edit. [build path} | Project->properties->java build path->Library tab->add variable button will only allow you to extend or edit a variable not add a variable. The only way to add a classpath variable is to go Window->preferences->java->classpath variables->new button. | resolved fixed | f2e3fde | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/NewVariableEntryDialog.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-09T09:51:04Z | 2003-05-07T20:40:00Z |
32,478 | Bug 32478 Create inner subclass generate invalid import | When we have a class with an inner protected class like that, package test1; public class Parent { protected class Inner { } } and an other one like that package test2; import test1.Parent; public class Child extends Parent { } and we want to generate a inner class in Child that extends the inner class Protected.Inner,... | resolved fixed | fc4893f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/wizards/NewTypeWizardPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-08T19:29:00Z | 2003-02-21T12:20:00Z |
47,210 | Bug 47210 [refactoring] change method signature - misleading message | 1) open the change method signature dialog 2) flip to the Exceptions tab ->message at the bottom: Specify the new order of parameters and/or their new names. The message should be specific to the current tab and say: Specify the exceptions that should be added or removed | resolved fixed | d27a7b2 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeSignatureWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-08T18:04:11Z | 2003-11-21T13:06:40Z |
46,658 | Bug 46658 File search window too wide | 20031111 - Select a element in the Java editor, press CTRL + H - Switch to the file tab - the search window is getting larger for no reasons (it takes the full screen width) | verified fixed | 380dac5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-08T13:46:50Z | 2003-11-14T11:40:00Z |
45,178 | Bug 45178 Exception when closing rename dialog with read only files [refactoring] | if the resource is read-only you get a modal dialog "the selected elements contain read-only resources. Do you still want to move them ?" when pressing on close { upper right X ) you get java.lang.ArrayIndexOutOfBoundsException: -1 see attached log | resolved fixed | e283030 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/reorg/ReorgQueries.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-08T08:07:29Z | 2003-10-19T21:46:40Z |
44,834 | Bug 44834 Extract interface refactoring operation does not create necessary import statement [refactoring] | In 3.0 M3 "Extract interface" refactoring does not create appropriate import statement for the newly created interface thus resulting in broken builds. In the refactoring dialog of Extract interface "Change references to the class X into the references to the interfaces" option has to be turned on in order to re-create... | resolved fixed | f30bd97 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ExtractInterfaceUtil.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/cor... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-05T17:57:34Z | 2003-10-14T16:46:40Z |
44,737 | Bug 44737 JavaElementLabels broken for nested anonymous types | null | resolved fixed | 2482cbe | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/CoreTests.java", "org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/core/JavaElementLabelsTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementLabels.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-05T17:12:30Z | 2003-10-13T10:13:20Z |
48,122 | Bug 48122 NPE in LinkedNamesAssistProposal | I20031203 Sorry, no steps to reproduce but I found several instances of the following in my log: java.lang.NullPointerException at org.eclipse.jdt.internal.ui.text.correction.LinkedNamesAssistProposal.getSelection(LinkedNamesAssistProposal.java:124) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insert... | resolved fixed | d78140b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/CUCorrectionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedNamesAssistProposal.java", "org.eclipse.jdt.ui/ui/org/eclips... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-05T16:28:14Z | 2003-12-04T23:20:00Z |
32,022 | Bug 32022 Indirect static proposal: Wrong compiler positions | QuickFix produce wrong code while trying to fix the way class accesses field of the static member of the static class instance, i.e.: instance.staticField.flag = true; Where "instance" is the static field of the same class as caller, "staticField" its static member (instance of inner class StaticField) and the "flag" i... | verified fixed | 2ec6921 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/LocalCorrectionsQuickFixTest.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-04T17:41:19Z | 2003-02-17T16:40:00Z |
47,856 | Bug 47856 Unusable UI due to custom colors setup for editor [misc] | I have non-default colors set for syntax highlighting in Java editor (black background, white text, yellow reserved words, green comments, ...). However this causes the some important Eclipse UI features to become unusable due to the fact they leave white (default) background but use my custom (non-default) foreground ... | resolved fixed | b80ecbb | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/IStatusContextViewer.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/JavaStatusContextViewer.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/SourceContextViewer.java",... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-04T17:23:40Z | 2003-12-02T01:53:20Z |
37,913 | Bug 37913 Suggest creating field instead of local variable if naming matches preferences for field [quick fix] | Eclipse has a defined list of prefixes (or suffixes) for fields when generating code. I have defined, for example, that local fields begin with _ but of course other naming conventions (e.g. f) are also possible. When I write an assignment such as: public void setThing(Object arg) { _arg = arg; } then it provides with ... | verified fixed | 89e662e | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnresolvedElementsSubProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-03T17:42:14Z | 2003-05-21T12:26:40Z |
48,001 | Bug 48001 Don't want 'e' as variable name in throw clause | M5 'Surround with' refactoring and quick fix use 'e' as exception variable name. It should be possible to configure this | resolved fixed | 25a25f1 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/surround/SurroundWithTryCatchRefactoring.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NameConventionConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LocalCorrectionsS... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-03T17:09:37Z | 2003-12-03T16:46:40Z |
47,971 | Bug 47971 java formatter preferences: IllegalArgumentException when opening new formatter page | I20031202 0. Have old formatter preferences specifying to use spaces instead of tabs 1. Create a new formatting style based on "Java Conventions" 2. Set Indentation -> Use Tab character 3. Format some code so its indentation gets changed -> Note that spaces get inserted instead of tabs 4. Go to the Preferences, Java->C... | resolved fixed | 79f0f9b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/formatter/IndentationTabPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-03T14:18:51Z | 2003-12-03T14:00:00Z |
47,922 | Bug 47922 Double-click does not go into resource folders [package explorer] | build I20031121 - In a self-hosting workspace with UI in source, - On the Java pref page, change the double-click behavior for the package explorer to Go Into. - In the Package Explorer, double-click on org.eclipse.ui. - It goes into the project. - Double-click on the schema folder. - It has no effect. It should go int... | resolved fixed | 34080e8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-03T14:04:45Z | 2003-12-02T21:20:00Z |
46,923 | Bug 46923 Introduce Factory: Preview doesn't work sometimes | I20031119 The preview doesn't work when introducing a factory method on this example: public class HelloWorld { private static HelloWorld instance; public static void main(String [] args) { instance= new HelloWorld(); instance.run(); } private HelloWorld() { } private void run() { } } The factory method is introduced c... | resolved fixed | 955406c | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/textmanipulation/GroupDescription.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/changes/TextChange.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeElementContent... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-03T13:51:42Z | 2003-11-19T11:06:40Z |
47,873 | Bug 47873 Extract Method: should generate Javadoc [refactoring] | I20031126 Title says it all. | resolved fixed | 1d8f5d2 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/code/ExtractMethodInputPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-03T13:15:41Z | 2003-12-02T10:13:20Z |
42,214 | Bug 42214 New template variable that gets replaced by file name w/o extension [code manipulation] | I would like there to be a template variable, for example "filename", that works like the "file" variable, except the variable's value doesn't contain the file extension. This would allow me to create template such as the following: public final class ${filename} extends TestCase { public static Test suite() { final Te... | resolved fixed | 74443d8 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/CompilationUnitContextType.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/JavaContextType.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/java/JavaDocCon... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-01T19:33:13Z | 2003-08-28T14:13:20Z |
42,068 | Bug 42068 Pref Pages button order | The button order of: New.../Add... Edit... Remove Should be the same on the following preference pages: Classpath Variables Debug/Detail Formatter Editor/Templates Installed JREs Organize Imports Task Tags @@@ There should be no extra space on: Classpath Variables Task Tags @@@@ The "Up" and "Down" Buttons on Organize ... | verified fixed | 463cf6f | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ImportOrganizePreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/TodoTaskConfigurationBlock.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableBlock.java", "org.eclipse.jdt.ui/ui/org/eclip... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-01T19:27:54Z | 2003-08-27T02:06:40Z |
47,731 | Bug 47731 JUnit view leaks 2 Colors | M5 Repeated opening and closing of the JUnit view leaks 2 SWT Colors each time | verified fixed | 65a3a7a | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/ui/JUnitProgressBar.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-12-01T15:27:04Z | 2003-11-28T20:06:40Z |
47,394 | Bug 47394 Significant performance degradation in 3.x builds | I am currently using M5 we have a fairly large project approx 7000 source files split into about 250 packages plus about 20 jar files containing about 3MB of code. I am running on windows NT Service pack 6 with a 2Ghz processor and 1GB of RAM with vm params =-Xmx640m -Xms640m. Eclipse is running using JDK1.4.2_02. The ... | resolved fixed | 06c09ff | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/workingsets/WorkingSetFilterActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-30T21:02:31Z | 2003-11-25T08:46:40Z |
47,762 | Bug 47762 ProgressDialog appears before Open Type dialog | M5 - start Eclipse with a populated workspace - do nothing for 10 seconds - open AllTypesDialog Observe: Sometimes you get a ProgressDialog before the Open Types dialog opens. This should never happend if Eclipse had been idle for at least 5 seconds because then the background caching thread should have started. | resolved fixed | afe057b | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/AllTypesCache.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-29T21:06:30Z | 2003-11-29T21:06:40Z |
45,680 | Bug 45680 Add Import corner case [code manipulation] | I'm using M4. I have a source file which imports java.awt.* and java.util.*. Now, I need a method parameter of type java.util.List. I type 'List', highlight it, and press Ctrl+Shift+m; the Add Import dialog appears asking me to choose between java.awt.List and java.util.List. I select the proper one and OK, but my impo... | resolved fixed | dc996e9 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddImportsOperation.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-29T16:49:30Z | 2003-10-28T19:40:00Z |
46,956 | Bug 46956 QuickFix 'add unimplmented methods' should indicate how many methods are going to be added | Sometimes, you think this is what you want, and then suddenly, you've got an extra 20 or 30 methods. It would be nice to know the consequences of this choice in advance. (It's one of the few choices where the "change volume" can really vary a great deal). | resolved fixed | 7714e3a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/UnimplementedMethodsCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-29T16:35:23Z | 2003-11-19T13:53:20Z |
47,694 | Bug 47694 Local rename jumps to first occurence of name | plugin-export/I20031126.from20031127_1934 In QuickAssistProcessor, go to method 'getRenameLocalProposals', set the cursor in the name and invoke 'local rename'. The editor reveals the first occurence of this method (at the top of the editor). It should stay on the selected name. Seems to be a regression. | resolved fixed | c44cea4 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/LinkedNamesAssistProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-28T12:38:15Z | 2003-11-28T09:00:00Z |
47,678 | Bug 47678 Duplicate parameter prefixes in auto-generated JavaDoc comments | Eclipse 3.0 M5. For the variable type 'Parameters' in 'Preferences/Java/Code Generation/Conventions for variable names' select a non-empty Prefix, e.g. p_. If you now add a JavaDoc comment to a method that has a parameter list with already p_-prefixed names, the @param starts with p_p_ what obviously is wrong. | resolved fixed | b644784 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-28T10:49:11Z | 2003-11-27T21:53:20Z |
47,657 | Bug 47657 Quick Assist Suggestion: add block to single-line then-statement [quick assist] | null | resolved fixed | 7c3c43a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/QuickAssistProcessor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-28T10:08:04Z | 2003-11-27T19:06:40Z |
47,218 | Bug 47218 NPE during rebuidling of Index [misc] | 20031120 I got this one while self hosting off of the 4PM build on 1120 - not sure when as I only noticed when I shutdown. I had loaded the platform-ui module in and then immendiately loaded all other plugins from binaries. This didn't seem to affect anything so I don't think it needs to be addressed for M5. java.lang.... | resolved fixed | ecc4b16 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/AllTypesCache.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-27T22:21:58Z | 2003-11-21T13:06:40Z |
46,763 | Bug 46763 Introduce Factory: uses NLS key that doesn't exist | N20031114 Key use: Refactoring.syntax_error Please use the NLS search facility to make sure your NLS stuff is correct. To enable NLS search go to Search Dialog->Customize and check NLS page. | resolved fixed | a45c3e5 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceFactoryRefactoring.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/IntroduceFactoryWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ChangeTypeAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-24T17:02:12Z | 2003-11-17T11:53:20Z |
46,875 | Bug 46875 [typing] Tabs are messed up | When I type code that has string literals in it, and press enter to move the string literal to the next line, the tab logic seems strange. e.g. String twoLines = "System Contains Many Defects,Systemet innehaller manga fel\n"+"Stories Are Too Complicated,Stories ar for komplicerade"; Move the cursor after + and press en... | resolved fixed | ee1aa7e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaStringAutoIndentStrategy.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-24T11:05:01Z | 2003-11-18T21:13:20Z |
47,332 | Bug 47332 Assertion failed in GetterSetter | 20011121 1. create getter on this code public class InstanceCount { private String fName; private int fValue; /** * @param name * @param package1 * @param value */ public InstanceCount(String typeName, int value) { super(); fName= typeName; fValue= value; } public static InstanceCount[] deserialize(String str) { ArrayL... | resolved fixed | 781af08 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/AddGetterSetterAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-24T11:02:10Z | 2003-11-24T10:33:20Z |
46,394 | Bug 46394 RCP: Add marker action disabled for Java editor | N20031111 Start fresh workspace and create a class in a Java project. The following actions are disabled: Edit > Add Bookmark... Edit > Add Task... It works in the standard text editor. | verified fixed | 0aa7aae | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/BasicEditorActionContributor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/Genera... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-24T09:28:20Z | 2003-11-11T08:40:00Z |
38,110 | Bug 38110 Move Static Member(s); should have combo box [refactoring] | The Dialog "Move Static Member(s)" should feature a MRU combobox instead of a simple text field for destination type. | closed fixed | d599e00 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveMembersWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-24T09:19:36Z | 2003-05-26T14:40:00Z |
45,227 | Bug 45227 Pullup incorrectly reports errors [refactoring] | I have a heirachy C derives from B derives from A. A contains protected member variable foo. C contains a method bar() which references foo. If I attempt to pull-up bar() to B, the refactoring preview incorrectly informs me that foo cannot be access from B. If I proceed, there are in fact no problems. | resolved fixed | fd3cd8b | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/JavaModelUtil.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/MoveStaticMembersRefactoring.java", "org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-24T08:54:29Z | 2003-10-20T17:13:20Z |
45,187 | Bug 45187 Double clicking in Package Explorer highlights class name [package explorer] | Rurn on "Show members in Package Explorer" Using EclipsePlugin as an example class name, when double clicking on a method in that class, like getDefault, getDefault is selected in the editor, but the highlight in the package explorer jumps to EclipsePlugin instead of remaining on getDefault. This is the behavior if "Li... | resolved fixed | dca60a3 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-21T23:06:49Z | 2003-10-20T03:20:00Z |
46,946 | Bug 46946 quick type hiearchy: affordance caption is swapped [type hierarchy] | I20031119 (M5 test pass) 1. Open ContextBasedFormattingStrategy.java (or another type of your liking) 2. Press Ctrl+T to open the type hierarchy 3. Repeatedly pressing Ctrl+T toggles between super- and subtype hierarchy -> The caption of the affordance shown at the bottom needs to be swapped Right now, when displaying ... | resolved fixed | 2df2bf9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HierarchyInformationControl.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-20T16:17:35Z | 2003-11-19T11:06:40Z |
46,886 | Bug 46886 Build hangs | I use autobuild. Happened after pressing Ctrl+S (save) Starting Eclipse N20031114 *************************** The following JRE is used to launch Eclipse: java version "1.4.2" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28) Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode) VM Options=-Xms50M -... | resolved fixed | 225900c | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitDocumentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/filebuffers/CompilationUnitDocumentProvider2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-20T11:44:21Z | 2003-11-18T21:13:20Z |
44,549 | Bug 44549 NLS Keys search page element order is confusing [search] | I20031008 The tree dialog created by the (Properties) Browse button in the NLS Keys search page is not purely alphabetical. It seems to be ordering based on whether the project is a source or a binary import project, and within those groups further ordered alphabetically. This is confusing. A quick look tells me that t... | resolved fixed | 3621cdb | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/search/NLSSearchPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-18T15:09:39Z | 2003-10-09T14:33:20Z |
45,444 | Bug 45444 Open declaration on local variable doesn't select variable name | Build 20031023 1. Create the following cu: public class X { void foo() { int var = 1; var++; } } 2. Select 'var' in the 'var++;' statement 3. F3 Observe: The cursor goes to the begining of the 'int var = 1;' statement. I would expect that 'var' is selected in this statement. | resolved fixed | bffd227 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-18T13:48:19Z | 2003-10-23T14:40:00Z |
45,062 | Bug 45062 Don't filter output folder and class files | Create a Java project with source folder src and output folder bin. The bin folder will not be shown in the Packages Explorer. Create a Java project with source folder src and output folder output/bin. The output and bin folders are shown in the Packages Explorer. Implictly filtering out bin is confusing and inconsiste... | resolved wontfix | 5ebdcbb | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/OutputFolderFilter.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-18T11:05:34Z | 2003-10-16T21:33:20Z |
46,821 | Bug 46821 NPE in LinkedPositionUI | Build: N-20031116 I'm not sure what provoked this NPE. But I know that I was unable to do anything afterwards. I had to shut down my workbench. Error Nov 17, 2003 23:40:33.872 java.lang.NullPointerException java.lang.NullPointerException at org.eclipse.jdt.internal.ui.text.link.LinkedPositionUI.leave (LinkedPositionUI.... | verified fixed | 65aa3b8 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/link/LinkedPositionUI.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-18T09:43:25Z | 2003-11-18T04:33:20Z |
46,805 | Bug 46805 prepare Compare for encoding support | I20031111 The Compare plugin only supports the global workspace encoding. It does not support encodings per file. | resolved fixed | 842e720 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaAddElementFromHistory.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaCompareAction.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaCompareUtilities.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compa... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T23:11:14Z | 2003-11-17T23:00:00Z |
46,764 | Bug 46764 Change type refactoring: NLS has two keys ChangeTypeRefactoring.invalidSelection with different values | N20031114 Please use the NLS search facility to make sure your NLS stuff is correct. To enable go to Search Dialog -> Customize and check NLS search. Then fill in the NLS search page. | resolved fixed | 8e4e4cd | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/structure/ChangeTypeRefactoring.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeTypeWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/ChangeTypeAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T22:01:07Z | 2003-11-17T11:53:20Z |
46,614 | Bug 46614 Introduce Factory: make constructor private should be disabled for syntetic default constructors | I20031111 Title says it all. | resolved fixed | 01336fa | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceFactoryRefactoring.java", "org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/IntroduceFactoryInputPage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T21:04:04Z | 2003-11-13T19:00:00Z |
42,699 | Bug 42699 Unexpected error in organize imports [code manipulation] | To recreate this error, you must have two java projects set up. Create a new class file in one of the projects that refers to an existing class in the other project. In the project properties I'm resolving the foreign class file picking "add class folder" and choosing the class folder from the other project but leave o... | resolved fixed | 8e14bfc | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/IFileTypeInfo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T19:01:50Z | 2003-09-08T14:06:40Z |
46,656 | Bug 46656 Find Occurences does not find all occurences | 20031111 In jdt.ui selfhost workspace open CyclePartAction (in binary). Select 'commandForward' and use 'Find Occurenced'. Only 3 references are found. Missing are e.g. line 317, 'if (commandForward != null) {' | resolved fixed | 716cedf | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/OccurrencesFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T18:24:22Z | 2003-11-14T11:40:00Z |
46,351 | Bug 46351 Call Hierarchy must not implement IViewSite [call hierarchy] | I20031105 The call hierarchy component implements IViewSite which is not allowed. There seems to be no reason for doing so: the CallHierarchyViewPart should directly set the selection provider to its site. | resolved fixed | dd173ad | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyContentProvider.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyLabelDecorator.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/callhierarchy/CallHierarchyUI.java", "org.eclipse.jdt.ui/ui/org/ecl... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T17:26:45Z | 2003-11-10T16:00:00Z |
24,008 | Bug 24008 (automatic) Global Replace | Currently it is only possible to do a global replace, by first searching and then replace each occurrence manually. While this ensures that nothing is accidentally replaced, it is awful if you have use cases like the following: - I want to replace "DAO" to "Dao" and "XML" to "Xml" in all methods, classes, attributes, l... | resolved fixed | c8c6e3f | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/util/QualifiedNameFinder.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T16:57:02Z | 2002-09-24T06:46:40Z |
45,349 | Bug 45349 [typing] Smart ; must replace selection | I20031015 1. enter "int a= 3;" 2. select "=3;" 3. press ";" | verified fixed | e3175ca | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/SmartSemicolonAutoEditStrategy.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T16:43:02Z | 2003-10-22T08:06:40Z |
46,674 | Bug 46674 Introduce Factory: use message format for NLS string which contains parts | I20031111 The programm should never build up a message string consiting of parts since the parts might not be traslatable into other languages. Always use message format instead (e.g. the following ''{0}'' has compile errors). Affected keys are: IntroduceFactory.noASTNodeForConstructorSearchHit IntroduceFactory.noASTNo... | resolved fixed | c77fc32 | ["org.eclipse.jdt.ui/core", "refactoring/org/eclipse/jdt/internal/corext/refactoring/code/IntroduceFactoryRefactoring.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T11:42:36Z | 2003-11-14T17:13:20Z |
46,608 | Bug 46608 Introduce Factory: internal error | I20031111 + Introduce Factory patch Test Case /* * Created on Nov 10, 2003 * * To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */ package p2; /** * @author dbaeumer * * To change the template for this generated type comment go to * Window - Prefer... | resolved fixed | a305932 | ["org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/46608/p1/TT.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/46608/p1/TT_out.java", "org.eclipse.jdt.ui.tests.refactoring/resources/IntroduceFactory/Bugzilla/46608/p2/TT.java", "org.eclipse.jdt.ui.tests.refactorin... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T11:12:50Z | 2003-11-13T19:00:00Z |
45,332 | Bug 45332 Method inline fails [refactoring] | Problem was also present in R2.1. Tried to inline all invocations of a simple method: public static void assertTrue(boolean invariant) { assert invariant; } !SESSION Oct 21, 2003 13:33:31.629 --------------------------------------------- java.version=1.4.1_01 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=l... | resolved fixed | e8a7136 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/LocalVariableIndex.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T10:55:56Z | 2003-10-21T21:00:00Z |
45,110 | Bug 45110 No constant for '..compiler.problem.missingAnnotation' | 20031015 The constant for "org.eclipse.jdt.core.compiler.problem.missingAnnotation" is missing. e.g. JavaCore.COMPILER_PB_MISSING_ANNOTATION; | verified fixed | 2a475ab | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-17T10:37:59Z | 2003-10-17T14:13:20Z |
45,352 | Bug 45352 Smart paste garbles indentation of commented code block | Copy this: // int abs(int i) { // //TODO: use Math.abs // if (i > 0) { // return i; // } else { // return -i; // } // } Pasting yields: // int abs(int i) { // //TODO: use Math.abs // if (i > 0) { // return i; // } else { // return -i; // } // } | resolved fixed | fbc9bb0 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaAutoIndentStrategy.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-14T11:02:26Z | 2003-10-22T08:06:40Z |
46,639 | Bug 46639 JavadocWizard disposing Window.getDefaultImage() | Build I20031111 JavadocWizard.performFinish() OptionalMessageDialog.open(..., Window.getDefaultImage(), ...); I believe passing Window.getDefaultImage() to the dialog is bad. When the dialog closes, it disposes of the default window image. | resolved fixed | c55af1a | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javadocexport/JavadocWizard.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewElementWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-14T10:25:22Z | 2003-11-13T21:46:40Z |
46,088 | Bug 46088 Create method quick fix declares Object as return type [quick fix] | When you write the following code Bla var = getMyBla(); and press Ctrl-1, you can have the method "getMyBla" created. However, if the type Bla is not (yet) known, the method gets declared as private Object getMyBla() { ... } If you press Ctrl-1 again, the import for Bla is added. If the order of the two quickfixes was ... | resolved fixed | d5ef949 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewMethodCompletionProposal.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/correction/NewVariableCompletionProposal.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-13T23:16:12Z | 2003-11-05T11:00:00Z |
46,377 | Bug 46377 [misc] Save not working for linked resources in Java editor | Trying to open a java file stored in a linked folder, results in error message "Java editor could not initialize" and no editor is opened. Other functions like compiling or comparing work fine with files in a linked folder. In previous build of Eclipse the Java editor used to work fine on files in linked folder. The bu... | verified fixed | 0c7fcb5 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/filebuffers/DocumentAdapter2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-13T19:01:51Z | 2003-11-10T21:33:20Z |
46,329 | Bug 46329 PasteActionTest#test2 failts | N20031109 After converting to RCP the above test started to fail | resolved fixed | 997ac85 | ["org.eclipse.jdt.ui.tests.refactoring/test", "cases/org/eclipse/jdt/ui/tests/reorg/PasteActionTest.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/ASTNodes.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/dom/ASTRewrite.java", "org.eclipse.jdt.ui/core", "ext... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-13T15:25:41Z | 2003-11-09T20:33:20Z |
45,193 | Bug 45193 hierarchy scope search only shows types that exist in jars | null | resolved fixed | d8467af | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/util/IFileTypeInfo.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-13T10:03:26Z | 2003-10-20T08:53:20Z |
46,227 | Bug 46227 MarkerResolution extension point broken? | 20031106 With the RCP change, the extension point org.eclipse.ui.ide.markerResolution seems to be broken. IDE.getMarkerHelpRegistry().getResolutions does not return anything. | resolved fixed | 5f8c568 | ["org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/ui/tests/quickfix/MarkerResolutionTest.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-06T19:10:31Z | 2003-11-06T20:20:00Z |
46,074 | Bug 46074 JUnit launcher: new API in VMRunnerConfiguration [JUnit] | null | resolved fixed | f999754 | ["org.eclipse.jdt.junit/src/org/eclipse/jdt/internal/junit/launcher/JUnitBaseLaunchConfiguration.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-05T18:20:19Z | 2003-11-04T23:53:20Z |
41,851 | Bug 41851 code generation pref page: layout makes it hard to find two checkboxes [code manipulation] | 20030820 the 2 checkboxes on the code gen pref page are located at the bottom of the page and very easily missed when you see the page. they should be made more prominent. | resolved fixed | 1eb4c1d | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/NameConventionConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-05T15:46:12Z | 2003-08-22T11:00:00Z |
43,003 | Bug 43003 Disable warning/don't show again checkbox | When I reorder the contents of a source file using 'Source -> Sort Members' I get given a warning box that says task tags will be lost, click OK to continue. Whilst this is a useful warning to show the first time this occurs, it would really be great to be able to disable the warning so that it does not occur each time... | verified fixed | 5b6bf54 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/SortMembersAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-05T14:45:52Z | 2003-09-12T09:46:40Z |
45,517 | Bug 45517 Add a 'Field comment' code template | 20031024 The user should be able to specify a 'field comment' template. See 'CodeTemplateContextType.TYPE_COMMENT' as an example You have to - define a new variable type - specify the variables avaiable in this template - create an API in Codetemplates so it can be used Users are: - AddJavadocCommentAction - JavadocTag... | resolved fixed | 8309e79 | ["org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/AddJavaDocStubOperation.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java", "org.eclipse.jdt.ui/core", "extension/org/eclipse/jdt/internal/corext/template/CodeTemplates.ja... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-05T14:33:54Z | 2003-10-24T15:40:00Z |
46,042 | Bug 46042 [rulers] NPE in preference store, called from JavaAnnotationHover.getJavaAnnotationsForLine | build N20031031 Saw the following in the log. !ENTRY org.eclipse.ui 4 4 Nov 04, 2003 11:17:39.649 !MESSAGE Unhandled exception caught in event loop. !ENTRY org.eclipse.ui 4 0 Nov 04, 2003 11:17:39.649 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at java.util.Hashtable.get(Hashtable.ja... | resolved fixed | 225cfed | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/JavaAnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-11-05T08:28:43Z | 2003-11-04T18:20:00Z |
44,318 | Bug 44318 annotation hovers don't show up | ...if Preferences-->Java-->Editor-->Annotations-->Analyze annotations while typing is turned off. upon saving/compiling files the yellow and red underlines for warnings and errors show up, but not the hovers. | resolved fixed | 3cc3aed | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/AnnotationHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-30T12:09:53Z | 2003-10-07T15:20:00Z |
45,696 | Bug 45696 SIOOBE in org.eclipse.jsp.AbstractJspParser | When I'm using the JSP editor from the Java Family examples, I get a lot of StringIndexOutOfBoundsException in .log : java.lang.StringIndexOutOfBoundsException: String index out of range: 4 at java.lang.String.charAt(String.java:444) at org.eclipse.jsp.AbstractJspParser.parseAttributes(AbstractJspParser.java:154) at or... | resolved fixed | 3227278 | ["org.eclipse.jdt.ui.examples.javafamily/src/org/eclipse/jsp/AbstractJspParser.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-29T10:13:19Z | 2003-10-28T22:26:40Z |
45,445 | Bug 45445 [hovering] No tooltips for local variables | Build 20031023 Hovering over a local variable declaration/reference doesn't show a tooltip. JDT/Core now supports code select on local variable. UI side should be fixed to show the local variable declaration in a tooltip. | resolved fixed | 7fdf35b | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavadocHover.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-28T10:29:37Z | 2003-10-23T14:40:00Z |
45,638 | Bug 45638 [preferences] overwrite mode setting | Needs to be moved to Java>Editor>Typing. | resolved fixed | 5156f79 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/WorkInProgressPreferencePage.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/PreferenceConstants.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-28T09:47:30Z | 2003-10-28T00:13:20Z |
45,614 | Bug 45614 Refactoring - Pull up shows java code with bad colors [refactoring] | A dialog comes up under the Pull up refactoring that says"Select the methods to be removed in subtypes after pull up." The right hand panel shows java code for the selected method. It *assumes* the background color should be white, when it should not. It should be the same color as defined for Java editors. See #43368,... | resolved fixed | 89a48a3 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/PullUpWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-27T18:07:48Z | 2003-10-27T18:40:00Z |
45,356 | Bug 45356 [typing] IndentAction: Pressing Tab at document begin gives IAE | Build 200310150800: Having a multi-line comment starting at document offset 0, the caret as well at offset 0 and pressing tab, the indent action gives an IAE. Reason: The constructor of status called at IndentAction#run() requires a non- null message parameter. The exception that was triggered in the first place result... | verified fixed | ad85cef | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/IndentAction.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-27T17:29:26Z | 2003-10-22T10:53:20Z |
45,509 | Bug 45509 Allow to disable icons in vertical ruler | I20031023 A feature for Dirk | resolved fixed | a09f2be | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-27T15:26:24Z | 2003-10-24T15:40:00Z |
44,429 | Bug 44429 Move member to top level: Description strange | 20031008 The 'Move Member to New File' refactoring dialog allows you to specify the name of the field that is created. I think the label in the dialog is complicated: ' Entre name for enclosing instance'. I can rename the enclosing instance? Why not simply write: 'Field name:' The labels above already say that this is ... | resolved fixed | f8b41f5 | ["org.eclipse.jdt.ui/ui", "refactoring/org/eclipse/jdt/internal/ui/refactoring/MoveInnerToTopWizard.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-24T15:25:39Z | 2003-10-08T13:33:20Z |
44,426 | Bug 44426 Move member to top level: Wrong constructor [refactoring] | 20031008 - Create the following CU - select the member type in the outliner, choose: 'Move member type to new file' - The code is changed to use a constructor with 'this', howvere, the created type does not have this constructor public class A { class Vector { } public void foo() { Vector v= new Vector(); } } --- -> Ve... | resolved fixed | e6833d4 | ["org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/testFail_nonstatic_0/in/A.java", "org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_38/out/Inner.java", "org.eclipse.jdt.ui.tests.refactoring/resources/MoveInnerToTopLevel/test_nonstatic_39/out/Inner.java", "org.eclipse... | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-24T15:19:04Z | 2003-10-08T13:33:20Z |
45,491 | Bug 45491 Wrong dependency between compiler javadoc options | The boolean option 'Missing javadoc tags in public types, methods and fields' is not disabled when the "master" javadoc option 'Problem in Javadoc tags' is set to 'Ignore'. Correct behavior should be indentical for example to compiler option: 'Local variable declaration hides another fields or variables' and its depend... | resolved fixed | fc2a332 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerConfigurationBlock.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-24T13:20:06Z | 2003-10-24T10:06:40Z |
45,461 | Bug 45461 NPE in JavaAnnotationIterator | I20031023 I noticed this in my log (not sure how I caused it) !ENTRY org.eclipse.ui 4 0 Oct 23, 2003 12:34:09.387 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jdt.internal.ui.javaeditor.JavaAnnotationIterator.<init> (JavaAnnotationIterator.java:44) at org.eclipse.jdt.in... | resolved fixed | db50285 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaAnnotationIterator.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-24T08:21:06Z | 2003-10-23T17:26:40Z |
45,446 | Bug 45446 [Outline] 'Hide Fields' option not saved b/w editors | I20031023 - new/clean workspace - checkout platform-ui projects and compile - Java Perspective - open a class (ProblemView) - in Outline view, click the buttons 'Hide Field' (so you don't see the fields) and 'Sort'(so methods appear in alphabetical order) - Outline view is updated - open another class (SelectionEnabler... | resolved fixed | cb21594 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/MemberFilterActionGroup.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-23T15:55:22Z | 2003-10-23T14:40:00Z |
45,347 | Bug 45347 [formatter] Code format comment /*- (java standard do not format comment) | null | resolved fixed | 42558e9 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/CommentLine.java", "org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/comment/CommentRegion.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-23T14:56:40Z | 2003-10-22T08:06:40Z |
45,259 | Bug 45259 Bug in DocumentAdapter2.validateLineDelimiters | Version: 3.0.0 Build id: 200310150800 When I try to replace part of text in IBuffer and if this text contains new line delimiter, for example under Linux I open file with \r\n and convert it in \n, I see two exceptions, first about new line delimiter and second as result of bug. Look in inner loop, you have loop by 'k'... | resolved fixed | c857d4e | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/filebuffers/DocumentAdapter2.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-21T09:56:10Z | 2003-10-21T09:53:20Z |
45,260 | Bug 45260 Rename package yields newNotPresent Exception | null | resolved fixed | aef55d2 | ["org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/StandardJavaElementContentProvider.java"] | JDT | https://github.com/eclipse-jdt/eclipse.jdt.ui | eclipse-jdt/eclipse.jdt.ui | java | null | null | null | 2003-10-21T09:34:25Z | 2003-10-21T09:53:20Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.