View Javadoc

1   package org.eclipse.jetty.util.component;
2   
3   import java.io.IOException;
4   
5   public interface Dumpable
6   {
7       String dump();
8       void dump(Appendable out,String indent) throws IOException;
9   }