public void addChild(JUMIBone newChild) { children.add(newChild); newChild.setParent(this); }
public void removeChild(JUMIBone childToRemove) { children.remove(childToRemove); childToRemove.setParent(null); }