examplecalculator.objectmodel.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GradleProject.Calculate Show documentation
Show all versions of GradleProject.Calculate Show documentation
Project to ease pain of test automation
The newest version!
package examplecalculator.objectmodel;
public interface Element {
T getValue();
String getElement();
void setValue(T value);
void setElement(String element);
TypeElement getTypeElement();
enum TypeElement {
SIGN,
NUMBER,
FUNCTION,
BRACKET,
FACTORIAL
}
}