コード例 #1
0
 private XElement addStyle(XElement node, Piece p)
 {
     if (p.getStyle() != null)
         node.Add(new XAttribute("style", p.getStyle()));
     return node;
 }
コード例 #2
0
 public Cell addPiece(Piece piece)
 {
     pieces.Add(piece);
     return this;
 }