de.l3s.boilerpipe.sax.InputSourceable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webcontent-grabber Show documentation
Show all versions of webcontent-grabber Show documentation
A java client library to grab the webcontent
The newest version!
package de.l3s.boilerpipe.sax;
import org.xml.sax.InputSource;
/**
* An InputSourceable can return an arbitrary number of new {@link InputSource}s for a given document.
*
* @author Christian Kohlschütter
*/
public interface InputSourceable {
InputSource toInputSource();
}