I'm working on some Java code in Eclipse which has comment style as follows:
//-------------------------------------------------------------
// Useful method
//-------------------------------------------------------------
public void usefulMethod()
I want to convert the comments to Javadoc, e.g.
/**
* Useful method
*/
public void usefulMethod()
What's the best way to do this? Does Eclipse have some auto-magic to help? Since I use the same comment style inside methods (and want to keep it that way), naive find-replace won't work here.