Package br.com.caelum.tubaina.resources

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


      File resources = new File(chapdir, "resources/");
      resources.mkdir();

      File logo = new File(templateDir, "html/logo.png");
      ResourceManipulator manipulator = new HtmlResourceManipulator(resources, indexes, logo);

      for (Resource r : c.getResources()) {
        try {
          r.copyTo(manipulator);
        } catch (TubainaException e) {
View Full Code Here


import br.com.caelum.tubaina.resources.ResourceManipulator;

public class HtmlResourceManipulatorFactory implements ResourceManipulatorFactory{

  public ResourceManipulator build(File imageDestinationPath, Map<String, Integer> indexes, File logo) {
    return new HtmlResourceManipulator(imageDestinationPath , indexes, logo);
  }
View Full Code Here

TOP

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

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.