org.unlaxer.sample.calc.Calculator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of calculator Show documentation
Show all versions of calculator Show documentation
a simple parser combinator inspired by RelaxNG
package org.unlaxer.sample.calc;
import org.unlaxer.parser.Parser;
public interface Calculator {
public CalculateResult calculate(CalculateContext calculateContext, String formula);
public Parser getParser();
}