「付加行」機能の実装中。
[nucalgen] / nucalgen / src / main / java / jp / satomichan / nucalgen / addition / AcRow.java
diff --git a/nucalgen/src/main/java/jp/satomichan/nucalgen/addition/AcRow.java b/nucalgen/src/main/java/jp/satomichan/nucalgen/addition/AcRow.java
new file mode 100644 (file)
index 0000000..5fd994f
--- /dev/null
@@ -0,0 +1,24 @@
+package jp.satomichan.nucalgen.addition;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class AcRow {
+       private List<AcCell> cells = new ArrayList<AcCell>();
+
+       public List<AcCell> getCells() {
+               return cells;
+       }
+
+       public void setCells(List<AcCell> cells) {
+               this.cells = cells;
+       }
+       
+       
+       public void addCell(AcCell cell) {
+               this.cells.add(cell);
+               //System.out.println("Row#addCell()");
+       }
+               
+       
+}