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