TestJavadoc.java
Select all
/* TestJavadoc.java CIS 260 2/16/2005 David Klick Demonstrates JavaDoc features. Create web pages using: javadoc TestJavadoc.java or javadoc -version -author TestJavadoc.java */ /** TestJavadoc A class designed to test out various
Javadoc
™
features. @author David Klick @version 7.9.8.112a_556 @since Java 23 @deprecated @see TestAssert1 */ public class TestJavadoc { /** All this does is print @param s this is what I print @return nothing */ protected void print(String s) { System.out.println(s); } }