All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.net.ContentHandler Maven / Gradle / Ivy

The newest version!
package java.net;

import java.io.IOException;

public abstract class ContentHandler {
    public ContentHandler() {}

    /**
     * @throws IOException
     */
    public abstract Object getContent(URLConnection urlc) throws IOException;

    /**
     * @throws IOException
     */
    public Object getContent(URLConnection urlc, Class[] classes) throws IOException {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy