1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-26 08:35:20 +00:00

Add a number implementation selector box.

This commit is contained in:
2017-08-01 11:52:48 -07:00
parent 76677ef494
commit d205651332
3 changed files with 34 additions and 2 deletions

View File

@@ -72,4 +72,12 @@ public class Configuration {
public String getNumberImplementation() {
return numberImplementation;
}
/**
* Sets the number implementation for the configuration
* @param numberImplementation the number implementation.
*/
public void setNumberImplementation(String numberImplementation) {
this.numberImplementation = numberImplementation;
}
}