Package com.agilejava.docbkx.maven

Examples of com.agilejava.docbkx.maven.StylesheetResolver


    try {     
      URL url = getNonDefaultStylesheetURL() == null ? getDefaultStylesheetURL() : getNonDefaultStylesheetURL();
      if (getLog().isDebugEnabled()) {
          getLog().debug("Using stylesheet: " + url.toExternalForm());
      }
      uriResolver = new StylesheetResolver("urn:docbkx:stylesheet", new StreamSource(url.openStream(), url
          .toExternalForm()), catalogResolver);
    } catch (IOException ioe) {
      throw new MojoExecutionException("Failed to read stylesheet.", ioe);
    }
    return uriResolver;
View Full Code Here

TOP

Related Classes of com.agilejava.docbkx.maven.StylesheetResolver

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.