Package com.iggroup.oss.restdoclet.doclet.type.builder

Examples of com.iggroup.oss.restdoclet.doclet.type.builder.ControllerBuilder


         if (isAnnotated(classDoc,
            org.springframework.stereotype.Controller.class)) {
            LOG.info("Found controller.  Generating javadoc xml for "
               + classDoc.qualifiedName() + ".java");
            marshallController(
               new ControllerBuilder().build(new Controller(), classDoc),
               DocletUtils.documentationFile(classDoc));
            found = true;
         }
      }
      if (!found) {
View Full Code Here

TOP

Related Classes of com.iggroup.oss.restdoclet.doclet.type.builder.ControllerBuilder

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.