Link to home
Start Free TrialLog in
Avatar of sandeep1984
sandeep1984Flag for India

asked on

Author name in JavaDoc using Eclipse

I am generating JavaDoc for my project using Eclipse.
I want author name to be displayed in the JavaDoc.

How can I do that?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sandeep1984

ASKER

I have done that.
Where the author name will be displayed?

package com.san.test;
 
/**
 * @author sandeep
 */
 
import java.awt.Container;
import java.awt.Cursor;
 
class Test
{
 public Test()
 {
 }
 
 public static void main(String args[])
 {
 }
}

Open in new window

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I have attached a code snippet.
But in which file(HTML) the author name will come?

Is there anything wrong in code?
package com.san.test;
 
/**
 * @author sandeep
 * @version 1.1
 */
 
import java.awt.Container;
import java.awt.Cursor;

Open in new window

SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial