コード例 #1
0
 public void addChild(JUMIBone newChild) {
   children.add(newChild);
   newChild.setParent(this);
 }
コード例 #2
0
 public void removeChild(JUMIBone childToRemove) {
   children.remove(childToRemove);
   childToRemove.setParent(null);
 }