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

Examples of com.iggroup.oss.restdoclet.doclet.type.PathParameter


      LOG.debug(method.getName());
      ArrayList<PathParameter> pathParams = new ArrayList<PathParameter>();
      for (Parameter param : params) {
         if (isAnnotated(param, PathVariable.class)) {
            pathParams.add(new PathParameterBuilder().build(
               new PathParameter(), param, tags));
         }
      }
      method.setPathParams(pathParams);
   }
View Full Code Here

TOP

Related Classes of com.iggroup.oss.restdoclet.doclet.type.PathParameter

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.