Grid.java
2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package kernel;
import kernel.exception.CellNotFoundException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Grid {
private Map<String, Cell> cells = new HashMap<>();
public static LanguageEnum language = LanguageEnum.FR;
public String createCell(String column, Integer line, Double value) {
String id = this.getCellId(column, line);
Cell cell = new Cell(column, line, value);
this.cells.put(id, cell);
return id;
}
public String createCell(String column, Integer line, Formula formula) {
String id = this.getCellId(column, line);
Cell cell = new Cell(column, line, formula);
this.cells.put(id, cell);
return id;
}
public void setValue(String column, Integer line, Double value) throws CellNotFoundException {
this.getCell(column, line).setValue(value);
}
public void setFormula(String column, Integer line, Formula formula) throws CellNotFoundException {
this.getCell(column, line).setFormula(formula);
}
public Cell getCell(String column, Integer line) throws CellNotFoundException {
Cell cell = this.cells.get(this.getCellId(column, line));
if (cell != null)
return cell;
else
throw new CellNotFoundException();
}
public List<Cell> getCells() {
return new ArrayList<>(this.cells.values());
}
public Double getValue(String column, Integer line) throws CellNotFoundException {
return this.getCell(column, line).getValue();
}
public String getFormulaAsString(String column, Integer line) throws CellNotFoundException {
return this.getCell(column, line).toString();
}
public String getDevelopedFormula(String column, Integer line) throws CellNotFoundException {
return this.getCell(column, line).getDevelopedFormula();
}
private String getCellId(String column, Integer line) {
return column + line.toString();
}
}