Share Pastebin
Guest
Public paste!

caiobm

By: a guest | Jan 23rd, 2009 | Syntax: Java | Size: 0.20 KB | Hits: 189 | Expires: Never
Copy text to clipboard
  1. /*
  2.  * Graph Interface. To any class that is a graph
  3.  */
  4.  
  5. /**
  6.  *
  7.  * @author Caio Bomfim Martins
  8.  */
  9. public interface Graph<K,V> {    
  10.     public V get(int i, int j);
  11.     public int size();
  12. }