예제 #1
0
파일: Entity.java 프로젝트: macs672/rgb4
 public Entity replace(final Entity e) {
   this.childrenInOrder.remove(this.children.get(e.get(this.id)));
   this.children.put(e.getId(), e);
   this.childrenInOrder.add(e);
   return e;
 }