id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
6,135 | 6,696 |
Bug 6696 Code completion should indicate deprecated methods
|
The icon for deprecated methods should be overlaid with a warning icon.
|
2001-12-07 18:44:43
| 1,007,770,000 |
verified fixed
|
c91513f
| 1,008,620,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ResultCollector.java
|
JDT
|
6,136 | 6,718 |
Bug 6718 Error ticks on non-Java resources
|
This is a VAME request. They would like to show error ticks on manifest files.
|
2001-12-10 05:51:51
| 1,007,980,000 |
resolved fixed
|
01c855e
| 1,008,610,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/AnnotationErrorTickProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/IErrorTickProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementImageProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/MarkerErrorTickProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProblemItemMapper.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ProblemMarkerManager.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabelProvider.java
|
JDT
|
6,137 | 6,429 |
Bug 6429 declaration source start incorrect on local variable
|
package p; class A{ int i(){ int[] a= new int[6]; int /**/i= a[9]; return i; } } when i ask for the declarationSourceStart and declarationSourceEnd of the i temp and the look a source in that range i get: /**/i= a[9] the type is not included. however, when you change the type declaration to: int i= a[9]; everything is fine, i.e. the source is: int i= a[9]
|
2001-11-29 11:15:59
| 1,007,050,000 |
resolved fixed
|
9dfe9cd
| 1,008,610,000 |
org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/InlineTempTests.java
|
JDT
|
6,138 | 6,891 |
Bug 6891 Enclosing type checkbox doesn't appear in tab order in new class wizard
|
Build 20011211 In the new class wizard, the checkbox for enclosing type doesn't appear in the tab order. The JDT code doesn't seem to be doing any magic.
|
2001-12-13 09:24:11
| 1,008,250,000 |
resolved fixed
|
24434b7
| 1,008,600,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java
|
JDT
|
6,139 | 3,782 |
Bug 3782 F1 help does nothing (1GETAYN)
|
F1 help doesn't seem to work in many of the JDT views or the Java text editor. Press F1 in outline, hierachy view, or a Java editor. Nothing happens. NOTES: EG (6/4/2001 10:35:44 AM) The help contexts for Views is missing in the IJavaHelpContextIds.java file. As a consequence they are also missing in the contexts_JDT.xml. EG (6/4/2001 10:24:22 PM) The display view is missing a help context ID. The search results view doesn't define a help context ID. The type hierarchy view doesn't define a context. EG (6/5/2001 3:43:50 AM) global actions in action sets don't have a help context id, e.g., <action label="%DebugAction.label" pulldown="true" icon="icons/full/ctool16/debug_exc.gif" tooltip="%DebugAction.tooltip" class="org.eclipse.debug.internal.ui.DebugDropDownAction" toolbarPath="debug" id="org.eclipse.debug.internal.ui.DebugDropDownAction" helpContextId="debug_action_context"> <<<<<<<<<<<<<<<<<<<<<<<<<<<< </action> EG (6/5/2001 5:31:13 AM) see also 1GEUF4P: ITPJUI:WIN2000 - No Help on Refactoring wizards GDA (6/5/01 11:09:35 AM) Should add the context ids. This is a 1 line change for each context. Recommend move to candidates MA (6/6/01 6:45:35 PM) Refactorings have help context ids added for views public static final String SEARCH_VIEW= PREFIX + "search_view_context"; public static final String PACKAGE_VIEW= PREFIX + "package_view_context"; public static final String TYPE_HIERARCHY_VIEW= PREFIX + "type_hierarchy_view_context"; public static final String DISPLAY_VIEW= PREFIX + "display_view_context"; global actions are all very obvious what they do. suggest to not add help DM (6/20/01 4:33:45 PM) Verified against 0.125 - context help is there for the stuff described in this PR: - packages view - hierarchy view BUT: - Outline view will only show Workbench's help because we do not register help in the page - Java editor: standard text comes up - Search View: standard text comes up - might work once help files from workbench are ok Not fixed - moving to InBox - Deferred
|
2001-10-10 23:00:47
| 1,002,770,000 |
verified fixed
|
50e30fa
| 1,008,590,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/IJavaHelpContextIds.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/CompilationUnitEditor.java
|
JDT
|
6,140 | 4,367 |
Bug 4367 Argument hover doesn't work for nested method calls
|
- enter the following code public class A { public int foo(int x, int y) { return 1; } public void bar() { } } - now enter public void bar() { foo<= code assist } - select foo(int x, int y) - observe: argument hover is correct - now type foo again - open code assist - select foo(...) - type 10, 10 and cursor left - argument hover disappears although outer method call isn't finihed yet.
|
2001-10-11 08:46:37
| 1,002,800,000 |
resolved fixed
|
3a027c9
| 1,008,590,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProposal.java
|
JDT
|
6,141 | 5,264 |
Bug 5264 Class detail filtering options in packages view.
|
Build 20011018. The new build allows the user to expand classes in the packages view and look at their contents. (methods and fields) It would be nice to be able to filter out this view so it didn't show you the field if you didn't want it to. (e.g. have the same options as you do in the Outline view for a Java file)
|
2001-10-25 17:35:12
| 1,004,050,000 |
resolved fixed
|
425b5aa
| 1,008,590,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/MembersFilterAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewerFilter.java
|
JDT
|
6,142 | 6,969 |
Bug 6969 NPE in code formatter preference page
|
20011206 Open the code formatter preference page Go to the style tab Go to the number of spaces... field Backspace until the field is empty NPE
|
2001-12-14 16:39:54
| 1,008,370,000 |
resolved fixed
|
b340474
| 1,008,580,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeFormatterPreferencePage.java
|
JDT
|
6,143 | 6,691 |
Bug 6691 Hierarchy View: Show inherited members + Show members
|
20011206 (Win2K) - Open a deep hierarchy in a Hierarchy view (I opened the SWT Widget hierarchy) - Select a class that is low in the hierarchy and overrides at least one method from a superclass (I selected Table) - Click on the "Show inherited members" tool, so that you see all implementors of overridden methods (for example, in Table, you can see 3 implementors of callWindowProc(int, int, int) ) - Select more than one method with the same signature (for example, I had all 3 implementors of callWindowProc(int, int, int) selected). - Now selet the "Lock View and Show Members in Hierarchy" tool. You will have multiple versions of the method under each class that implements the method. There should only be one.
|
2001-12-07 16:31:18
| 1,007,760,000 |
verified fixed
|
93e12ef
| 1,008,350,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyContentProvider.java
|
JDT
|
6,144 | 6,903 |
Bug 6903 1GOMQ6H:- NullPointerException when exporting to a jar
| null |
2001-12-13 14:16:02
| 1,008,270,000 |
resolved fixed
|
1324d10
| 1,008,340,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarFileExportOperation.java
|
JDT
|
6,145 | 3,523 |
Bug 3523 'Override in ...' should be renamed to 'Implement in...' for interfaces (1G4CNPH)
|
AK (11/13/00 12:30:39 PM) if i select a method in a superinterface of my class i want to "implement" it, not "override" it. however, since interfaces "extend" other interfaces, not "implement them", in interfaces you "override" methods from superinterfaces. (would have to check that one in the lang spec) NOTES: EG (24.07.2001 23:28:38) we have gone back and forth on the name, should do one more iteration. MA (07.08.2001 15:43:40) The name is 'Create in ...' now, and for works for interfaces / classes, for super or sub types. EG(13.08.2001 12:16:32) "Create in" isn't intuitive to me. Why can't the string be more sensitive?
|
2001-10-10 22:56:33
| 1,002,770,000 |
verified fixed
|
460d05b
| 1,008,340,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/AddMethodStubOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedMethodsOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/IImplementMethodQuery.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/IOverrideMethodQuery.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/StubUtility.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/AddMethodStubAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/AddUnimplementedMethodsAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ImplementMethodQuery.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OverrideMethodQuery.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java
|
JDT
|
6,146 | 5,458 |
Bug 5458 Add unimplemented deprecated methods
|
Build 20011025 (aka 206) When generating stubs for unimplemented methods, the @deprecated tag should be inserted in case the method to implement was itself deprecated.
|
2001-11-02 07:19:21
| 1,004,700,000 |
resolved fixed
|
6e01756
| 1,008,270,000 |
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
|
JDT
|
6,147 | 6,638 |
Bug 6638 "Add Method Overrides" menu pick
|
It would be nice to have an "Add Method Overrides" menu pick (analogous to the "Add Unimplemented Methods" menu pick in certain context menus) that would bring up a selection box of currently-unoverridden base-class methods and insert stubs for the selected methods.
|
2001-12-06 10:40:24
| 1,007,650,000 |
verified fixed
|
3042550
| 1,008,270,000 |
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/AddMethodStubOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedConstructorsOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/AddUnimplementedMethodsOperation.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/IImplementMethodQuery.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/util/JavaModelUtil.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/AddUnimplementedMethodsAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/ImplementMethodQuery.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenSuperImplementationAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/CheckedTreeSelectionDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/SelectionStatusDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/AnonymousTypeCompletionProposal.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/ContainerCheckedTreeViewer.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/ITypeHierarchyViewPart.java
|
JDT
|
6,148 | 6,765 |
Bug 6765 Type hierarchy missing buttons when in "Hierarchy View Only" mode
|
Build 20011206, Win2000 Steps: 1) Put the type hierarchy view in "Hierarchy View Only" 2) Shutdown the workbench and restart 3) The type hierarchy is now missing its toolbar buttons, the ones that cycle between the different type hierarchy modes. Workaround is to switch to "Vertical Viewer Orientation", then back to "Hierarchy View Only", then the buttons reappear. Side note: This seems to be the only place in the UI that the term "Viewer" is used. Maybe it should say "Vertical View Orientation", etc. There's probably a JFace viewer underneath, but users are only aware of views, not viewers.
|
2001-12-10 16:01:04
| 1,008,020,000 |
resolved fixed
|
edd94b3
| 1,008,170,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewer.java
|
JDT
|
6,149 | 6,503 |
Bug 6503 Search page - should offer case sensitivity check box
| null |
2001-12-03 09:42:11
| 1,007,390,000 |
verified fixed
|
a25d0d8
| 1,008,170,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindDeclarationsAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindDeclarationsInWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchOperation.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java
|
JDT
|
6,150 | 6,389 |
Bug 6389 System threads show suspended at startup
|
Version 20011127 1. Launch Eclipse from Eclipse. 2. Note that the system threads are incorrectly rendered as suspended in the DebugView. 3. Close the DebugView and reopen it. 4. The threads are rendered correctly Somewhere along the line we're not firing a changed (suspended, etc.) event.
|
2001-11-28 12:36:01
| 1,006,970,000 |
verified fixed
|
1b2b942
| 1,008,160,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionDialog.java
|
JDT
|
6,151 | 3,959 |
Bug 3959 Dupilcate entry in save before copy dialog (1GF9IYY)
|
Open two java perspectives in two windows. Open the same .java file in both perspectives Change the contents of the file but do not save Select copy from the file's popup menu Note that in the dialog that appears the file is listed twice. NOTES:
|
2001-10-10 23:03:42
| 1,002,770,000 |
resolved fixed
|
ae06abd
| 1,008,100,000 |
org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/PreviewWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPlugin.java
|
JDT
|
6,152 | 6,794 |
Bug 6794 ProgressMonitorPart.setTaskName should update text label as ProgressMonitorDialog does
|
The ProgressMonitorDialog updates the task label if the method setTaskName is called. ProgressMonitorPart doesn't do so. As a consequence progress reporting looks different if an operation in executed in a wizard or using a progress monitor dialog. I think, they should behave the same.
|
2001-12-11 11:03:52
| 1,008,090,000 |
resolved fixed
|
f2717d8
| 1,008,090,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/sef/SelfEncapsulateFieldRefactoring.java
|
JDT
|
6,153 | 6,758 |
Bug 6758 Class name corrupted by creating member class using wizard
|
Build 20011206 - opened org.eclipse.ui.actions.DeleteResourceAction - using new class wizard, created member class named DeleteProjectDialog as a subclass of MessageDialog (in org.eclipse.jface.dialogs) - the result was: ... public class DeleteRes ourceAction extends SelectionListenerAction { public class DeleteProjectDialog extends MessageDialog { } ... Note the extra tab in DeleteResourceAction, and the strange formatting for the new class.
|
2001-12-10 14:24:47
| 1,008,010,000 |
resolved fixed
|
5a7c982
| 1,008,080,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java
|
JDT
|
6,154 | 6,754 |
Bug 6754 Hierarchy does not show selection on F4
|
Build 20011206 - opened hierarchy on org.eclipse.jface.dialogs.MessageDialog - selected Dialog superclass and hit F4 - the resulting hierarchy was scrolled to the end, with the selection (Dialog) not visible
|
2001-12-10 14:15:53
| 1,008,010,000 |
resolved fixed
|
19bbeec
| 1,008,080,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java
|
JDT
|
6,155 | 6,238 |
Bug 6238 jar packager: ide freezes on page flip, no progress shown
|
i selected org.eclipse.jdt.ui org.eclipse.jdt.ui.tests.refactoring (couple thousands of files) and opened the jar packager or flipping the page the whole ide froze. and there was no progress report shown. it took more or less 2 minutes - of total freeze - to flip to the other wizard page. i suggest performing it in another thread and showing progress
|
2001-11-22 13:38:14
| 1,006,450,000 |
resolved fixed
|
d5959ae
| 1,008,010,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/CheckboxTreeAndListGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWizardPage.java
|
JDT
|
6,156 | 6,722 |
Bug 6722 JavaElementLabelProvider API - small issue
|
everytime i use this label provider it annoys me that i have to type new JavaElementLabelProvider(JavaElementLabelProvider.SHOW_DEFAULT) if it's default then it should be default, if you know what i mean. all i need is: public JavaElementLabelProvider() { this(JavaElementLabelProvider.SHOW_DEFAULT); } it'd make things easier. i'd fix it myself but it's API so i guess it should be blessed first.
|
2001-12-10 09:11:09
| 1,007,990,000 |
resolved fixed
|
566e615
| 1,008,000,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaElementLabelProvider.java
|
JDT
|
6,157 | 6,672 |
Bug 6672 jar no longer exported after attach source
|
1206 1. Create a project test. 2. Add a jar (say resources.jar) to the classpath and export the entry 3. Attach source (say resourcessrc.zip) to the jar. Notice, the jar is no longer exported - this information is discarded during the attach source process.
|
2001-12-07 09:47:46
| 1,007,740,000 |
verified fixed
|
787255e
| 1,007,740,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceAttachmentBlock.java
|
JDT
|
6,158 | 5,853 |
Bug 5853 Jar packager: progress reporting not optimal
|
- follow smoke test until step "Create a Jar from a Jar Package Description" - do the steps observe: the progress bar show 100% right from the beginning.
|
2001-11-13 12:29:08
| 1,005,670,000 |
resolved fixed
|
dc99df8
| 1,007,740,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarFileExportOperation.java
|
JDT
|
6,159 | 6,478 |
Bug 6478 Jar packager progress messages misleading
|
When exporting classes to a JAR file, the progress message says things like: "Exporting org.eclipse.foo.MyFile.java" This is misleading, because it looks like it's adding .java files to the zip, but it's actually adding class files. I actually canceled the export and went to check the jar file when I saw these messages. I suggest just trimming the .java suffix: "Exporting org.eclipse.foo.MyFile"
|
2001-11-30 12:39:57
| 1,007,140,000 |
verified fixed
|
d551209
| 1,007,740,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarFileExportOperation.java
|
JDT
|
6,160 | 5,571 |
Bug 5571 JAR Packager: Reveal first checked project
|
If the list of projects in the JAR Packager is long it is possible that the shown projects are not checked even though there are checked projects (due to current selection). ==> reveal the first checked project.
|
2001-11-06 09:58:33
| 1,005,060,000 |
closed fixed
|
9cf7888
| 1,007,740,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/CheckboxTreeAndListGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/jarpackager/JarPackageWizardPage.java
|
JDT
|
6,161 | 4,052 |
Bug 4052 document change infrastructure - missing functionality (1GH2DWC)
|
AK (7/18/2001 4:45:27 PM) i stumbled across this when doing Reorder Parameters. consider the following text: m(m(1, 2),3) lets's say you want to swap the parameters. so your desired output is: m(3, m(2, 1)) you create 4 move entries in the change creator (first 'm' has position 1): . move(5, 1] -> 7 //moves the first parameter of the inner call . move[7, 1] -> 5 //moves the 2nd parameter of the inner call . move [3, 6] -> 10 //moves the first parameter of the outer call . move [10, 1] -> 3 //moves the 2nd parameter of the outer call this gets splitted into 4 replaces (will not give details here - see code of AbstractTextBufferChange) anyways, the replaces are sorted backwards before execution. to cut the story short - you end up with: m(3, m(1, 2)) the reason is: the moves are treated in the same way as replaces. they should not be, if they overlap. there should a hierarchy of moves - or another way to say: 'this move must be done before that move' in the case above - the inner moves must be done before the outer ones. this is quite serious and i'm not sure how to nicely work around it. DB (31.07.2001 15:12:06) The current change infrastructure doesn't support any kind of overlapping manipulation. So this is somehow by design. What you can do is to create two distinct text changes. The first changing m(1,2) to m(2,1) and a second one changing m(m(2,1), 3) to m(3, m(2,1)). DB (08.08.2001 14:50:58) I opt to not fix this PR since creating two document changes fixes the problem, although it is not optimal from a speed point of view (the document gets read two times). May be with an improved IBuffer implementation (see 1GEJ61L) the speed trade off isn't a problem anymore.
|
2001-10-10 23:05:15
| 1,002,770,000 |
resolved fixed
|
fb51769
| 1,007,720,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/ImportEdit.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/textmanipulation/MultiTextEdit.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/textmanipulation/SimpleTextEdit.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/textmanipulation/TextBufferEditor.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/textmanipulation/TextEdit.java org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/util/Bindings.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExceptionAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/ExtractMethodRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/StatementAnalyzer.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeElementTreeViewer.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/InlineTempWizard.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/NewPreviewWizardPage.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/PreviewWizardPage.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/RenameParametersWizard.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/RenameRefactoringWizard.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/actions/ExtractMethodAction.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/code/ExtractMethodWizard.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/nls/ExternalizeWizard.java org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/sef/SelfEncapsulateFieldWizard.java
|
JDT
|
6,162 | 6,407 |
Bug 6407 reminder: register the context menu in the JavaOutlinePage
|
the context menu in the JavaOutlinePage should be registered with the page's site.
|
2001-11-28 18:47:18
| 1,006,990,000 |
resolved fixed
|
31519fa
| 1,007,490,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java
|
JDT
|
6,163 | 6,525 |
Bug 6525 wrong indent when using replace from local history
|
JUnit set-up 1) Change junit.tests.createResult() 2) save 3) replace from local history 4) select previous edition -> method is inserted with wrong indent repeat 3) indent is accumulated
|
2001-12-03 18:19:15
| 1,007,420,000 |
verified fixed
|
4b07fd1
| 1,007,480,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codemanipulation/MemberEdit.java
|
JDT
|
6,164 | 6,536 |
Bug 6536 Add Javadoc on field in TH does nothing
|
1. Select a field in the Type Hierarchy view 2. From its context menu select "Add Javadoc" ==> nothing happens. Either this menu should be removed or (preferably) the action should add the fields Javadoc.
|
2001-12-04 04:21:31
| 1,007,460,000 |
verified fixed
|
49752b4
| 1,007,460,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/AddJavaDocStubAction.java
|
JDT
|
6,165 | 4,974 |
Bug 4974 Set classpath / output location should be one operation
|
204: 1. create a project with 'src' as source folder and 'bin' as output location. 2. in the project properties change the setting to use the project as source folder and the project as output location. Press Ok You get the error message: 'Cannot nest outputfolder /xy in source folder /xy/src' The problem is that setting outputlocation and classpath are two operations. By setting the first, an illegal state is created. -> Like the validation (checking classpath and outputlocation at once), the setting of classpath / output location should be offered as one operation. Note that the error message is strange. I guess it should say: '/xy/src' can not be nested in '/xy'
|
2001-10-15 06:06:59
| 1,003,140,000 |
resolved fixed
|
35d95cb
| 1,007,130,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java
|
JDT
|
6,166 | 4,381 |
Bug 4381 Replace from local histroy - workspace element included
|
- modify a CU in the workspace - select the CU - activate "Replace from local history" - the workspace element is included in the local histroy, but a histroy never includes the actual element. I was really suprised seeing the element.
|
2001-10-11 10:48:44
| 1,002,810,000 |
resolved fixed
|
5439e11
| 1,007,060,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaAddElementFromHistory.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaCompareUtilities.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaCompareWithEditionAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaReplaceWithEditionAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/JavaTextBufferNode.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/TextBufferNode.java
|
JDT
|
6,167 | 6,412 |
Bug 6412 API Request - Package selection dialog including pre-reqs
|
The Java debugger requires the ability to specify a "pacakge to run in" in the snippet editor. To do this, we use the API on JavaUI to create a package selection dialog for a project. However, we need to be able to choose from packages in pre-req projects/jars as well. Currently the API only specifies packages in a single project.
|
2001-11-28 21:00:57
| 1,007,000,000 |
resolved fixed
|
a5cfa23
| 1,007,050,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/IJavaElementSearchConstants.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/JavaUI.java
|
JDT
|
6,168 | 5,677 |
Bug 5677 Hierarchy outline has empty space
|
I opened a hierarchy view on IActionDelegate. Selected a few of the subinterfaces, changed the expansion state of the tree. Then, no matter which item I selected in the top window (the hierarchy tree), the bottom window (the outline table) always had exactly four empty rows before the first item was listed.
|
2001-11-08 14:02:02
| 1,005,250,000 |
resolved fixed
|
e23f1fe
| 1,007,030,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/CheckedListDialogField.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/ListDialogField.java
|
JDT
|
6,169 | 5,225 |
Bug 5225 1.0 -- Casting problem in RunToLineAction class
|
The Java editor fails to open a java source file when we have PICLDebugTargets in the debug view. There is java.lang.ClassCastException at org.eclipse.jdt.internal.ui.javaeditor.RunToLineAction.getContextFromModel (RunToLineAction.java:111) The getContextFromModel() method incorrectly assumes that all debug targets are of type JDIDebugTarget. I see a few other spots in RunToLineAction where a debug target is blindly cast to a JDIDebugTarget without checking it first. I am seeing this with the R1.0 (0.137 build) driver. I don't think this is a new problem.
|
2001-10-24 16:31:28
| 1,003,960,000 |
verified fixed
|
e66d704
| 1,007,000,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/RunToLineAction.java
|
JDT
|
6,170 | 6,375 |
Bug 6375 Organize imports asks to specify the same class
|
Perform 'organize imports' against a class that has import javax.naming.* in it, and has 2 jars on the classpath that both contain javax.naming.InitialContext. You will get a dialog asking which type to import. In the list, you will see 'javax.naming.InitialContext' twice in the list. Can change 'Organize imports' so that it recognizes that these are the same package/class and does NOT prompt the user to choose between the same class?
|
2001-11-28 01:20:17
| 1,006,930,000 |
resolved fixed
|
0acbfa2
| 1,006,970,000 |
org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/codegeneration/OrganizeImportsOperation.java
|
JDT
|
6,171 | 6,356 |
Bug 6356 Outliner has to delete actions
|
Product version: smoke test for integration build 20011127 - load compilation unit into Java editor - open context menu in outliner observe: there are two delete actions
|
2001-11-27 12:21:00
| 1,006,880,000 |
verified fixed
|
7f801b9
| 1,006,890,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaOutlinePage.java
|
JDT
|
6,172 | 6,062 |
Bug 6062 JavaDocCompletionProcessor should be have configurable case sensitivity
|
Need implementation of the following JavaDocCompletionProcessor method public void restrictProposalsToMatchingCases(boolean restrict.
|
2001-11-19 09:25:45
| 1,006,180,000 |
resolved fixed
|
0114a08
| 1,006,880,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/CompletionEvaluator.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/JavaDocCompletionProcessor.java
|
JDT
|
6,173 | 6,322 |
Bug 6322 All types dialog shows obfuscated classes
|
JDK 1.4 includes obfuscated classes (a, a1, b, c, d) etc. This classes show up prominently in the Open Type dialog. They should be less prominent. Options: a) sort lower case class names after the ones that start with a capital letter b) filter them out completly. I suggest to a)
|
2001-11-26 12:57:36
| 1,006,800,000 |
verified fixed
|
b87b856
| 1,006,880,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/FilteredList.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionDialog.java
|
JDT
|
6,174 | 6,092 |
Bug 6092 JavaEditor should honor the tab width setting of the JavaFormatter
| null |
2001-11-20 06:00:12
| 1,006,250,000 |
verified fixed
|
896299e
| 1,006,870,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeFormatterPreferencePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaEditorPreferencePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java
|
JDT
|
6,175 | 6,181 |
Bug 6181 Edit template panel doesn't resize
|
The panel is small and can't be resized. It also has a maximize button that is not operational.
|
2001-11-21 14:22:37
| 1,006,370,000 |
verified fixed
|
ac79605
| 1,006,800,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/AbstractElementListSelectionDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/EditTemplateDialog.java
|
JDT
|
6,176 | 6,308 |
Bug 6308 Open type dialog should trim entered value
|
Leading and trailing spaces should be ignored in the input field of this dialog
|
2001-11-26 09:25:45
| 1,006,780,000 |
verified fixed
|
6e296de
| 1,006,800,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/FilteredList.java
|
JDT
|
6,177 | 4,369 |
Bug 4369 F2 should work even if "Hide Text Hover" is enabled
|
- enable "Hide Text Hover" - position the cursor on a type - press F2 observe: nothing happens although I explicitly requested JavaDoc help.
|
2001-10-11 08:53:14
| 1,002,800,000 |
resolved fixed
|
ce37c8c
| 1,006,800,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/WorkInProgressPreferencePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaInformationProvider.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaTextHover.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaTypeHover.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/java/hover/IJavaEditorTextHover.java
|
JDT
|
6,178 | 6,196 |
Bug 6196 Last item selected by default in variable selection dialog
|
Build 20011120 - go to add a classpath variable - Browse for var name - it selects the last item by default Normally the default selection is the first item. This seems picky, but it's actually fairly annoying when using keyboard navigation for the default selection to be in the wrong place. (particularly when the one I always go for is ECLIPSE_HOME, which is always the first item <g>).
|
2001-11-21 16:49:42
| 1,006,380,000 |
verified fixed
|
e26dfad
| 1,006,530,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/ChooseVariableDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/LibrariesWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/ProjectsWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableSelectionBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/ListDialogField.java
|
JDT
|
6,179 | 6,207 |
Bug 6207 Java project properties dialog grows taller than screen
|
build 20011116 The Java Build Path/Order page in the project properties dialog always grows the table to show all items. In a workspace with many source folders the properties dialog grows so tall that you can no longer see the ok/cancel buttons. I noticed this while using WSDD (Eclipse 1.0 based) to create P3ML bundles. P3ML consists of about 20 bundles with each bundle living in a separate source folder. Note that the resize only happens when the dialog is reopened. If you create source folders in the properties dialog and then switch to the order page you will see scroll bars. Also, it seems that this only happens when there is a large number of source folders. When I reference a lot of projects the height of the order page is limited and the table shows scroll bars.
|
2001-11-21 17:47:39
| 1,006,380,000 |
resolved fixed
|
1b69a90
| 1,006,530,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/ImportOrganizeInputDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HistoryListAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/ContainerPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewClassCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewInterfaceCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewPackageCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewSourceFolderCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/ClasspathOrderingWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/LibrariesWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/NewContainerDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableCreationDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableSelectionBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/CheckedListDialogField.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/DialogField.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/LayoutUtil.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/ListDialogField.java
|
JDT
|
6,180 | 4,151 |
Bug 4151 Value hovering should show type name not only value (1GIYQVJ)
|
EG (24.08.2001 14:42:59) value hovering should show the runtime type in addition to the value NOTES:
|
2001-10-10 23:06:54
| 1,002,770,000 |
resolved fixed
|
d26b1c4
| 1,006,440,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/hover/JavaDebugHover.java
|
JDT
|
6,181 | 5,449 |
Bug 5449 TVT Text Expansion/Truncations in new java class dialog
| null |
2001-11-01 19:10:16
| 1,004,660,000 |
resolved fixed
|
24c773c
| 1,006,440,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/HistoryListAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/VariableBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/ListDialogField.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/dialogfields/SelectionButtonDialogFieldGroup.java
|
JDT
|
6,182 | 3,622 |
Bug 3622 New Package Wizard has confusing message (1GD0L9O)
|
1. Create a new Java Project 2. Select the project. 3. Invoke New Java Package. Result: Before you type anything the following message appears at the top: "A folder corresponding to the package name already exists". At this point my package name field is empty. What does this message mean? Is this an error? If so, should it be displayed in red with the error icon? NOTES: EG (5/1/2001 5:53:41 AM) there should be no error message when the package name field is empty and finish should be disabled. MA (5/2/01 9:34:00 AM) It is a warning. I will remove the message EG (5/2/01 9:43:44 AM) issue how to create a default package? It can't be created by the user since it always there.
|
2001-10-10 22:58:08
| 1,002,770,000 |
verified fixed
|
0870c24
| 1,006,430,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewPackageCreationWizardPage.java
|
JDT
|
6,183 | 5,475 |
Bug 5475 F4 causes loss of context when called from a method view
|
1) Open a class with many methods 2) Make sure "show of source element only" is selected 3) Choose a method 4) Press F4 with no selection The class is open on the hierarchy view and the full source is shown in the editor. The method focus was lost. You have to find and select the method again.
|
2001-11-02 11:38:09
| 1,004,720,000 |
resolved fixed
|
798e9a2
| 1,006,430,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/SelectionProviderMediator.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewer.java
|
JDT
|
6,184 | 4,155 |
Bug 4155 Source Attachment wizard for variable classpath entries not correct (1GJ6X9P)
|
(1) Create a directory containing a .jar file and a .zip source archive for the jar The .zip archive should have a non-null root path to the source. (2) create a classpath variable which points to this directory (3) place this .jar file in your classpath using the variable (4) use the Java Source Attachment wizard to set the source archive Attempt to use the "root variable path". The "browse..." button is inactive unless the text field is non-empty. If the text field is non-empty, pressing the browse... button shows the source archive no matter what is in the field. If you make a selection in the paths shown that are relative to the archive, any path that is deeper than the first is entered without the intervening path variables. For example, suppose the archive resolves to c:\blort\blort.zip. I can type "junk" in the root variable path field to activate the "browse..." button. Pressing "browse..." shows the structure of "c:\blort\blort.zip". If I select work/src/main as the source root directory in blort.zip for blort.jar and press OK the text field for "root variable path" now reads: junk/main. NOTES:
|
2001-10-10 23:06:58
| 1,002,770,000 |
resolved fixed
|
ffa99aa
| 1,006,360,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceAttachmentBlock.java
|
JDT
|
6,185 | 4,077 |
Bug 4077 JDK1.4 - Assertions - text coloring should deal with 'assert' (1GHS3A3)
|
If the JavaCore option related to source mode is set in 1.4 mode, then 'assert' is a keyword which has to be coloured properly. Assertions are only supported in the 2.0 stream of jdtcore. Configurable options are also subject to improvements. NOTES:
|
2001-10-10 23:05:40
| 1,002,770,000 |
verified fixed
|
2a5b45c
| 1,006,360,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerPreferencePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCodeScanner.java
|
JDT
|
6,186 | 3,793 |
Bug 3793 Wrong formating when creating inner class using wizard (1GEUE91)
|
- select TestCase - create a new class using TestCase as an eclosing type observe: - new type is added at the end. Quasi standard is having the new type at the beginning. - new type doesn't have indention. NOTES: GDA (6/5/01 11:08:09 AM) defer
|
2001-10-10 23:00:58
| 1,002,770,000 |
verified fixed
|
a29ff25
| 1,006,360,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java
|
JDT
|
6,187 | 4,172 |
Bug 4172 feature: auto select "Inherited Abstract Methods" (1GJLAE7)
|
jkca (9/5/2001 11:56:30 AM) It would be nice if the New Class Wizard automatically selected "Inherited Abstract Methods" when the user adds an interface to the Extended Interfaces list. I argue that most users will want this selected if they plan to implement an interface.
|
2001-10-10 23:07:15
| 1,002,770,000 |
verified fixed
|
b03d332
| 1,006,360,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewClassCreationWizardPage.java
|
JDT
|
6,188 | 6,147 |
Bug 6147 Templates don't work in "Show source of selected element only" mode
| null |
2001-11-21 04:34:50
| 1,006,340,000 |
resolved fixed
|
762a35c
| 1,006,340,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/link/LinkedPositionUI.java
|
JDT
|
6,189 | 4,071 |
Bug 4071 Format option loses place in editor (1GHQFU6)
|
If you select the Format option from the pop up menu in a Java Editor your current selection location is lost requiring you to search around for it again. STEPS 1) Open a relatively large .java file 2) Go near the bottom 3) Select format - you are sent back to the top. NOTES:
|
2001-10-10 23:05:34
| 1,002,770,000 |
resolved fixed
|
4531f76
| 1,006,340,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaFormattingStrategy.java
|
JDT
|
6,190 | 6,009 |
Bug 6009 New class wizard doesn't get context right for nested classes
|
Build 20011106. - with a .java file open in the editor, - click the new class button - check "Enclosing Type" - the field is blank - it should default to the current type in the editor
|
2001-11-16 10:45:11
| 1,005,930,000 |
verified fixed
|
eaf4bd8
| 1,006,270,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/JavaModelUtil.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/TypePage.java
|
JDT
|
6,191 | 5,765 |
Bug 5765 New Class button in empty workspace should be more supportive
|
User feedback: "Confused how to create my first project" We should be more supportive in the UI for this special case since it is a first time experience with the UI. Therefore when the workbench is empty we should offer to create a new Java project. Minimal solution is to show an info dialog that explains that user should create a project first and offer a button to open the Java project wizard. The same is true for the new package and new interface buttons.
|
2001-11-10 15:14:26
| 1,005,420,000 |
resolved fixed
|
ed4c009
| 1,006,270,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/AbstractOpenWizardAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/AbstractOpenWizardAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/ContainerPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewClassCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewInterfaceCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/NewPackageCreationWizardPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/OpenClassWizardAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/OpenInterfaceWizardAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/OpenPackageWizardAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/OpenProjectWizardAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/OpenSnippetWizardAction.java
|
JDT
|
6,192 | 6,050 |
Bug 6050 Avoid references to preference pages
|
Preference pages are optional. It should be possible to add and remove them from the code without further impact on the system. I.e. preference pages should not be used as accessors to preference settings. (See JavaCompletionProcessor)
|
2001-11-19 06:01:51
| 1,006,170,000 |
resolved fixed
|
a28ec98
| 1,006,250,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/WorkInProgressPreferencePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/ExperimentalPreference.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCompletionProcessor.java
|
JDT
|
6,193 | 6,054 |
Bug 6054 renaming a read-only package resets the read-only flag [refactoring]
|
as said in the summery: renaming a read-only package resets the read-only flag
|
2001-11-19 06:31:52
| 1,006,170,000 |
resolved fixed
|
60dde0a
| 1,006,200,000 |
org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testReadOnly/in/r/A.java org.eclipse.jdt.ui.tests.refactoring/resources/RenamePackage/testReadOnly/out/p1/A.java org.eclipse.jdt.ui.tests.refactoring/test cases/org/eclipse/jdt/ui/tests/refactoring/RenamePackageTests.java
|
JDT
|
6,194 | 6,051 |
Bug 6051 IllegalArgumentException in Initializer constructor
|
Build 20011115 Trying to browse the (newly added) static initializer of JavaModelManager: Log: Mon Nov 19 12:20:19 CET 2001 1 org.eclipse.core.resources 4 Unhandled exception caught in event loop. Unhandled exception caught in event loop. Reason: Log: Mon Nov 19 12:20:19 CET 2001 4 org.eclipse.ui 0 java.lang.IllegalArgumentException java.lang.IllegalArgumentException at org.eclipse.jdt.internal.core.Initializer.<init>(Initializer.java:24) at org.eclipse.jdt.internal.core.SourceType.getInitializer(SourceType.ja va:132) at org.eclipse.jdt.internal.ui.util.JavaModelUtil.findMemberInCompilatio nUnit(JavaModelUtil.java:161) at org.eclipse.jdt.internal.ui.util.JavaModelUtil.findInCompilationUnit( JavaModelUtil.java:208) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.getWorkingCopy(E ditorUtility.java:272) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.getCorre spondingElement(CompilationUnitEditor.java:525) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.setSelection(JavaEd itor.java:257) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.revealInEditor(E ditorUtility.java:110) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.linkToEdi tor(PackageExplorerPart.java:762) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.handleSel ectionChanged(PackageExplorerPart.java:691) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.access$0( PackageExplorerPart.java:687) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart$3.selecti onChanged(PackageExplorerPart.java:317) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:147 ) at org.eclipse.jface.viewers.StructuredViewer.updateSelection(Structured Viewer.java:907) at org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredVie wer.java:463) at org.eclipse.jface.viewers.AbstractTreeViewer$1.widgetSelected(Abstrac tTreeViewer.java:624) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java: 85) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:54) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:635) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1365) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1167) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:729) at org.eclipse.ui.internal.Workbench.run(Workbench.java:712) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoa der.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:502) at org.eclipse.core.launcher.UIMain.main(UIMain.java:52) java.lang.IllegalArgumentException
|
2001-11-19 06:09:01
| 1,006,170,000 |
resolved fixed
|
4029c4d
| 1,006,190,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/JavaModelUtil.java
|
JDT
|
6,195 | 5,820 |
Bug 5820 Close all editors brings up hierarchy of object
|
Build: 1107 1. Open a Java editor in the Java perspective 2. Select the project 3. Hit Ctrl-Shift-F4 The hierarchy for Object appears after ~30 seconds. This is very confusing.
|
2001-11-12 18:18:05
| 1,005,610,000 |
verified fixed
|
13251cf
| 1,006,190,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewPart.java
|
JDT
|
6,196 | 5,810 |
Bug 5810 Walkback during text delete/save in Java Editor
|
Log: Mon Nov 12 14:53:10 EST 2001 4 org.eclipse.jdt.ui 1 Internal Error Java Model Exception: Java Model Status [org.eclipse.swt.custom does not exist.] at org.eclipse.jdt.internal.core.JavaElement.newNotPresentException (JavaElement.java:442) at org.eclipse.jdt.internal.core.JavaElement.openHierarchy (JavaElement.java:471) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo (JavaElement.java(Compiled Code)) at org.eclipse.jdt.internal.core.SourceRefElement.getSourceRange (SourceRefElement.java(Compiled Code)) at org.eclipse.jdt.internal.core.JavaElement.getSourceElementAt (JavaElement.java:375) at org.eclipse.jdt.internal.core.CompilationUnit.getElementAt (CompilationUnit.java:282) at org.eclipse.jdt.internal.ui.actions.StructuredSelectionProvider$Adapter.asStruct uredSelection(StructuredSelectionProvider.java:74) at org.eclipse.jdt.internal.ui.actions.StructuredSelectionProvider$Adapter.asStruct uredSelection(StructuredSelectionProvider.java:48) at org.eclipse.jdt.internal.ui.actions.StructuredSelectionProvider$SelectionService Adapter.getSelection(StructuredSelectionProvider.java:142) at org.eclipse.jdt.internal.ui.actions.OpenSuperImplementationAction.getMethod (OpenSuperImplementationAction.java:69) at org.eclipse.jdt.internal.ui.actions.OpenSuperImplementationAction.canOperateOn (OpenSuperImplementationAction.java:61) at org.eclipse.jdt.internal.ui.actions.OpenSuperImplementationAction.update (OpenSuperImplementationAction.java:57) at org.eclipse.ui.texteditor.AbstractTextEditor.addAction (AbstractTextEditor.java:1694) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.editorContextMenuAboutToShow (JavaEditor.java:137) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.editorContextMenuAb outToShow(CompilationUnitEditor.java:482) at org.eclipse.ui.texteditor.AbstractTextEditor$2.menuAboutToShow (AbstractTextEditor.java:658) at org.eclipse.jface.action.MenuManager.fireAboutToShow (MenuManager.java:220) at org.eclipse.jface.action.MenuManager.handleAboutToShow (MenuManager.java:253) at org.eclipse.jface.action.MenuManager.access$0(MenuManager.java:250) at org.eclipse.jface.action.MenuManager$1.menuShown (MenuManager.java:280) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java (Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:2901) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java (Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu.setVisible(Menu.java:740) at org.eclipse.swt.widgets.Control.WM_CONTEXTMENU(Control.java:2726) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.CallWindowProcA(Native Method) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java(Compiled Code)) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DefWindowProcA(Native Method) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java (Compiled Code)) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java (Compiled Code)) at org.eclipse.swt.widgets.Control.WM_RBUTTONUP(Control.java:3560) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.CallWindowProcA(Native Method) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java(Compiled Code)) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DispatchMessageA(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java(Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java (Compiled Code)) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java (Compiled Code)) at org.eclipse.ui.internal.Workbench.run(Workbench.java:710) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:502) at org.eclipse.core.launcher.Main.main(Main.java:362) 4 org.eclipse.jdt.core 969 org.eclipse.swt.custom does not exist.
|
2001-11-12 14:44:37
| 1,005,590,000 |
resolved fixed
|
f73c16a
| 1,006,190,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/OpenSuperImplementationAction.java
|
JDT
|
6,197 | 6,008 |
Bug 6008 deleting a source folder does not remove it from classpath
|
see summary
|
2001-11-16 10:24:46
| 1,005,920,000 |
resolved fixed
|
2f25eb8
| 1,005,930,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/reorg/DeleteRefactoring.java
|
JDT
|
6,198 | 5,889 |
Bug 5889 NPE on copying source folder
|
try copying a source folder to another project: java.lang.NullPointerException at org.eclipse.core.runtime.Path.append(Path.java(Compiled Code)) at org.eclipse.jdt.internal.core.refactoring.changes.AddToClasspathChange.<init> (AddToClasspathChange.java:39) at org.eclipse.jdt.internal.core.refactoring.reorg.CopyRefactoring.createChange (CopyRefactoring.java:143) at org.eclipse.jdt.internal.core.refactoring.reorg.ReorgRefactoring.createChange (ReorgRefactoring.java:188) at org.eclipse.jdt.internal.core.refactoring.reorg.ReorgRefactoring.createChange (ReorgRefactoring.java:175) at org.eclipse.jdt.internal.ui.refactoring.CreateChangeOperation.run (CreateChangeOperation.java:102) at org.eclipse.jdt.internal.ui.refactoring.PerformChangeOperation.run (PerformChangeOperation.java:118) at org.eclipse.jface.operation.ModalContext.runInCurrentThread (ModalContext.java:296) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:249) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run (ProgressMonitorDialog.java:335) at org.eclipse.jdt.internal.ui.reorg.ReorgAction.perform (ReorgAction.java:52) at org.eclipse.jdt.internal.ui.reorg.ReorgDestinationAction.doReorg (ReorgDestinationAction.java:151) at org.eclipse.jdt.internal.ui.reorg.ReorgDestinationAction.run (ReorgDestinationAction.java:93) at org.eclipse.jface.action.Action.runWithEvent(Action.java:453) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:407) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent (ActionContributionItem.java:361) at org.eclipse.jface.action.ActionContributionItem.access$0 (ActionContributionItem.java:352) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent (ActionContributionItem.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java (Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:635) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1365) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1167) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:729) at org.eclipse.ui.internal.Workbench.run(Workbench.java:712) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:502) at org.eclipse.core.launcher.UIMain.main(UIMain.java:52) at ZRHMain.main(ZRHMain.java:14) Log: Wed Nov 14 15:32:40 GMT+01:00 2001
|
2001-11-14 09:27:53
| 1,005,750,000 |
resolved fixed
|
315711d
| 1,005,930,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/reorg/CopyRefactoring.java
|
JDT
|
6,199 | 5,818 |
Bug 5818 Debugger Source Lookup page claims project is closed
|
I have a Java project in my workspace, and it is not closed. Upon starting the workbench, Project->Properties->Debugger Source Lookup, the page claims that debugger source lookup is not available for closed projects. If I force a build of the project, it works as expected. If I close the workbench and restart, I get the same problem. 20011106
|
2001-11-12 17:26:14
| 1,005,600,000 |
verified fixed
|
6601def
| 1,005,860,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/launcher/JavaProjectPropertyPage.java
|
JDT
|
6,200 | 5,804 |
Bug 5804 Bug in ClassFileEditor.getCorrespondingElement
|
protected IJavaElement getCorrespondingElement(IJavaElement element) { IJavaElement parent= JavaModelUtil.findParentOfKind(element, IJavaElement.CLASS_FILE); return (parent == this ? element : null); } 'this' is a ClassFileEditor, so parent will never be 'this'
|
2001-11-12 13:18:05
| 1,005,590,000 |
resolved fixed
|
1b248b4
| 1,005,820,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/ClassFileEditor.java
|
JDT
|
6,201 | 5,886 |
Bug 5886 refactoring wizard: NPE
|
1. run self encapsulate field 2. press 'next' on the first page - you get the preview' 3. press 'back' on the preview page java.lang.NullPointerException at org.eclipse.jdt.internal.ui.refactoring.ChangeElementTreeViewer.initializeChildr en(ChangeElementTreeViewer.java:61) at org.eclipse.jdt.internal.ui.refactoring.ChangeElementTreeViewer.inputChanged (ChangeElementTreeViewer.java:57) at org.eclipse.jface.viewers.ContentViewer.setInput (ContentViewer.java:234) at org.eclipse.jface.viewers.StructuredViewer.setInput (StructuredViewer.java:659) at org.eclipse.jdt.internal.ui.refactoring.NewPreviewWizardPage.setChange (NewPreviewWizardPage.java:132) at org.eclipse.jdt.internal.ui.refactoring.RefactoringWizard.setChange (RefactoringWizard.java:110) at org.eclipse.jdt.internal.ui.refactoring.UserInputWizardPage.setVisible (UserInputWizardPage.java:94) at org.eclipse.jdt.internal.ui.refactoring.TextInputWizardPage.setVisible (TextInputWizardPage.java:153) at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:882) at org.eclipse.jface.wizard.WizardDialog.backPressed (WizardDialog.java:291) at org.eclipse.jface.wizard.WizardDialog.buttonPressed (WizardDialog.java:303) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:211) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:85) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java (Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:635) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1365) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1167) at org.eclipse.jface.window.Window.runEventLoop(Window.java:536) at org.eclipse.jface.window.Window.open(Window.java:523) at org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringAction.activateRefact oringWizard(RefactoringAction.java:65) at org.eclipse.jdt.internal.ui.reorg.RefactoringSupportFactory$RenameSupport.rename (RefactoringSupportFactory.java:57) at org.eclipse.jdt.internal.ui.reorg.RenameAction.run (RenameAction.java:27) at org.eclipse.jface.action.Action.runWithEvent(Action.java:453) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:407) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent (ActionContributionItem.java:361) at org.eclipse.jface.action.ActionContributionItem.access$0 (ActionContributionItem.java:352) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent (ActionContributionItem.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java (Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:635) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1365) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1167) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:729) at org.eclipse.ui.internal.Workbench.run(Workbench.java:712) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:502) at org.eclipse.core.launcher.UIMain.main(UIMain.java:52) at ZRHMain.main(ZRHMain.java:14) Log: Wed Nov 14 15:07:59 GMT+01:00 2001
|
2001-11-14 09:01:44
| 1,005,750,000 |
resolved fixed
|
05272cb
| 1,005,770,000 |
org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/ChangeElementTreeViewer.java
|
JDT
|
6,202 | 5,873 |
Bug 5873 Open Type Dialog doesn't behave as expected for former VAJ users
|
When using the 'Open Type' dialog in VisualAge for Java, you can type a few letters of the class name, and then use the UP/DOWN arrow keys to quickly select the desired type from the list. In Eclipse, you are required to hit the TAB key or use the mouse to move the focus to the list of types. Since a large number of Eclipse users are likely current/former VAJ users (who would likely consider this a bug), it would be nice if the Eclipse behavior could be changed to match VAJ.
|
2001-11-13 17:31:41
| 1,005,690,000 |
resolved fixed
|
60187c1
| 1,005,770,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/AbstractElementListSelectionDialog.java
|
JDT
|
6,203 | 5,722 |
Bug 5722 Selecting font crashes eclipse with a javacore
|
Eclipse V2.0 Build 20011107 OS: RedHat Linux 7.1 JDK version: /opt/IBMJava2-13/bin/ ./java -version java version "1.3.0" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0) Classic VM (build 1.3.0, J2RE 1.3.0 IBM build cx130-20010925 (JIT enabled: jitc)) To Reproduce: Startup eclipse (i had a fresh zip with no workspace and i specified no options) Open Window->Preferences->WorkBench->Font Select Text font ( my inital value here was "adobe-courier-regular-12" ) Click Change to bring up font dialog change the font size to 14. And click ok to dismiss the font dialog Click Apply on preferences page. Click OK on preferences Page. At this point eclipse crashes with ----- SIGSEGV 11 '(*) segmentation violation' in process 2524 si_signo [11]: SIGSEGV: (*) segmentation violation si_errno [0]: Success si_code [1]: SEGV_MAPERR [addr: 0x18433808] stackpointer=0xbffc19d8 Writing java dump to javacore2524.1005335380.txt ... OK -----javacore2524.1005335380.txt contents------------------- Fri Nov 9 14:49:40 2001 SIGSEGV received at 14458be5 in unknown. Processing terminated. J2RE 1.3.0 IBM build cx130-20010925 /opt/IBMJava2-13/jre/bin/exe/java -classpath ./startup.jar org.eclipse.core.launcher.Main -ws motif -application org.eclipse.ui.workbench -endsplash ./eclipse -endsplash 2523 System Properties ----------------- Java Home Dir: /opt/IBMJava2-13/jre Java DLL Dir: /opt/IBMJava2-13/jre/bin Sys Classpath: /opt/IBMJava2-13/jre/lib/rt.jar:/opt/IBMJava2-13/jre/lib/i18n.jar:/opt/IBMJava2-13/jre/classes User Args: -Djava.class.path=/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java/sqlj.zip:/home/db2inst1/sqllib/function:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java/runtime.zip:. -Djava.class.path=./startup.jar Current Thread Details ---------------------- PID:2524 "main" (TID:0x403487e0, sys_thread_t:0x804ff88, state:R, native ID:0x400) prio=5 at org.eclipse.swt.internal.motif.OS.XtSetValues(Native Method) at org.eclipse.swt.widgets.WidgetTable.remove(WidgetTable.java:94) at org.eclipse.swt.widgets.Widget.deregister(Widget.java:236) at org.eclipse.swt.widgets.Scrollable.deregister(Scrollable.java:136) at org.eclipse.swt.widgets.Widget.releaseWidget(Widget.java:651) at org.eclipse.swt.widgets.Control.releaseWidget(Control.java:1448) at org.eclipse.swt.widgets.Scrollable.releaseWidget(Scrollable.java:291) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Canvas.releaseWidget(Canvas.java:129) at org.eclipse.swt.widgets.Decorations.releaseWidget(Decorations.java:327) at org.eclipse.swt.widgets.Shell.releaseWidget(Shell.java:851) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:276) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:562) at org.eclipse.jface.window.Window.close(Window.java:194) at org.eclipse.jface.preference.PreferenceDialog.close(PreferenceDialog.java:204) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:523) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:166) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:211) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:85) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:489) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java(Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.jface.window.Window.runEventLoop(Window.java(Compiled Code)) at org.eclipse.jface.window.Window.open(Window.java:523) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:47) at org.eclipse.jface.action.Action.runWithEvent(Action.java:453) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:407) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:361) at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:352) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:489) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1561) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1411) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:727) at org.eclipse.ui.internal.Workbench.run(Workbench.java:710) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:502) at org.eclipse.core.launcher.Main.main(Main.java:362) ----- Native Stack ----- ------------------------------------------------------------------------- Operating Environment --------------------- Host : solipsist.(none) OS Level : 2.4.2-2.#1 Sun Apr 8 20:41:30 EDT 2001 glibc Version : 2.2.2 No. of Procs : 1 Memory Info: total: used: free: shared: buffers: cached: Mem: 393633792 325152768 68481024 0 27418624 164200448 Swap: 526376960 0 526376960 MemTotal: 384408 kB MemFree: 66876 kB MemShared: 0 kB Buffers: 26776 kB Cached: 160352 kB Active: 150980 kB Inact_dirty: 34480 kB Inact_clean: 1668 kB Inact_target: 856 kB HighTotal: 0 kB HighFree: 0 kB LowTotal: 384408 kB LowFree: 66876 kB SwapTotal: 514040 kB SwapFree: 514040 kB User Limits (in bytes except for NOFILE and NPROC) - RLIMIT_FSIZE : infinity RLIMIT_DATA : infinity RLIMIT_STACK : 2093056 RLIMIT_CORE : 1024000000 RLIMIT_NOFILE : 1024 RLIMIT_NPROC : 12286 Application Environment ----------------------- Signal Handlers - SIGQUIT : intrDispatchMD (libhpi.so) SIGILL : intrDispatchMD (libhpi.so) SIGTRAP : intrDispatchMD (libhpi.so) SIGABRT : intrDispatchMD (libhpi.so) SIGFPE : intrDispatchMD (libhpi.so) SIGBUS : intrDispatchMD (libhpi.so) SIGSEGV : intrDispatchMD (libhpi.so) SIGPIPE : ignored SIGUSR1 : sigusr1Handler (libhpi.so) SIGUSR2 : get_self (libhpi.so) Environment Variables - PWD=/home/manahan/eclipse WRASTER_COLOR_RESOLUTION0=4 COLORFGBG=default;default;0 LD_ASSUME_KERNEL=2.2.5 COLORTERM_BCE=Eterm WINDOWID=25165889 ETERM_VERSION=0.9.1 HOSTNAME=solipsist DB2INSTANCE=db2inst1 LD_LIBRARY_PATH=/opt/IBMJava2-13/jre/bin:/opt/IBMJava2-13/jre/bin/classic:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/lib HISTFILESIZE=500 QTDIR=/usr/lib/qt-2.3.0 CLASSPATH=/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java/sqlj.zip:/home/db2inst1/sqllib/function:/home/db2inst1/sqllib/java12/db2java.zip:/home/db2inst1/sqllib/java/runtime.zip:. LESSOPEN=|/usr/bin/lesspipe.sh %s KDEDIR=/usr USER=manahan LS_COLORS= MACHTYPE=i386-redhat-linux-gnu ETERM_USER_ROOT=/home/manahan/.Eterm/themes/Eterm WMAKER_BIN_NAME=/usr/local/bin/wmaker MAIL=/var/spool/mail/manahan INPUTRC=/etc/inputrc BASH_ENV=/home/manahan/.bashrc XMODIFIERS=@im=none LANG=en_US JAVAHOME=/opt/IBMJava2-13/jre LIBPATH=:/home/db2inst1/sqllib/lib COLORTERM=Eterm DISPLAY=:0.0 LOGNAME=manahan SHLVL=1 SHELL=/bin/bash HOSTTYPE=i386 CDPATH=.:/home/manahan:/work:/usr OSTYPE=linux-gnu HISTSIZE=500 IFS= HOME=/home/manahan TERM=Eterm SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass PATH=.:/opt/IBMJava2-13/bin:.:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/home/db2inst1/sqllib/java12:/home/manahan/bin:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/java12:/home/db2inst1/sqllib/bin:/home/db2inst1/sqllib/adm:/home/db2inst1/sqllib/misc:/home/manahan/bin ETERM_THEME_ROOT=/home/manahan/.Eterm/themes/Eterm IBM_JAVA_COMMAND_LINE=/opt/IBMJava2-13/jre/bin/exe/java -classpath ./startup.jar org.eclipse.core.launcher.Main -ws motif -application org.eclipse.ui.workbench -endsplash ./eclipse -endsplash 2523 JAVA_MAIN_VM=1076546644 Memory map ---------- 08048000-0804c000 r-xp 00000000 03:06 35165 /opt/IBMJava2-13/jre/bin/exe/java 0804c000-0804d000 rw-p 00003000 03:06 35165 /opt/IBMJava2-13/jre/bin/exe/java 0804d000-08909000 rwxp 00000000 00:00 0 40000000-40016000 r-xp 00000000 03:06 240591 /lib/ld-2.2.2.so 40016000-40017000 rw-p 00015000 03:06 240591 /lib/ld-2.2.2.so 40017000-40018000 rw-p 00000000 00:00 0 40018000-4001a000 r-xp 00000000 03:06 20255 /opt/IBMJava2-13/jre/bin/libxhpi.so 4001a000-4001b000 rw-p 00001000 03:06 20255 /opt/IBMJava2-13/jre/bin/libxhpi.so 4001b000-4001c000 r--p 00000000 03:06 176389 /usr/lib/locale/en_US/LC_IDENTIFICATION 4001c000-4001d000 r--p 00000000 03:06 176390 /usr/lib/locale/en_US/LC_MEASUREMENT 4001d000-4001e000 r--p 00000000 03:06 176393 /usr/lib/locale/en_US/LC_TELEPHONE 4001e000-4001f000 r--p 00000000 03:06 176388 /usr/lib/locale/en_US/LC_ADDRESS 4001f000-40020000 r--p 00000000 03:06 176391 /usr/lib/locale/en_US/LC_NAME 40020000-40021000 r--p 00000000 03:06 176392 /usr/lib/locale/en_US/LC_PAPER 40021000-40022000 r--p 00000000 03:06 304681 /usr/lib/locale/en_US/LC_MESSAGES/SYS_LC_MESSAGES 40022000-40023000 r--p 00000000 03:06 128301 /usr/lib/locale/en_US/LC_MONETARY 40023000-40024000 r--p 00000000 03:06 176394 /usr/lib/locale/en_US/LC_TIME 40024000-40025000 r--p 00000000 03:06 32123 /usr/lib/locale/en_US/LC_NUMERIC 40025000-40026000 rw-p 00000000 00:00 0 40026000-40027000 rw-p 00000000 00:00 0 40027000-40036000 r-xp 00000000 03:06 240636 /lib/libpthread-0.9.so 40036000-4003e000 rw-p 0000e000 03:06 240636 /lib/libpthread-0.9.so 4003e000-40051000 r-xp 00000000 03:06 240609 /lib/libnsl-2.2.2.so 40051000-40053000 rw-p 00012000 03:06 240609 /lib/libnsl-2.2.2.so 40053000-40055000 rw-p 00000000 00:00 0 40055000-40058000 r-xp 00000000 03:06 240604 /lib/libdl-2.2.2.so 40058000-40059000 rw-p 00002000 03:06 240604 /lib/libdl-2.2.2.so 40059000-40182000 r-xp 00000000 03:06 240600 /lib/libc-2.2.2.so 40182000-40187000 rw-p 00128000 03:06 240600 /lib/libc-2.2.2.so 40187000-4018b000 rw-p 00000000 00:00 0 4018b000-402ac000 r-xp 00000000 03:06 35162 /opt/IBMJava2-13/jre/bin/classic/libjvm.so 402ac000-402b8000 rw-p 00120000 03:06 35162 /opt/IBMJava2-13/jre/bin/classic/libjvm.so 402b8000-402d1000 rw-p 00000000 00:00 0 402d1000-402f4000 r-xp 00000000 03:06 240606 /lib/libm-2.2.2.so 402f4000-402f5000 rw-p 00022000 03:06 240606 /lib/libm-2.2.2.so 402f5000-40304000 r-xp 00000000 03:06 20233 /opt/IBMJava2-13/jre/bin/libhpi.so 40304000-40306000 rw-p 0000e000 03:06 20233 /opt/IBMJava2-13/jre/bin/libhpi.so 40306000-44306000 rwxp 00000000 00:00 0 44306000-44407000 rwxp 00000000 00:00 0 44407000-44508000 rwxp 00000000 00:00 0 44508000-44534000 r-xp 00000000 03:06 20237 /opt/IBMJava2-13/jre/bin/libjava.so 44534000-4453b000 rw-p 0002b000 03:06 20237 /opt/IBMJava2-13/jre/bin/libjava.so 4453b000-44549000 r-xp 00000000 03:06 20257 /opt/IBMJava2-13/jre/bin/libzip.so 44549000-4454c000 rw-p 0000d000 03:06 20257 /opt/IBMJava2-13/jre/bin/libzip.so 4454c000-44567000 r--p 00000000 03:06 192455 /usr/lib/locale/en_US/LC_CTYPE 44567000-4456d000 r--p 00000000 03:06 304675 /usr/lib/locale/en_US/LC_COLLATE 4456d000-4456f000 r-xp 00000000 03:06 48382 /usr/lib/gconv/ISO8859-1.so 4456f000-44570000 rw-p 00001000 03:06 48382 /usr/lib/gconv/ISO8859-1.so 44570000-44571000 rw-p 00000000 00:00 0 4457c000-44586000 r-xp 00000000 03:06 240625 /lib/libnss_files-2.2.2.so 44586000-44587000 rw-p 00009000 03:06 240625 /lib/libnss_files-2.2.2.so 44587000-44593000 r-xp 00000000 03:06 242574 /usr/X11R6/lib/libXext.so.6.4 44593000-44595000 rw-p 0000b000 03:06 242574 /usr/X11R6/lib/libXext.so.6.4 44595000-4459b000 r-xp 00000000 03:06 242584 /usr/X11R6/lib/libXp.so.6.2 4459b000-4459d000 rw-p 00005000 03:06 242584 /usr/X11R6/lib/libXp.so.6.2 4459d000-445a5000 r-xp 00000000 03:06 242564 /usr/X11R6/lib/libSM.so.6.0 445a5000-445a6000 rw-p 00007000 03:06 242564 /usr/X11R6/lib/libSM.so.6.0 445a6000-445ba000 r-xp 00000000 03:06 242560 /usr/X11R6/lib/libICE.so.6.3 445ba000-445bb000 rw-p 00013000 03:06 242560 /usr/X11R6/lib/libICE.so.6.3 445bb000-445bd000 rw-p 00000000 00:00 0 445c8000-445eb000 rw-p 00000000 00:00 0 445eb000-4477c000 r-xp 00000000 03:06 20245 /opt/IBMJava2-13/jre/bin/libjitc.so 4477c000-44783000 rw-p 00190000 03:06 20245 /opt/IBMJava2-13/jre/bin/libjitc.so 44783000-44784000 rw-p 00000000 00:00 0 44784000-44805000 rw-p 00000000 00:00 0 44805000-44886000 rw-p 00000000 00:00 0 44886000-44c87000 rw-p 00000000 00:00 0 44c87000-44d08000 rw-p 00000000 00:00 0 44d08000-44d89000 rw-p 00000000 00:00 0 44d89000-44e0a000 rw-p 00000000 00:00 0 44e0a000-44e8b000 rw-p 00000000 00:00 0 44e8b000-44f0c000 rw-p 00000000 00:00 0 44f0c000-44f8d000 rw-p 00000000 00:00 0 44f8d000-4500e000 rw-p 00000000 00:00 0 4500e000-4508f000 rw-p 00000000 00:00 0 4508f000-45175000 rw-p 00000000 00:00 0 45175000-451f6000 rw-p 00000000 00:00 0 451f6000-45277000 rw-p 00000000 00:00 0 45277000-4536b000 rw-p 00000000 00:00 0 4536b000-45448000 rw-p 00000000 00:00 0 45448000-45525000 rw-p 00000000 00:00 0 45525000-45602000 rw-p 00000000 00:00 0 45602000-45683000 rw-p 00000000 00:00 0 45683000-456c9000 r-xp 00000000 03:09 32096 /home/manahan/eclipse/plugins/org.eclipse.swt/ws/motif/libswt-linux-2012.so 456c9000-456cc000 rw-p 00045000 03:09 32096 /home/manahan/eclipse/plugins/org.eclipse.swt/ws/motif/libswt-linux-2012.so 456cc000-45850000 r-xp 00000000 03:09 80259 /home/manahan/eclipse/libXm.so.2 45850000-45863000 rw-p 00183000 03:09 80259 /home/manahan/eclipse/libXm.so.2 45863000-45864000 rw-p 00000000 00:00 0 45864000-4593f000 r-xp 00000000 03:06 242566 /usr/X11R6/lib/libX11.so.6.2 4593f000-45943000 rw-p 000da000 03:06 242566 /usr/X11R6/lib/libX11.so.6.2 45943000-45944000 rw-p 00000000 00:00 0 45944000-4598c000 r-xp 00000000 03:06 242590 /usr/X11R6/lib/libXt.so.6.0 4598c000-45990000 rw-p 00047000 03:06 242590 /usr/X11R6/lib/libXt.so.6.0 45990000-45991000 rw-p 00000000 00:00 0 45991000-45aa2000 rw-p 00000000 00:00 0 45aa2000-45bf2000 rw-p 00000000 00:00 0 45bf2000-45d72000 rw-p 00000000 00:00 0 45d72000-45f01000 rw-p 00000000 00:00 0 45f01000-45f82000 rw-p 00000000 00:00 0 bf3be000-bf3bf000 ---p 00000000 00:00 0 bf3bf000-bf3c2000 rwxp 00001000 00:00 0 bf3c2000-bf3c3000 r--p 00004000 00:00 0 bf3c3000-bf400000 rwxp 00005000 00:00 0 bf5be000-bf5bf000 ---p 00000000 00:00 0 bf5bf000-bf5c2000 rwxp 00001000 00:00 0 bf5c2000-bf5c3000 r--p 00004000 00:00 0 bf5c3000-bf600000 rwxp 00005000 00:00 0 bf7be000-bf7bf000 ---p 00000000 00:00 0 bf7bf000-bf7c2000 rwxp 00001000 00:00 0 bf7c2000-bf7c3000 r--p 00004000 00:00 0 bf7c3000-bf800000 rwxp 00005000 00:00 0 bffbd000-bffc2000 rwxp fffbe000 00:00 0 bffc2000-bffc3000 r--p fffc3000 00:00 0 bffc3000-c0000000 rwxp fffc4000 00:00 0 Full Thread Dump ---------------- PID:2536 "Finalizer" (TID:0x40348708, sys_thread_t:0x80d3c30, state:CW, native ID:0xc04) prio=8 at java.lang.Object.wait(Native Method) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:114) at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:129) at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:168) ----- Native Stack ----- pthread_setconcurrency at 0x40030b19 in libpthread.so.0 pthread_cond_wait at 0x4002ce2c in libpthread.so.0 condvarWait at 0x402fc225 in libhpi.so sysMonitorWait at 0x402fdf15 in libhpi.so lkMonitorWait at 0x402424b4 in libjvm.so JVM_MonitorWait at 0x40207ade in libjvm.so ?? ivq_doinvoke_I__ at 0x40263951 in libjvm.so ivq_doinvoke_I__ at 0x40263951 in libjvm.so EJivq_doinvoke_V__ at 0x4025eb09 in libjvm.so ?? ------------------------------------------------------------------------- PID:2535 "Reference Handler" (TID:0x40348750, sys_thread_t:0x80cfed8, state:CW, native ID:0x803) prio=10 at java.lang.Object.wait(Native Method) at java.lang.Object.wait(Object.java:421) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116) ----- Native Stack ----- pthread_setconcurrency at 0x40030b19 in libpthread.so.0 pthread_cond_wait at 0x4002ce2c in libpthread.so.0 condvarWait at 0x402fc225 in libhpi.so sysMonitorWait at 0x402fdf15 in libhpi.so lkMonitorWait at 0x402424b4 in libjvm.so JVM_MonitorWait at 0x40207ade in libjvm.so ?? ivoq_doinvoke_V__ at 0x40263ea1 in libjvm.so EJivq_doinvoke_V__ at 0x4025eb09 in libjvm.so ?? ------------------------------------------------------------------------- PID:2534 "Signal dispatcher" (TID:0x40348798, sys_thread_t:0x80cb590, state:CW, native ID:0x402) prio=5 ----- Native Stack ----- ?? ------------------------------------------------------------------------- PID:2524 "main" (TID:0x403487e0, sys_thread_t:0x804ff88, state:R, native ID:0x400) prio=5 at org.eclipse.swt.internal.motif.OS.XtSetValues(Native Method) at org.eclipse.swt.widgets.WidgetTable.remove(WidgetTable.java:94) at org.eclipse.swt.widgets.Widget.deregister(Widget.java:236) at org.eclipse.swt.widgets.Scrollable.deregister(Scrollable.java:136) at org.eclipse.swt.widgets.Widget.releaseWidget(Widget.java:651) at org.eclipse.swt.widgets.Control.releaseWidget(Control.java:1448) at org.eclipse.swt.widgets.Scrollable.releaseWidget(Scrollable.java:291) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:489) at org.eclipse.swt.widgets.Composite.releaseWidget(Composite.java:495) at org.eclipse.swt.widgets.Canvas.releaseWidget(Canvas.java:129) at org.eclipse.swt.widgets.Decorations.releaseWidget(Decorations.java:327) at org.eclipse.swt.widgets.Shell.releaseWidget(Shell.java:851) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:276) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:562) at org.eclipse.jface.window.Window.close(Window.java:194) at org.eclipse.jface.preference.PreferenceDialog.close(PreferenceDialog.java:204) at org.eclipse.jface.preference.PreferenceDialog.okPressed(PreferenceDialog.java:523) at org.eclipse.jface.preference.PreferenceDialog.buttonPressed(PreferenceDialog.java:166) at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:211) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:85) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:489) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java(Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.jface.window.Window.runEventLoop(Window.java(Compiled Code)) at org.eclipse.jface.window.Window.open(Window.java:523) at org.eclipse.ui.internal.OpenPreferencesAction.run(OpenPreferencesAction.java:47) at org.eclipse.jface.action.Action.runWithEvent(Action.java:453) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:407) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:361) at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:352) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:489) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1561) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1411) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:727) at org.eclipse.ui.internal.Workbench.run(Workbench.java:710) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:502) at org.eclipse.core.launcher.Main.main(Main.java:362) ----- Native Stack ----- ------------------------------------------------------------------------- Monitor pool info: Initial monitor count: 32 Minimum number of free monitors before expansion: 5 Pool will next be expanded by: 16 Current total number of monitors: 32 Current number of free monitors: 28 Monitor Pool Dump (inflated object-monitors): sys_mon_t:0x0804f4f8 infl_mon_t: 0x0804f0c8: java.lang.ref.Reference$Lock@4034FE48/4034FE50: <unowned> Waiting to be notified: "Reference Handler" (0x80cfed8) sys_mon_t:0x0804f588 infl_mon_t: 0x0804f108: java.lang.ref.ReferenceQueue$Lock@40352A20/40352A28: <unowned> Waiting to be notified: "Finalizer" (0x80d3c30) JVM System Monitor Dump (registered monitors): ACS Heap lock: <unowned> System Heap lock: <unowned> Sleep lock: <unowned> Method trace lock: <unowned> UTF8 Cache lock: <unowned> Heap lock: owner "main" (0x804ff88) 1 entry Rewrite Code lock: <unowned> Monitor Cache lock: owner "main" (0x804ff88) 1 entry JNI Pinning lock: <unowned> JNI Global Reference lock: <unowned> Classloader lock: <unowned> Linking class lock: <unowned> Binclass lock: <unowned> Monitor Registry lock: owner "main" (0x804ff88) 1 entry Thread queue lock: owner "main" (0x804ff88) 1 entry Thread identifiers (as used in flat monitors): ident 5 "Finalizer" (0x80d3c30) ee 0x080d3a58 ident 4 "Reference Handler" (0x80cfed8) ee 0x080cfd00 ident 3 "Signal dispatcher" (0x80cb590) ee 0x080cb3b8 ident 2 "main" (0x804ff88) ee 0x0804fdb0 Java Object Monitor Dump (flat & inflated object-monitors): java.lang.Class@40320D28/40320D30 locknflags 00020000 Flat locked by threadIdent 2. Entrycount 1 java.lang.ref.Reference$Lock@4034FE48/4034FE50 locknflags 80000200 Monitor inflated infl_mon 0x0804f0c8 java.lang.ref.ReferenceQueue$Lock@40352A20/40352A28 locknflags 80000400 Monitor inflated infl_mon 0x0804f108 ------
|
2001-11-09 14:46:45
| 1,005,340,000 |
resolved fixed
|
9481d71
| 1,005,760,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/reorg/DeleteRefactoring.java
|
JDT
|
6,204 | 3,607 |
Bug 3607 Open Type: can't enter fully qualified name (1GCJUJX)
|
EG (4/21/2001 4:17:12 PM) it should be possible to enter fully qualified name NOTES: PA (5/31/01 2:44:32 PM) it isn't. MA (15.08.2001 18:10:01) Filter with the simple name from the current entered name, and select the package using the qualifier.
|
2001-10-10 22:57:54
| 1,002,770,000 |
verified fixed
|
7bf340f
| 1,005,750,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/AbstractElementListSelectionDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/FilteredList.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dialogs/TypeSelectionDialog.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/util/TypeInfoLabelProvider.java
|
JDT
|
6,205 | 5,766 |
Bug 5766 Update refs in String/Java Doc should be off by default
|
When renaming an element then the options to Update references in Strings/Java Doc/Comments is on by default it should be off.
|
2001-11-10 16:05:18
| 1,005,430,000 |
resolved fixed
|
a58bec4
| 1,005,750,000 |
org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/RenameInputWizardPage.java
|
JDT
|
6,206 | 5,791 |
Bug 5791 NPE in SocketUtil
|
Launch Eclipse using JDK 1.4 as JRE. From the launched eclispe, launch another program in debug mode, using JDK 1.4. This produces an NPE in SocketUtil: java.lang.reflect.InvocationTargetException at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:277) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run (ProgressMonitorDialog.java:335) at org.eclipse.jdt.internal.ui.launcher.JavaApplicationLauncherDelegate.doLaunch (JavaApplicationLauncherDelegate.java:181) at org.eclipse.jdt.internal.ui.launcher.JavaApplicationLauncherDelegate.launchEleme nt(JavaApplicationLauncherDelegate.java:81) at org.eclipse.jdt.internal.ui.launcher.JavaApplicationLauncherDelegate.launch (JavaApplicationLauncherDelegate.java:93) at org.eclipse.debug.internal.core.Launcher.launch(Launcher.java:104) at org.eclipse.debug.internal.ui.RelaunchActionDelegate.relaunch (RelaunchActionDelegate.java:37) at org.eclipse.debug.internal.ui.RelaunchActionDelegate.relaunch (RelaunchActionDelegate.java:46) at org.eclipse.debug.internal.ui.RelaunchHistoryLaunchAction$1.run (RelaunchHistoryLaunchAction.java:49) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:56) at org.eclipse.debug.internal.ui.RelaunchHistoryLaunchAction.run (RelaunchHistoryLaunchAction.java:47) at org.eclipse.jface.action.Action.runWithEvent(Action.java:453) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:407) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent (ActionContributionItem.java:361) at org.eclipse.jface.action.ActionContributionItem.access$0 (ActionContributionItem.java:352) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent (ActionContributionItem.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:54) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:635) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:1365) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1167) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:727) at org.eclipse.ui.internal.Workbench.run(Workbench.java:710) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at SlimLauncher.main(SlimLauncher.java:14) Caused by: java.lang.NullPointerException at java.net.Socket.<init>(Socket.java:285) at java.net.Socket.<init>(Socket.java:121) at org.eclipse.jdt.internal.ui.launcher.SocketUtil.findUnusedLocalPort (SocketUtil.java:21) at org.eclipse.jdt.internal.ui.launcher.JDK12DebugLauncher.run (JDK12DebugLauncher.java:60) at org.eclipse.jdt.internal.ui.launcher.JavaApplicationLauncherDelegate$1.run (JavaApplicationLauncherDelegate.java:170) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run (ModalContext.java:98)
|
2001-11-12 10:13:06
| 1,005,580,000 |
verified fixed
|
504d14b
| 1,005,700,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/launcher/JDK12DebugLauncher.java
|
JDT
|
6,207 | 5,832 |
Bug 5832 Template Pref page: Edit: Copy/paste context menu
|
The text field to edit the templates should have a context menu with copy/paste.
|
2001-11-13 06:12:35
| 1,005,650,000 |
resolved fixed
|
783cbe5
| 1,005,670,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/EditTemplateDialog.java
|
JDT
|
6,208 | 3,770 |
Bug 3770 Java Preference page needs better grouping (1GERREW)
|
EG (6/3/2001 1:57:32 PM) the Java preference page needs space between the different groups. Package view related prefs should come together. There should be whitespace before the hierarchy preference setting. NOTES: EG (6/4/2001 12:00:42 PM) adding white space is work since we are using the preference dialog fields. This is not critcal, but the order of the packages view prefs should change. EG (6/5/2001 9:56:40 AM) defer
|
2001-10-10 23:00:35
| 1,002,770,000 |
resolved fixed
|
c1e5823
| 1,005,660,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaBasePreferencePage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/SpacerFieldEditor.java
|
JDT
|
6,209 | 3,883 |
Bug 3883 error dialog in display is too scary (1GF24YQ)
|
AK (6/9/01 4:25:35 PM) press the display or the inspect buttons in the display view (with no stack frame context) you see an Error dialog. these should be reserved for really error conditions - like internal errors. NOTES: EG (6/9/2001 12:03:13 PM) not critical
|
2001-10-10 23:02:27
| 1,002,770,000 |
verified fixed
|
37812f0
| 1,005,600,000 |
org.eclipse.jdt.ui/ui debug/org/eclipse/jdt/internal/debug/ui/display/DisplayView.java
|
JDT
|
6,210 | 4,937 |
Bug 4937 Display view contents not restored properly
|
Exit a workspace with a display view present that has content with formatting. When the workspace starts up and the display is viewed, the restored content will have lost the formatting.
|
2001-10-12 13:03:23
| 1,002,910,000 |
verified fixed
|
f9ed641
| 1,005,600,000 |
org.eclipse.jdt.ui/ui debug/org/eclipse/jdt/internal/debug/ui/display/DisplayView.java
|
JDT
|
6,211 | 5,492 |
Bug 5492 Open in Hierarchy method list is enabled even when nothing is selected
|
206 1) Ensure no item is selected in the hierachy view's member list 2) Right click - not on an item 3) Open is present and enabled 4) Select Open, nothing happens
|
2001-11-02 14:37:11
| 1,004,730,000 |
resolved fixed
|
0bf8b4b
| 1,005,590,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyViewer.java
|
JDT
|
6,212 | 3,471 |
Bug 3471 Leading '/' in src page of Java wizard is misleading (1G842TH)
|
1. create new java project "jp" with Create Java Project wizard. 2. in wizard goto second ("Source") page Observe: the Build Output Folder is "/jp/bin" Since this looks like a Unix pathname I interpret the leading "/" as an indication for a absolute pathname. Other tools use something like: {WORKBENCH}/jp/bin or shell variable syntax: $WORKBENCH/jp/bin NOTES: EG (1/30/01 10:34:33 AM) desktop is using the same convention for presenting paths. General issue: how to show a workbench relative path
|
2001-10-10 22:55:42
| 1,002,770,000 |
resolved wontfix
|
d8eedf7
| 1,005,590,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/BuildPathsBlock.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/wizards/buildpaths/SourceContainerWorkbookPage.java
|
JDT
|
6,213 | 5,183 |
Bug 5183 Wrong return type for extract method
|
protected ITextBuffer doCreate(IFile file) throws CoreException { FileEditorInput input= new FileEditorInput(file); IDocument document= fDocumentProvider.getDocument(input); if (document != null) { return new TextBuffer(document); } else { InputStreamReader in= null; /*]*/try { document= new Document(); in= new InputStreamReader(new BufferedInputStream(file.getContents())); StringBuffer buffer= new StringBuffer(); char[] readBuffer= new char[2048]; int n= in.read(readBuffer); while (n > 0) { buffer.append(readBuffer, 0, n); n= in.read(readBuffer); } document.set(buffer.toString()); return new TextBuffer(document); } catch (IOException x) { IStatus s= new Status(IStatus.ERROR, JavaPlugin.getPluginId(), JavaStatusConstants.INTERNAL_ERROR, x.getMessage(), x); throw new CoreException(s); } finally { if (in != null) { try { in.close(); } catch (IOException x) { } } }/*[*/ } } Extracting a method from the code /*]*/.../*[*/ doesn't return the created text buffer.
|
2001-10-23 12:58:55
| 1,003,860,000 |
resolved fixed
|
7fe550b
| 1,005,590,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/ExceptionAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/ReturnAnalyzer.java
|
JDT
|
6,214 | 5,699 |
Bug 5699 Add ResourceTransfer to packages view
|
The packages view should add the ResoruceTransfer as a drag source to its list of transfers
|
2001-11-09 03:41:16
| 1,005,300,000 |
resolved fixed
|
eb077ff
| 1,005,580,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dnd/JdtTreeViewerDropAdapter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dnd/JdtViewerDropAdapter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/dnd/ResourceTransferDragAdapter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/FileTransferDropAdapter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/SelectionTransferDropAdapter.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyTransferDropAdapter.java
|
JDT
|
6,215 | 4,089 |
Bug 4089 Editor tooltip for class files should show full path (1GI74EF)
|
When you hover over the editor tab for a .class file, it just shows you the simple file name. It should show the full path, as for other editors. NOTES:
|
2001-10-10 23:05:52
| 1,002,770,000 |
verified fixed
|
c33aca1
| 1,005,500,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/InternalClassFileEditorInput.java
|
JDT
|
6,216 | 5,774 |
Bug 5774 Unpredicatable behaviour on double click in packages view
|
from EC: If you double click a file in the packages view, it opens the file (technically, compilation unit I believe) -- if not already open. However, if the file is already open, a single click selects it as the active editor tag; a double click expands its structure in the packages view. This is unpredictable behavior ;
|
2001-11-11 08:46:02
| 1,005,490,000 |
resolved fixed
|
d13ebe7
| 1,005,490,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/packageview/PackageExplorerPart.java
|
JDT
|
6,217 | 4,103 |
Bug 4103 Should have shortcuts for new file and folder (1GIF4F6)
|
Another vote for adding File and Folder to the new menu in the Java perspective. NOTES:
|
2001-10-10 23:06:06
| 1,002,770,000 |
verified fixed
|
1022fe5
| 1,005,410,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPerspectiveFactory.java
|
JDT
|
6,218 | 5,404 |
Bug 5404 Extract method with 'continue' statement not possible
|
1. Open WorkingSetReader (1.1) 2. Select the full for-statement in readXML(): for (int k= 0; k < contents.getLength(); k++) {...} 3. Extract method ==> dialog says, it's not possible to do so because of the 'continue' statement
|
2001-11-01 05:13:25
| 1,004,610,000 |
resolved fixed
|
9a725c3
| 1,005,320,000 |
org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/ExtractMethodAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/ExtractMethodRefactoring.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/StatementAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/flow/FlowContext.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/flow/FlowInfo.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/flow/ForFlowInfo.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/flow/InputFlowAnalyzer.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/code/flow/WhileFlowInfo.java org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/core/refactoring/util/SelectionAnalyzer.java
|
JDT
|
6,219 | 5,587 |
Bug 5587 Step Over jumps to caller
|
Build 20011105 - set breakpoint in org.eclipse.ui.internal.ShowViewAction's constructor, on line indicated by [BP] below (note source has been modified since 20011105): protected ShowViewAction(IWorkbenchWindow window, IViewDescriptor desc) { super(""); String accel = desc.getAccelerator(); String label = desc.getLabel(); [BP] setText(accel == null ? label : label + "@" + accel); setImageDescriptor(desc.getImageDescriptor()); setToolTipText(label); WorkbenchHelp.setHelp(this, new Object[] {IHelpContextIds.SHOW_VIEW_ACTION}); this.window = window; this.desc = desc; } - when breakpoint was hit, I clicked on the Step Over button - it had the same effect as run to return, and stepping back to the caller. - it left me in ShowViewMenu.getAction, on line marked ***: private IAction getAction(String id) { // Keep a cache, rather than creating a new action each time, // so that image caching in ActionContributionItem works. IAction action = (IAction) actions.get(id); if (action == null) { IViewRegistry reg = WorkbenchPlugin.getDefault().getViewRegistry (); IViewDescriptor desc = reg.find(id); if (desc != null) { *** action = new ShowViewAction(getWindow(), desc); actions.put(id, action); } } return action; }
|
2001-11-06 13:56:49
| 1,005,070,000 |
verified fixed
|
a1fa1cd
| 1,005,240,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaDebugPreferencePage.java
|
JDT
|
6,220 | 5,356 |
Bug 5356 Search Result descriptions don't use singular
|
Text and Java search result descriptions (visible in Search view's title toot tip and Search histories) don't show singular text version if there's exactly one match
|
2001-10-30 10:38:07
| 1,004,460,000 |
resolved fixed
|
acb4754
| 1,005,240,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchOperation.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchResultCollector.java
|
JDT
|
6,221 | 3,672 |
Bug 3672 DCR: Add working set support
|
Would be nice to have the VAME Search "Scope" feature. This allows the user to filter searches, which reduces both the time to do the search, and the number of results found - so that more of the results are known to be useful. In VAME, the user could edit a search scope (for example, only search in these 3 projects), and give it a name (for example "SWT"), and then the named scope would show up in all of the search context menus, for example, if a class was selected, the context menu would allow searches on: - References [to the class] -> Workspace [in the whole workspace] -> Hierarchy [in the current hierarchy (the one the class is in)] -> Project [in the current project (the one the class is in)] -> SWT [in the user- defined set of projects named "SWT" - this is the "search scope" or "scope set"] - Declarations [of the class] -> Workspace -> Hierarchy -> Project -> SWT Also, the search dialog would allow temporary scopes to be specified for each individual search. See the VAME Searching for more details. (or ask me - I use search a lot - CM) Currently, all searches in Eclipse are done on the whole workspace. This is sub-optimal. NOTES: EG (5/17/01 11:12:48 AM) Missing working sets to. Can't be done for June. DM (10/4/01 3:07:48 PM) Added "Selection" scope DM (10/9/01 9:31:44 AM) Will now have to add temporary implementation for working sets: IWorkingSet WorkingSet -> IWorkingSet WorkingSetSelectionDialog WorkingSetContentProvider WorkingSetLabelProvider
|
2001-10-10 22:58:58
| 1,002,770,000 |
verified fixed
|
7049e8f
| 1,005,150,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/DeclarationsSearchGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ElementSearchAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindDeclarationsInWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindImplementorsInWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindReadReferencesInWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindReferencesInWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/FindWriteReferencesInWorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchPage.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/JavaSearchSubGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/LRUWorkingSetList.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ReadReferencesSearchGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/ReferencesSearchGroup.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/WorkingSetAction.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/WorkingSetComparator.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/search/WriteReferencesSearchGroup.java
|
JDT
|
6,222 | 4,928 |
Bug 4928 Java perspective should have placeholder for Navigator
|
build 204 I sometimes want to show the Navigator in the Java perspective. It currently opens over the outline. I would prefer it to open over the packages view, since they're of the same flavour and I usually want one or the other, not both at the same time. It also means my flow still goes from left to right: choose something in the Navigator or packages view, it appears in the editor and outline view to the right.
|
2001-10-12 10:19:06
| 1,002,900,000 |
resolved fixed
|
e48f52e
| 1,005,140,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaPerspectiveFactory.java
|
JDT
|
6,223 | 5,474 |
Bug 5474 should not use tool tips for labels
|
To be consistent with other preference pages, the debug preference labels for step filtering (filter sythetic methods, etc), should not specify tool tips. Instead, the relevant information should just be in the label.
|
2001-11-02 11:35:05
| 1,004,720,000 |
verified fixed
|
63aabcb
| 1,004,740,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/JavaDebugPreferencePage.java
|
JDT
|
6,224 | 5,452 |
Bug 5452 Typehierarchy: can't see full label in method list
|
The label is shown with "..." even though the view has a horizontal scrollbar. This is critical since when showin inherited members the lable can be long.
|
2001-11-02 04:48:48
| 1,004,690,000 |
resolved fixed
|
3cee768
| 1,004,710,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/MethodsViewer.java
|
JDT
|
6,225 | 5,418 |
Bug 5418 bracket marker stays in editor
|
private void showDebugSourcePage(String typeName) { if (dialog.open() == dialog.OK) { } 1. set the cursor after the opening bracket (after dialog.OK) 2. press enter 3. The bracket box includes all characters insterted by the auto indenter
|
2001-11-01 11:55:35
| 1,004,630,000 |
resolved fixed
|
d287924
| 1,004,640,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/CompilationUnitEditor.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/JavaCodeScanner.java org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/text/JavaSourceViewerConfiguration.java
|
JDT
|
6,226 | 4,171 |
Bug 4171 Accessibility: Code Formatter Page too large with a large text font (1GJL58E)
|
If the Text font is set to be very large (say 36 point) the CodeFormatter preference page is created so large that it ends up bigger than the display. The text in the preference page should be scrollable. It also does not pick up changes to the font size so if the user changes the size of the text font they will have to reopen the preference dialog to get the change picked up. STEPS 1) Set the Text Font in the font preference page to be 36 point 2) Close the preference dialog 3) Reopen the preference dialog and select the code formatter page NOTES:
|
2001-10-10 23:07:14
| 1,002,770,000 |
verified fixed
|
c9d4729
| 1,004,610,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CodeFormatterPreferencePage.java
|
JDT
|
6,227 | 4,273 |
Bug 4273 Compiler option changes not handled correctly (1GKWRI3)
|
Nothing happens if auto-build is on and (some) compiler options are changed . If something was reported as error and now I choose that to be reported as warning and if autobuild is on I expect a rebuild. Same if I switch from 1.2 to 1.3 compatibilty. NOTES: EG (01.10.2001 14:57:06) we should prompt the user for a rebuild whenever an option changes. MA (01.10.2001 15:16:25) The description in the pages says everything. EG (02.10.2001 18:16:59) yes, but this is isn't sufficient. We should show a dialog with the option to rebuild the workspace after apply.
|
2001-10-10 23:08:57
| 1,002,770,000 |
resolved fixed
|
2c430ec
| 1,004,610,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/preferences/CompilerPreferencePage.java
|
JDT
|
6,228 | 5,392 |
Bug 5392 Eclipse dies without warning
|
build 205 on Win98. This happened 3 times. 1). I was looking at Java code and selected something in the Outline view and Eclipse died without any warning. No log messages or dialogs. 2). I restarted, opened up the Java class again, clicked around in the Outline and it was ok. Then I clicked on a method in the outline, did a search, then double-clicked on the single search result and Eclipse died without warning again. Again without a log or dialog. 3). Restarted again. Pressed the Open to Type button, typed in the class name and hit ok. Eclipse died, got 3 dialogs saying that an error has occurred, and got the following in my log file. Log: Wed Oct 31 13:50:35 EST 2001 2 org.eclipse.ui 2 Problems occurred when invoking code from plug-in: org.eclipse.ui. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:1805) at org.eclipse.swt.SWT.error(SWT.java:1737) at org.eclipse.swt.custom.CTabItem.getDisplay(CTabItem.java:78) at org.eclipse.swt.widgets.Widget.isValidThread(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Item.getText(Item.java:67) at org.eclipse.swt.custom.CTabItem.setText(CTabItem.java:387) at org.eclipse.ui.internal.EditorWorkbook.updateEditorTab (EditorWorkbook.java:681) at org.eclipse.ui.internal.EditorWorkbook.propertyChanged (EditorWorkbook.java:371) at org.eclipse.ui.part.WorkbenchPart$1.run(WorkbenchPart.java:81) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:812) at org.eclipse.core.runtime.Platform.run(Platform.java:395) at org.eclipse.ui.part.WorkbenchPart.firePropertyChange (WorkbenchPart.java:79) at org.eclipse.ui.texteditor.AbstractTextEditor.firePropertyChange (AbstractTextEditor.java:1952) at org.eclipse.ui.part.WorkbenchPart.setTitleImage (WorkbenchPart.java:222) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updatedTitleImage (JavaEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.doUpdateErrorT icks(JavaEditorErrorTickUpdater.java:76) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.access$0 (JavaEditorErrorTickUpdater.java:72) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater$1.run (JavaEditorErrorTickUpdater.java:66) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:29) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:93) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1163) at org.eclipse.swt.widgets.Display.release(Display.java:1213) at org.eclipse.swt.graphics.Device.dispose(Device.java:200) at org.eclipse.ui.internal.Workbench.run(Workbench.java:663) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:433) at org.eclipse.core.launcher.Main.main(Main.java:306) Log: Wed Oct 31 13:50:35 EST 2001 2 org.eclipse.ui 2 Problems occurred when invoking code from plug-in: org.eclipse.ui. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:1805) at org.eclipse.swt.SWT.error(SWT.java:1737) at org.eclipse.swt.custom.CTabItem.getDisplay(CTabItem.java:78) at org.eclipse.swt.widgets.Widget.isValidThread(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Item.getText(Item.java:67) at org.eclipse.swt.custom.CTabItem.setText(CTabItem.java:387) at org.eclipse.ui.internal.EditorWorkbook.updateEditorTab (EditorWorkbook.java:681) at org.eclipse.ui.internal.EditorWorkbook.propertyChanged (EditorWorkbook.java:371) at org.eclipse.ui.part.WorkbenchPart$1.run(WorkbenchPart.java:81) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:812) at org.eclipse.core.runtime.Platform.run(Platform.java:395) at org.eclipse.ui.part.WorkbenchPart.firePropertyChange (WorkbenchPart.java:79) at org.eclipse.ui.texteditor.AbstractTextEditor.firePropertyChange (AbstractTextEditor.java:1952) at org.eclipse.ui.part.WorkbenchPart.setTitleImage (WorkbenchPart.java:222) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updatedTitleImage (JavaEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.doUpdateErrorT icks(JavaEditorErrorTickUpdater.java:76) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.access$0 (JavaEditorErrorTickUpdater.java:72) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater$1.run (JavaEditorErrorTickUpdater.java:66) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:29) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:93) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1163) at org.eclipse.jface.window.Window.runEventLoop(Window.java:536) at org.eclipse.jface.window.Window.open(Window.java:523) at org.eclipse.jface.dialogs.MessageDialog.openError (MessageDialog.java:318) at org.eclipse.ui.internal.SafeRunnableAdapter.handleException (SafeRunnableAdapter.java:33) at org.eclipse.ui.part.WorkbenchPart$1.handleException (WorkbenchPart.java:84) at org.eclipse.core.internal.runtime.InternalPlatform.handleException (InternalPlatform.java:429) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:814) at org.eclipse.core.runtime.Platform.run(Platform.java:395) at org.eclipse.ui.part.WorkbenchPart.firePropertyChange (WorkbenchPart.java:79) at org.eclipse.ui.texteditor.AbstractTextEditor.firePropertyChange (AbstractTextEditor.java:1952) at org.eclipse.ui.part.WorkbenchPart.setTitleImage (WorkbenchPart.java:222) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updatedTitleImage (JavaEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.doUpdateErrorT icks(JavaEditorErrorTickUpdater.java:76) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.access$0 (JavaEditorErrorTickUpdater.java:72) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater$1.run (JavaEditorErrorTickUpdater.java:66) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:29) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:93) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1163) at org.eclipse.swt.widgets.Display.release(Display.java:1213) at org.eclipse.swt.graphics.Device.dispose(Device.java:200) at org.eclipse.ui.internal.Workbench.run(Workbench.java:663) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:433) at org.eclipse.core.launcher.Main.main(Main.java:306) Log: Wed Oct 31 13:50:35 EST 2001 2 org.eclipse.ui 2 Problems occurred when invoking code from plug-in: org.eclipse.ui. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:1805) at org.eclipse.swt.SWT.error(SWT.java:1737) at org.eclipse.swt.custom.CTabItem.getDisplay(CTabItem.java:78) at org.eclipse.swt.widgets.Widget.isValidThread(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Item.getText(Item.java:67) at org.eclipse.swt.custom.CTabItem.setText(CTabItem.java:387) at org.eclipse.ui.internal.EditorWorkbook.updateEditorTab (EditorWorkbook.java:681) at org.eclipse.ui.internal.EditorWorkbook.propertyChanged (EditorWorkbook.java:371) at org.eclipse.ui.part.WorkbenchPart$1.run(WorkbenchPart.java:81) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:812) at org.eclipse.core.runtime.Platform.run(Platform.java:395) at org.eclipse.ui.part.WorkbenchPart.firePropertyChange (WorkbenchPart.java:79) at org.eclipse.ui.texteditor.AbstractTextEditor.firePropertyChange (AbstractTextEditor.java:1952) at org.eclipse.ui.part.WorkbenchPart.setTitleImage (WorkbenchPart.java:222) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updatedTitleImage (JavaEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.doUpdateErrorT icks(JavaEditorErrorTickUpdater.java:76) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.access$0 (JavaEditorErrorTickUpdater.java:72) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater$1.run (JavaEditorErrorTickUpdater.java:66) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:29) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:93) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1163) at org.eclipse.jface.window.Window.runEventLoop(Window.java:536) at org.eclipse.jface.window.Window.open(Window.java:523) at org.eclipse.jface.dialogs.MessageDialog.openError (MessageDialog.java:318) at org.eclipse.ui.internal.SafeRunnableAdapter.handleException (SafeRunnableAdapter.java:33) at org.eclipse.ui.part.WorkbenchPart$1.handleException (WorkbenchPart.java:84) at org.eclipse.core.internal.runtime.InternalPlatform.handleException (InternalPlatform.java:429) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:814) at org.eclipse.core.runtime.Platform.run(Platform.java:395) at org.eclipse.ui.part.WorkbenchPart.firePropertyChange (WorkbenchPart.java:79) at org.eclipse.ui.texteditor.AbstractTextEditor.firePropertyChange (AbstractTextEditor.java:1952) at org.eclipse.ui.part.WorkbenchPart.setTitleImage (WorkbenchPart.java:222) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updatedTitleImage (JavaEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.doUpdateErrorT icks(JavaEditorErrorTickUpdater.java:76) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.access$0 (JavaEditorErrorTickUpdater.java:72) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater$1.run (JavaEditorErrorTickUpdater.java:66) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:29) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:93) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1163) at org.eclipse.jface.window.Window.runEventLoop(Window.java:536) at org.eclipse.jface.window.Window.open(Window.java:523) at org.eclipse.jface.dialogs.MessageDialog.openError (MessageDialog.java:318) at org.eclipse.ui.internal.SafeRunnableAdapter.handleException (SafeRunnableAdapter.java:33) at org.eclipse.ui.part.WorkbenchPart$1.handleException (WorkbenchPart.java:84) at org.eclipse.core.internal.runtime.InternalPlatform.handleException (InternalPlatform.java:429) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:814) at org.eclipse.core.runtime.Platform.run(Platform.java:395) at org.eclipse.ui.part.WorkbenchPart.firePropertyChange (WorkbenchPart.java:79) at org.eclipse.ui.texteditor.AbstractTextEditor.firePropertyChange (AbstractTextEditor.java:1952) at org.eclipse.ui.part.WorkbenchPart.setTitleImage (WorkbenchPart.java:222) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.updatedTitleImage (JavaEditor.java:343) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.doUpdateErrorT icks(JavaEditorErrorTickUpdater.java:76) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater.access$0 (JavaEditorErrorTickUpdater.java:72) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditorErrorTickUpdater$1.run (JavaEditorErrorTickUpdater.java:66) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:29) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:93) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:1336) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1163) at org.eclipse.swt.widgets.Display.release(Display.java:1213) at org.eclipse.swt.graphics.Device.dispose(Device.java:200) at org.eclipse.ui.internal.Workbench.run(Workbench.java:663) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:151) at org.eclipse.core.launcher.Main.run(Main.java:433) at org.eclipse.core.launcher.Main.main(Main.java:306)
|
2001-10-31 13:55:42
| 1,004,550,000 |
resolved fixed
|
02264f5
| 1,004,600,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/javaeditor/JavaEditorErrorTickUpdater.java
|
JDT
|
6,229 | 5,361 |
Bug 5361 No error tick on imports in Packages view
|
Add an import that causes an error (e.g. dani.is.bad) and save. ==> The Outline view shows the error ticks on the imports but the package view doesn't
|
2001-10-30 12:00:52
| 1,004,460,000 |
resolved fixed
|
491a8fb
| 1,004,550,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/MarkerErrorTickProvider.java
|
JDT
|
6,230 | 5,358 |
Bug 5358 Suspicious usage of IJavaElementDelta.getFlags()
|
Build 20011025 Searching for references to IJavaElement.getFlags(), I found suspicious usage in JDT UI code. There are pattern of code like this one: delta.getFlags() == IJavaElementDelta.F_CONTENT where it should be: (delta.getFlags() & IJavaElementDelta.F_CONTENT) != 0
|
2001-10-30 11:04:34
| 1,004,460,000 |
resolved fixed
|
10e602c
| 1,004,550,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/typehierarchy/TypeHierarchyLifeCycle.java
|
JDT
|
6,231 | 5,328 |
Bug 5328 NPE in Open Super Method action
|
1) make an empty selection in the text editor outside of a type's range, e.g, in the import 2) execute Show in Packages View ->NPE Notice: I've changed the Show in Packages View action and it might be the culprit. Issue: unclear why this code is executed when running the other action. org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at org.eclipse.jface.util.Assert.isNotNull(Assert.java:133) at org.eclipse.jface.util.Assert.isNotNull(Assert.java(Compiled Code)) at org.eclipse.jface.viewers.StructuredSelection.<init> (StructuredSelection.java:54) at org.eclipse.jdt.internal.ui.actions.StructuredSelectionProvider$Adapter.asStruct uredSelection(StructuredSelectionProvider.java:75) at org.eclipse.jdt.internal.ui.actions.StructuredSelectionProvider$Adapter.asStruct uredSelection(StructuredSelectionProvider.java:48) at org.eclipse.jdt.internal.ui.actions.StructuredSelectionProvider$SelectionService Adapter.getSelection(StructuredSelectionProvider.java:138) at org.eclipse.jdt.internal.ui.actions.OpenSuperImplementationAction.getMethod (OpenSuperImplementationAction.java:69) at org.eclipse.jdt.internal.ui.actions.OpenSuperImplementationAction.canOperateOn (OpenSuperImplementationAction.java:61) at org.eclipse.jdt.internal.ui.actions.OpenSuperImplementationAction.update (OpenSuperImplementationAction.java:57) at org.eclipse.ui.texteditor.AbstractTextEditor.addAction (AbstractTextEditor.java:1693) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.editorContextMenuAboutToShow (JavaEditor.java:138) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.editorContextMenuAb outToShow(CompilationUnitEditor.java:298) at org.eclipse.ui.texteditor.AbstractTextEditor$2.menuAboutToShow (AbstractTextEditor.java:659) at org.eclipse.jface.action.MenuManager.fireAboutToShow (MenuManager.java:220) at org.eclipse.jface.action.MenuManager.handleAboutToShow (MenuManager.java:253) at org.eclipse.jface.action.MenuManager.access$0(MenuManager.java:250) at org.eclipse.jface.action.MenuManager$1.menuShown (MenuManager.java:280) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:112) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java (Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:842) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:828) at org.eclipse.swt.widgets.Control.WM_INITMENUPOPUP(Control.java:2787) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:983) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.TrackPopupMenu(Native Method) at org.eclipse.swt.widgets.Menu.setVisible(Menu.java:740) at org.eclipse.swt.widgets.Control.WM_CONTEXTMENU(Control.java:2612) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DefWindowProcW(Native Method) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java (Compiled Code)) at org.eclipse.swt.widgets.Scrollable.callWindowProc(Scrollable.java (Compiled Code)) at org.eclipse.swt.widgets.Control.WM_RBUTTONUP(Control.java:3446) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1136) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1165) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:675) at org.eclipse.ui.internal.Workbench.run(Workbench.java:658) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:820) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at SlimLauncher.main(SlimLauncher.java:14)
|
2001-10-29 09:41:02
| 1,004,370,000 |
resolved fixed
|
b6c438e
| 1,004,550,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/actions/StructuredSelectionProvider.java
|
JDT
|
6,232 | 5,367 |
Bug 5367 Meaningless brackets presented with primitive display options
|
With the primitive display options all turned on, booleans are rendered: enableCancelButton= false [] doubles have the same problem
|
2001-10-30 16:56:56
| 1,004,480,000 |
verified fixed
|
add38a7
| 1,004,550,000 |
org.eclipse.jdt.ui/ui debug/org/eclipse/jdt/internal/debug/ui/JDIModelPresentation.java
|
JDT
|
6,233 | 5,165 |
Bug 5165 package viewer project sorting
|
i have a (library) project Refactoring Tests Resources and other projects org.eclipse.... before 205 they used to be sorted alphabetically now they're not. is that intentional?
|
2001-10-23 05:06:04
| 1,003,830,000 |
resolved fixed
|
21646f3
| 1,004,550,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/viewsupport/JavaElementSorter.java
|
JDT
|
6,234 | 5,340 |
Bug 5340 Cancelling add exception breakpoint has no effect
|
1) Go to the breakpoints pane in the debug perspective 2) Click the J! button to add an exception 3) In the progress dialog, click cancel. The progress dialog closes immediately 4) Eventually the exception list comes up, it ignored the cancelation request. It should either honour the cancellation request or diable the cancel button (when calling ProgressMonitorDialog.run pass false for the canceleable parameter).
|
2001-10-29 14:58:20
| 1,004,390,000 |
verified fixed
|
8cf182b
| 1,004,550,000 |
org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/launcher/AddExceptionDialog.java
|
JDT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.