java.io.Writer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cldc-1.1-stub Show documentation
Show all versions of cldc-1.1-stub Show documentation
Stub of the Connected Limited Device Configuration v1.1
The newest version!
package java.io;
/**
* @since CLDC 1.0
*/
public abstract class Writer {
protected Object lock;
protected Writer() {}
protected Writer(Object lock) {}
/**
* @throws IOException
*/
public abstract void close() throws IOException;
/**
* @throws IOException
*/
public abstract void flush() throws IOException;
/**
* @throws IOException
*/
public void write(int c) throws IOException {}
/**
* @throws IOException
*/
public void write(char[] cbuf) throws IOException {}
/**
* @throws IOException
*/
public abstract void write(char[] cbuf, int off, int len) throws IOException;
/**
* @throws IOException
*/
public void write(String str) throws IOException {}
/**
* @throws IOException
*/
public void write(String str, int off, int len) throws IOException {}
}