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

javax.microedition.io.InputConnection Maven / Gradle / Ivy

The newest version!
package javax.microedition.io;

import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;

/**
 * @since CLDC 1.0
 */
public interface InputConnection extends Connection {
    /**
     * @throws IOException
     */
    DataInputStream openDataInputStream() throws IOException;

    /**
     * @throws IOException
     */
    InputStream openInputStream() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy