Examples of exceptionComment()


Examples of com.sun.javadoc.ThrowsTag.exceptionComment()

    if(throwsTags==null || throwsTags.length==0) return; // nothing to do
    write("<throws>");
    for(int i=0; i < throwsTags.length; i++) {
      ThrowsTag t = throwsTags[i];
      String name=t.exceptionName();
      String comment=t.exceptionComment();
      write("<throw name=\""+name+"\">");
      writeHTMLFormattedText(comment);
      write("</throw>");
    }
    write("</throws>");
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.