• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tool to put comment for Methods

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have to put comment for method for large number of files. like...


/**
* Implements the SampleInterface interface. Comparison is based on key.
* @see SampleInterface
*/
public boolean isSameEntity(SampleInterface otherSP)
{}


Is there any tools to do this, so that i same do it simple as much as possible.Please suggest me some tool if u come across.

Thanking You.

Regards,
Mohan
 
author
Posts: 14112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, don't know such a tool.

Originally posted by Mohan Ganesan:
/**
* Implements the SampleInterface interface. Comparison is based on key.
* @see SampleInterface
*/



Notice, though, that the "implements xxx interface" and the @see-tag are redundant with the Overrides/Specified-by-information that JavaDoc automatically generates for you...
 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can insert java doc comments with Eclipse.
reply
    Bookmark Topic Watch Topic
  • New Topic