/[classpath]/classpath/java/nio/channels/Channels.java
ViewVC logotype

Diff of /classpath/java/nio/channels/Channels.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by mkoch, Fri Nov 22 12:35:11 2002 UTC revision 1.4 by mkoch, Mon Mar 3 07:49:00 2003 UTC
# Line 56  public final class Channels Line 56  public final class Channels
56     */     */
57    public static InputStream newInputStream (ReadableByteChannel ch)    public static InputStream newInputStream (ReadableByteChannel ch)
58    {    {
59      return null;      throw new Error ("not implemented");
60    }    }
61        
62    /**    /**
# Line 64  public final class Channels Line 64  public final class Channels
64     */     */
65    public static OutputStream newOutputStream (WritableByteChannel ch)    public static OutputStream newOutputStream (WritableByteChannel ch)
66    {    {
67      return null;      throw new Error ("not implemented");
68    }    }
69        
70    /**    /**
# Line 72  public final class Channels Line 72  public final class Channels
72     */     */
73    public static ReadableByteChannel newChannel (InputStream in)    public static ReadableByteChannel newChannel (InputStream in)
74    {    {
75      return null;      throw new Error ("not implemented");
76    }    }
77        
78    /**    /**
# Line 80  public final class Channels Line 80  public final class Channels
80     */     */
81    public static WritableByteChannel newChannel (OutputStream out)    public static WritableByteChannel newChannel (OutputStream out)
82    {    {
83      return null;              throw new Error ("not implemented");
84    }    }
85    
86    /**    /**
# Line 90  public final class Channels Line 90  public final class Channels
90    public static Reader newReader (ReadableByteChannel ch, CharsetDecoder dec,    public static Reader newReader (ReadableByteChannel ch, CharsetDecoder dec,
91                                    int minBufferCap)                                    int minBufferCap)
92    {    {
93      return null;      throw new Error ("not implemented");
94    }    }
95    
96    /**    /**
# Line 112  public final class Channels Line 112  public final class Channels
112    public static Writer newWriter (WritableByteChannel ch, CharsetEncoder enc,    public static Writer newWriter (WritableByteChannel ch, CharsetEncoder enc,
113                                    int minBufferCap)                                    int minBufferCap)
114    {    {
115      return null;      throw new Error ("not implemented");
116    }    }
117    
118    /**    /**

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26