/[classpath]/classpath/java/io/FileDescriptor.java
ViewVC logotype

Diff of /classpath/java/io/FileDescriptor.java

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

revision 1.16 by cbj, Fri Apr 25 22:44:43 2003 UTC revision 1.17 by cbj, Sun Apr 27 22:05:37 2003 UTC
# Line 54  public final class FileDescriptor Line 54  public final class FileDescriptor
54     * stream.  This will usually be accessed through the     * stream.  This will usually be accessed through the
55     * <code>System.in</code>variable.     * <code>System.in</code>variable.
56     */     */
57    public static final FileDescriptor in = null;    public static final FileDescriptor in = new FileDescriptor ();
58    
59    /**    /**
60     * A <code>FileDescriptor</code> representing the system standard output     * A <code>FileDescriptor</code> representing the system standard output
61     * stream.  This will usually be accessed through the     * stream.  This will usually be accessed through the
62     * <code>System.out</code>variable.     * <code>System.out</code>variable.
63     */     */
64    public static final FileDescriptor out = null;    public static final FileDescriptor out = new FileDescriptor ();
65    
66    /**    /**
67     * A <code>FileDescriptor</code> representing the system standard error     * A <code>FileDescriptor</code> representing the system standard error
68     * stream.  This will usually be accessed through the     * stream.  This will usually be accessed through the
69     * <code>System.err</code>variable.     * <code>System.err</code>variable.
70     */     */
71    public static final FileDescriptor err = null;    public static final FileDescriptor err = new FileDescriptor ();
72    
73    static    static
74      {      {

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

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