org.seleniumhq.jetty7.util.component.Dumpable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-repacked Show documentation
Show all versions of jetty-repacked Show documentation
Browser automation framework dependency on jetty
package org.eclipse.jetty.util.component;
import java.io.IOException;
public interface Dumpable
{
String dump();
void dump(Appendable out,String indent) throws IOException;
}