Ejemplo n.º 1
0
  public void add(RefEntity child) {
    if (myChildren == null) {
      myChildren = new ArrayList<RefEntity>();
    }

    myChildren.add(child);
    ((RefEntityImpl) child).setOwner(this);
  }
Ejemplo n.º 2
0
 protected void removeChild(RefEntity child) {
   if (myChildren != null) {
     myChildren.remove(child);
     ((RefEntityImpl) child).setOwner(null);
   }
 }