Click here to Skip to main content
15,918,668 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using TextPad and when I am generating javadoc it shows the description
but it doesn't show me the tag which I am using .

C#
/**  @author  Vivek */
public class DemoClass
{

    public static void main(String a[])
    {
        System.out.println("Hi !! This is author here");
    }

    /** Its gettig the name of person*/
    public void getName(String name)
    {

    }
}



here i can see lines of getName method but not author name
Posted
Comments
AndroidVivek 11-Jan-13 5:59am    
using java 1.6
AndroidVivek 11-Jan-13 6:26am    
Its working in Eclipse Indigo

1 solution

Hello Vivek,

Just make sure that you are running the javadoc tool using -author option.

Regards,
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900