예제 #1
0
 public void removeParentBChildBar(ParentBChildBar o) {
   if (o.getParentBParent() != this) {
     return;
   }
   o.setParentBParentWithoutPercolation(null);
   this.removeParentBChildBarWithoutPercolation(o);
 }
예제 #2
0
 public void addParentBChildBar(ParentBChildBar o) {
   if (o.getParentBParent() == this) {
     return;
   }
   o.setParentBParentWithoutPercolation((ParentBParent) this);
   this.addParentBChildBarWithoutPercolation(o);
 }