diff options
author | Aaron M. Renn <arenn@urbanophile.com> | 1998-11-29 00:42:21 +0000 |
---|---|---|
committer | Aaron M. Renn <arenn@urbanophile.com> | 1998-11-29 00:42:21 +0000 |
commit | d78a53f54e90ad0203bdb592f785c5dcd08ac6b6 (patch) | |
tree | a3b1b0bf363bada41af86d737b16508397d5fe48 /java/io/FileOutputStream.java | |
parent | e1949fafc994c6d106ea88712caf0ab2dfd6542f (diff) | |
download | classpath-d78a53f54e90ad0203bdb592f785c5dcd08ac6b6.tar.gz |
Documentation Fix
Diffstat (limited to 'java/io/FileOutputStream.java')
-rw-r--r-- | java/io/FileOutputStream.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/io/FileOutputStream.java b/java/io/FileOutputStream.java index b06212879..913283a90 100644 --- a/java/io/FileOutputStream.java +++ b/java/io/FileOutputStream.java @@ -59,7 +59,7 @@ private int native_fd; * This method initializes a <code>FileOutputStream</code> object to write * to the named file. The file is created if it does not exist, and * the bytes written are written starting at the beginning of the file. - * + * <p> * Before opening a file, a security check is performed by calling the * <code>checkWrite</code> method of the <code>SecurityManager</code> (if * one exists) with the name of the file to be opened. An exception is @@ -82,8 +82,8 @@ FileOutputStream(String name) throws SecurityException, IOException * This method initializes a <code>FileOutputStream</code> object to write * to the specified <code>File</code> object. The file is created if it * does not exist, and the bytes written are written starting at the - * beginning of the file. - * + * beginning of the file. + * <p> * Before opening a file, a security check is performed by calling the * <code>checkWrite</code> method of the <code>SecurityManager</code> (if * one exists) with the name of the file to be opened. An exception is @@ -108,7 +108,7 @@ FileOutputStream(File file) throws SecurityException, IOException * the bytes written are written starting at the beginning of the file if * the <code>append</code> argument is <code>false</code> or at the end * of the file if the <code>append</code> argument is true. - * + * <p> * Before opening a file, a security check is performed by calling the * <code>checkWrite</code> method of the <code>SecurityManager</code> (if * one exists) with the name of the file to be opened. An exception is @@ -148,7 +148,7 @@ FileOutputStream(String name, boolean append) throws SecurityException, * object. This method does not create any underlying disk file or * reposition the file pointer of the given descriptor. It assumes that * this descriptor is ready for writing as is. - * + * <p> * Before opening a file, a security check is performed by calling the * <code>checkWrite</code> method of the <code>SecurityManager</code> (if * one exists) with the specified <code>FileDescriptor</code> as an argument. |