Package br.com.caelum.tubaina.resources

Examples of br.com.caelum.tubaina.resources.IndexResource


  }

  @Override
  public Chunk createChunk(Matcher matcher) {
    int dirNumber = Chapter.getChaptersCount() + Section.getSectionsCount();
    IndexResource resource = new IndexResource(matcher.group(1), dirNumber);
    resources.add(resource);
    return new IndexChunk(matcher.group(1));
  }
View Full Code Here


  }

  @Override
  public Chunk createChunk(Matcher matcher) {
    int dirNumber = ChapterBuilder.getChaptersCount() + Section.getSectionsCount();
    IndexResource resource = new IndexResource(matcher.group(1), dirNumber);
    resources.add(resource);
    return new IndexChunk(matcher.group(1));
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.tubaina.resources.IndexResource

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.