Examples of DeclarativeUIPreProcessor


Examples of org.cruxframework.crux.tools.compile.preprocessor.DeclarativeUIPreProcessor

  /**
   * @see org.cruxframework.crux.tools.compile.AbstractCruxCompiler#initializeProcessors()
   */
  protected void initializeProcessors()
    {
    DeclarativeUIPreProcessor preProcessor = new DeclarativeUIPreProcessor();
    preProcessor.setOutputDir(pagesOutputDir);
    preProcessor.setIndent(indentPages);
    preProcessor.setKeepGeneratedFiles(keepPagesGeneratedFiles);
    if (!StringUtils.isEmpty(outputCharset))
    {
      preProcessor.setOutputCharset(outputCharset);
    }
    if (!StringUtils.isEmpty(pageFileExtension))
    {
      preProcessor.setPageFileExtension(pageFileExtension);
    }
    addPreProcessor(preProcessor);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.