Package org.formulacompiler.spreadsheet

Examples of org.formulacompiler.spreadsheet.SpreadsheetSaver.save()


  public void save() throws IOException, SpreadsheetException
  {
    for (Factory factory : FACTORIES) {
      if (factory.canHandle( this.config.typeExtension )) {
        final SpreadsheetSaver saver = factory.newInstance( this.config );
        saver.save();
        return;
      }
    }
    throw new SpreadsheetException.UnsupportedFormat( "No saver found for extension " + this.config.typeExtension );
  }
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.