Source of GraphInterface.java


  1: package GraphPackage;
  2: /**
  3:    An interface of methods that create, manipulate, and process a graph.
  4:    
  5:    @author Frank M. Carrano
  6:    @author Timothy M. Henry
  7:    @version 5.0
  8: */
  9: public interface GraphInterface<T> extends BasicGraphInterface<T>, 
 10:                                            GraphAlgorithmsInterface<T>
 11: {
 12: } // end GraphInterface