When creating a new subclass is there any way to automatically generate
skeletons for the subclass's implementation of methods which are abstract in
the base class (similar to the way the interface wizard works)?  I created
MySubclass via jde-gen-class-buffer, and when it prompted for Extends: I
entered the fully-qualified name of ParentClass, where ParentClass contains
abstract method reset.   I then tried using jde-wiz-override-method to
override reset, and get

Error evaluating Lisp result of Java expression evaluation.
  Java expression:
jde.wizards.MethodOverrideFactory.getCandidateSignatures("MySubclass",
"reset");
Java evaluation result: (error "Could not find class MySubclass")

I believe it can't find MySubclass because it looks for the class file, but
the class file can't be created yet because MySubclass won't compile until
the abstract method is implemented.

Reply via email to