From 813a43f2e54a6a6669dd0fd43df132ede7ac7a22 Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Sat, 26 Apr 2014 22:43:23 +0000 Subject: [PATCH] Fix javadoc layout git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1590317 13f79535-47bb-0310-9956-ffa450edef68 --- .../poifs/filesystem/NPOIFSFileSystem.java | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/java/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.java b/src/java/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.java index f915d84e22..dbc1783684 100644 --- a/src/java/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.java +++ b/src/java/org/apache/poi/poifs/filesystem/NPOIFSFileSystem.java @@ -58,9 +58,9 @@ import org.apache.poi.util.IOUtils; import org.apache.poi.util.LongField; /** - * This is the main class of the POIFS system; it manages the entire - * life cycle of the filesystem. - * This is the new NIO version + *

This is the main class of the POIFS system; it manages the entire + * life cycle of the filesystem.

+ *

This is the new NIO version, which uses less memory

*/ public class NPOIFSFileSystem extends BlockStore @@ -129,12 +129,12 @@ public class NPOIFSFileSystem extends BlockStore } /** - * Creates a POIFSFileSystem from a File. This uses less memory than - * creating from an InputStream. The File will be opened read-only + *

Creates a POIFSFileSystem from a File. This uses less memory than + * creating from an InputStream. The File will be opened read-only

* - * Note that with this constructor, you will need to call {@link #close()} + *

Note that with this constructor, you will need to call {@link #close()} * when you're done to have the underlying file closed, as the file is - * kept open during normal operation to read the data out. + * kept open during normal operation to read the data out.

* * @param file the File from which to read the data * @@ -147,12 +147,12 @@ public class NPOIFSFileSystem extends BlockStore } /** - * Creates a POIFSFileSystem from a File. This uses less memory than - * creating from an InputStream. + *

Creates a POIFSFileSystem from a File. This uses less memory than + * creating from an InputStream.

* - * Note that with this constructor, you will need to call {@link #close()} + *

Note that with this constructor, you will need to call {@link #close()} * when you're done to have the underlying file closed, as the file is - * kept open during normal operation to read the data out. + * kept open during normal operation to read the data out.

* * @param file the File from which to read the data * @@ -169,12 +169,12 @@ public class NPOIFSFileSystem extends BlockStore } /** - * Creates a POIFSFileSystem from an open FileChannel. This uses - * less memory than creating from an InputStream. + *

Creates a POIFSFileSystem from an open FileChannel. This uses + * less memory than creating from an InputStream.

* - * Note that with this constructor, you will need to call {@link #close()} + *

Note that with this constructor, you will need to call {@link #close()} * when you're done to have the underlying Channel closed, as the channel is - * kept open during normal operation to read the data out. + * kept open during normal operation to read the data out.

* * @param channel the FileChannel from which to read the data * -- 2.39.5