/**
  * @param edge
  * @return the user object associated with the vertex connected to the target end of this edge
  */
 public Object getTargetVertexUserObject(Object edge) {
   Object cell = DefaultGraphModel.getTargetVertex(this, edge);
   return getValue(cell);
 }