Package org.concordion.ext.excel.conversion

Examples of org.concordion.ext.excel.conversion.HTMLBuilderImpl


  @Override
    public InputStream createInputStream(Resource resource) throws IOException {
        InputStream inputStream = decorated.createInputStream(resource);
       
        if (resource.getName().endsWith(ExcelExtension.EXCEL_FILE_EXTENSION)) {
           HTMLBuilder result = new HTMLBuilderImpl();
             workbookStrategy.process(new WorkbookHelper(inputStream, getTestTitle(resource)), result);
             inputStream.close();

             return createInputStreamFromPage(result);
        } else {
View Full Code Here

TOP

Related Classes of org.concordion.ext.excel.conversion.HTMLBuilderImpl

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.