Package org.codehaus.enunciate.util

Examples of org.codehaus.enunciate.util.ResourceMethodPathComparator


  private boolean considerFacets = false;
  private String var = "resources";

  protected Iterator<List<ResourceMethod>> getLoop(TemplateModel model) throws TemplateException {
    TreeMap<String, List<ResourceMethod>> resourcesByPath = new TreeMap<String, List<ResourceMethod>>(new ResourceMethodPathComparator());

    for (RootResource rootResource : getModel().getRootResources()) {
      for (ResourceMethod resource : rootResource.getResourceMethods(true)) {
        if (considerFacets && !FacetFilter.accept(resource)) {
          continue;
View Full Code Here

TOP

Related Classes of org.codehaus.enunciate.util.ResourceMethodPathComparator

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.