# Prints @author tags if set to "yes".
tag.author=yes
# Prints @version tags if set to "yes".
tag.version=yes
# Prints @since tags if set to "yes".
tag.since=yes
# Show the Summary Tables if set to "yes".
summary.table=yes
# Encrypts the document if set to "yes".
encrypted=yes
# The following property is ignored
# if "encrypted" is not set to yes.
allow.printing=yes
# Creates hyperlinks if set to "yes".
# For print documents, use "no", so
# there will be no underscores.
create.links=yes
# Creates an alphabetical index of all
# classes and members at the end of the
# document if set to "yes".
create.index=yes
# Creates a navigation frame (or PDF
# outline tree) if set to "yes".
create.frame=yes
# Creates a title page at the beginning
# of the document if set to "yes".
api.title.page=yes
# Defines the title on the title page if
# no external HTML page is used.
api.title=Test pdfdoeclet
# Defines the author text on the
# title page.
api.author=by Wen Liao
packagecom.test;publicclasstest{publicclassmul{publicintmultiply(inti,intj){returni*j;}}publicstaticfinalintMAX_NUM=9;publicstaticvoidmain(String[]args){testmy_test=newtest();my_test.hello();}privatevoidhello(){mulmy_mul=newmul();for(inti=1;i<=MAX_NUM;i++){for(intj=1;j<=MAX_NUM;j++){System.out.println(i+" x "+j+" = "+my_mul.multiply(i,j));}}}}
<html><body>This a overview document for testing. It should supports javadoc overview tags. However, somehow my pdfdoclet did not get javadoc tag to work while javadoc generated file has no problem at all. There might some missing actions.
</body></html>
package-info.java
package-info.java
12345
/** * This is a page to describe your package */packagetest;
packagecom.test;/** * A example to test javadoc tags * <p> * @see mul * @see test.mul#multiply*/publicclasstest{/** * multiply class, used by {@link test class test} */publicclassmul{/** * @param i operand 1 * @param j operand 2 * @return result of i * j */publicintmultiply(inti,intj){returni*j;}}/** * Number of loop in multiplication: {@value} */publicstaticfinalintMAX_NUM=9;publicstaticvoidmain(String[]args){testmy_test=newtest();my_test.hello();}privatevoidhello(){mulmy_mul=newmul();for(inti=1;i<=MAX_NUM;i++){for(intj=1;j<=MAX_NUM;j++){System.out.println(i+" x "+j+" = "+my_mul.multiply(i,j));}}}}