Hi,

When implementing an interface (for instance an one named
'prj.subprj.Position' containing a method 'distanceWith()'), the JDE
gives:
/**
 *
 * @param param1 <description>
 * @return <description>
 */
public int distanceWith(Position param1) {
  // TODO: implement this prj.subprj.Position method
  return 0;
}

Rather, I think adding something like this would be better:
/**
 * implement the distanceWith() method in the interface
prj.subprj.Position
 *
 * @see prj.subprj.Position
 * @param param1 <description>
 * @return <description>
 */
public int distanceWith(Position param1) {
  // TODO: implement this prj.subprj.Position method
  return 0;
}

What about this suggestion please?
Thank you.
--
  andriamasinoro fenintsoa (mr)
  iremia-university of la reunion (france)
  [EMAIL PROTECTED]
  (+262) 938 324 (office)/(+692) 816 863 (portable)/(+262) 938 260 (fax)

  ================

  you're only a part of the world,
  but you're also a part of the world,
  be aware of that, and you'll get your whole place in the world!
  ----------------------------


Reply via email to