Bug 62441 - "Override/Implement Methods..." in anonymous class still not availible?
Summary: "Override/Implement Methods..." in anonymous class still not availible?
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.0   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: 3.0 M9   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-05-17 02:39 EDT by ryenus ' CLA
Modified: 2004-05-31 07:52 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description ryenus ' CLA 2004-05-17 02:39:54 EDT
 
Comment 1 ryenus ' CLA 2004-05-17 02:43:22 EDT
this feature is really useful when creating a listner
Comment 2 Dani Megert CLA 2004-05-17 04:54:43 EDT
available in builds >= 200405170800
Comment 3 Askar Rahimberdiev CLA 2004-05-27 16:59:19 EDT
Still does not work in M9 (200405211200). The Package Explorer context menu 
does not contain "Override/Implement Methods..." menu item. When I select this 
action from the editor context menu, "The operation is not applicable ..." 
message box is displayed.

abstract class CSI {
	void f() {
		new Comparable() {
			
		};
	}
}
Comment 4 Dani Megert CLA 2004-05-28 04:56:49 EDT
there's no menu but you can do it using code assist:
type new YourClassGoesHere(<code assist>
Comment 5 ryenus ' CLA 2004-05-31 07:52:18 EDT
  I don't think the context menu item ought to be disabled, coz from the view 
of inheriting, there's no deference between named subclasses and anonymous 
inner classes. although the current content assist behavior is really great and 
attractive. the former is mandarine and should not be replaced by the latter, 
which is just a shortcut, i think.