Package com.sun.javadoc

Examples of com.sun.javadoc.ThrowsTag


  }
  private void writeThrowsTags(ThrowsTag[] throwsTags) throws IOException {
    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

Related Classes of com.sun.javadoc.ThrowsTag

Copyright © 2018 www.massapicom. 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.