|
Eclipse auto generating code -
06-20-2008, 08:18 PM
Greetings,
I'd expect Eclipse to stub out abstract method from a base when I use the auto-complete feature.
For example, assuming that "Foo" is a class that has an abstract method called "Bar", I'd type
public class MyClass extends Foo(cntrl+space)
and Eclipse would add a stubed out implementation for "bar"
public void Bar()
{
// TODO
}
Similarly, I'd expect the same behavior when implementing an interface.
Am I missing something? This seems pretty basic, even DevStudio does it.
|