Showing posts with label Java Doc. Show all posts
Showing posts with label Java Doc. Show all posts

How to change the Javadocs template generated in Eclipse?

http://stackoverflow.com/questions/2612633/how-do-i-change-the-javadocs-template-generated-in-eclipse

Code Templates

Java Doc Linking to another class in another package

{@link [<package>.]<class>[#<method>]}
{@link #<method>}

Ex:
 
{@link com.myproject.Shapes.Square} 
 
{@link Square} If same package.