Blame view

src/kernel/operation/BinaryOperation.java 1.53 KB
5731029f   Remi   merge
1
  package kernel.operation;
2e8fbd04   Remi   global refactor
2
  
5731029f   Remi   merge
3
4
5
  import kernel.Cell;
  import kernel.Formula;
  
1ff9c9a9   [mandjemb]   Recommandation pr...
6
  import java.io.Serializable;
5731029f   Remi   merge
7
8
9
  import java.util.ArrayList;
  import java.util.List;
  
e0bdcd83   Remi   refacto
10
  abstract public class BinaryOperation implements Formula, Serializable {
4186cd92   Remi   fix tests
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
  	
  	private static final long serialVersionUID = 1L;
  	protected Cell leftCell;
  	protected Cell rightCell;
  	
  	public BinaryOperation(Cell leftCell, Cell rightCell) {
  		this.leftCell = leftCell;
  		this.rightCell = rightCell;
  	}
  	
  	abstract public double eval();
  	
  	abstract public String getOperator();
  	
  	public String getDevelopedFormula() {
  		return "(" + this.leftCell.getDevelopedFormula() + this.getOperator() + this.rightCell.getDevelopedFormula() + ")";
  	}
  	
  	public String toString() {
  		return "(" + this.leftCell.getId() + this.getOperator() + this.rightCell.getId() + ")";
  	}
  	
  	public boolean createCycle(Cell cell) {
  		if (this.leftCell.containFormula() && !this.rightCell.containFormula())
  			return this.leftCell.getFormula().createCycle(cell);
  		
  		if (!this.leftCell.containFormula() && this.rightCell.containFormula())
  			return this.rightCell.getFormula().createCycle(cell);
  		
  		if (this.leftCell.containFormula() && this.rightCell.containFormula())
  			return this.leftCell.getFormula().createCycle(cell) && this.rightCell.getFormula().createCycle(cell);
  		
  		return (cell.getId().equals(this.rightCell.getId()) || cell.getId().equals(this.leftCell.getId()));
  	}
  	
  	public List<Cell> getUtilisedCells() {
  		List<Cell> cells = new ArrayList<>();
  		cells.add(this.leftCell);
  		cells.add(this.rightCell);
  		
  		return cells;
  	}
2e8fbd04   Remi   global refactor
53
  }