org.unlaxer.tinyexpression.loader.model.Variable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
package org.unlaxer.tinyexpression.loader.model;
public class Variable extends FormulaExportBase {
public Variable(String name, String description, float value) {
super(name, description, value);
}
}