// Copyright 2003, Trustees of Indiana University // Please see the license in the file ../LICENSE // GraphEdge concept (new for GJ) public interface GraphEdge { Vertex source(); Vertex target(); }