Пример #1
0
 /**
  * The "start" method as required by Javadoc.
  *
  * @param root the root of the documentation tree.
  * @see pl.wcislo.sbql4j.javadoc.RootDoc
  * @return true if the doclet ran without encountering any errors.
  */
 public static boolean start(RootDoc root) {
   try {
     HtmlDoclet doclet = new HtmlDoclet();
     return doclet.start(doclet, root);
   } finally {
     ConfigurationImpl.reset();
   }
 }