Ejemplo n.º 1
0
 /**
  * Removes the bond at the given position from the AtomContainer.
  *
  * @param position The position of the bond to be removed.
  */
 public IBond removeBond(int position) {
   IBond bond = bonds[position];
   bond.removeListener(this);
   for (int i = position; i < bondCount - 1; i++) {
     bonds[i] = bonds[i + 1];
   }
   bonds[bondCount - 1] = null;
   bondCount--;
   notifyChanged();
   return bond;
 }