「付加行」機能の実装中。
[nucalgen] / nucalgen / src / main / java / jp / satomichan / nucalgen / addition / AcRow.java
1 package jp.satomichan.nucalgen.addition;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 public class AcRow {
7         private List<AcCell> cells = new ArrayList<AcCell>();
8
9         public List<AcCell> getCells() {
10                 return cells;
11         }
12
13         public void setCells(List<AcCell> cells) {
14                 this.cells = cells;
15         }
16         
17         
18         public void addCell(AcCell cell) {
19                 this.cells.add(cell);
20                 //System.out.println("Row#addCell()");
21         }
22                 
23         
24 }