Package com.sun.javadoc

Examples of com.sun.javadoc.ClassDoc.firstSentenceTags()


        mOut.println("<TR BGCOLOR=\"#CCCCFF\"><TH ALIGN=\"left\" COLSPAN=\"2\"><FONT SIZE=\"+2\"><B>Components Summary</B></FONT></TH></TR>");
        for (int c = 0; c < testAPIComponents.length; c++) {
            ClassDoc classDoc = testAPIComponents[c];
            String componentName = classDoc.name();
            mOut.print("<TR><TD WIDTH=\"1%\"><CODE><B><A HREF=\"components/" + componentName + ".html\">" + componentName + "</A></B></CODE></TD><TD>");
            printInlineTags(classDoc.firstSentenceTags(), classDoc);
            mOut.println("</TD>");
        }
        mOut.println("</TABLE>");
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.