Source of Writable.java


  1: 
  2: public interface Writable
  3: {
  4:     public String toString();
  5:     
  6:     public void writeOutput();
  7: }