org.formulacompiler.spreadsheet
Interface SpreadsheetToEngineCompiler


public interface SpreadsheetToEngineCompiler

Lets you compile a bound spreadsheet to a Java byte-code computation engine. The compiled engine can then be used immediately or saved to persistent storage for later use.

This interface is an API only. Do not implement it yourself.

Author:
peo
See Also:
EngineBuilder

Nested Class Summary
static class SpreadsheetToEngineCompiler.Config
          Configuration data for new instances of SpreadsheetToEngineCompiler.
static interface SpreadsheetToEngineCompiler.Factory
          Factory interface for ImplementationLocator.getInstance(Class).
 
Method Summary
 SaveableEngine compile()
          Compiles the engine.
 

Method Detail

compile

SaveableEngine compile()
                       throws CompilerException,
                              EngineException
Compiles the engine.

Returns:
the compiled engine, ready to be used immediately, or saved to persistent storage for later use.
Throws:
CompilerException
EngineException