summaryrefslogtreecommitdiffstats
path: root/core-stubs-mini/src/java/nio/channels/WritableByteChannel.java
blob: fb8e5705c81ee77dc84617e1e6cac14b20de5798 (plain)
1
2
3
4
5
6
package java.nio.channels;
public interface WritableByteChannel
  extends java.nio.channels.Channel
{
public abstract  int write(java.nio.ByteBuffer buffer) throws java.io.IOException;
}