You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2021/08/09 23:50:22 UTC

svn commit: r1892147 - /poi/trunk/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java

Author: kiwiwings
Date: Mon Aug  9 23:50:22 2021
New Revision: 1892147

URL: http://svn.apache.org/viewvc?rev=1892147&view=rev
Log:
convert link to internal jdk api to preformatted code

Modified:
    poi/trunk/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java

Modified: poi/trunk/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java
URL: http://svn.apache.org/viewvc/poi/trunk/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java?rev=1892147&r1=1892146&r2=1892147&view=diff
==============================================================================
--- poi/trunk/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java (original)
+++ poi/trunk/poi/src/main/java/org/apache/poi/util/TempFileCreationStrategy.java Mon Aug  9 23:50:22 2021
@@ -22,10 +22,10 @@ import java.io.IOException;
 
 /**
  * Interface used by the {@link TempFile} utility class to create temporary files.
- * 
+ *
  * Classes that implement a TempFileCreationStrategy attempt to handle the cleanup
  * of temporary files.
- * 
+ *
  * Examples include:
  * <ul>
  *   <li>{@link DefaultTempFileCreationStrategy} deletes temporary files when
@@ -36,7 +36,7 @@ import java.io.IOException;
  *       You may wish to implement your own strategy that meets the needs of
  *       your situation.
  *   </li>
- *   <li>A strategy that keeps the <code>n</code> most-recent files, discarding
+ *   <li>A strategy that keeps the {@code n} most-recent files, discarding
  *       older files on a first-in, first-out basis.
  *       A java.util.Deque or org.apache.commons.collections4.queue.CircularFifoQueue
  *       may be helpful for achieving this.
@@ -46,7 +46,7 @@ import java.io.IOException;
  *       delete the temporary files in the reverse order that they were created.
  *       This is the same as DefaultTempFileCreationStrategy, except the strategy
  *       class would maintain the list of files to delete rather than or in
- *       addition to {@link java.io.DeleteOnExitHook} maintaining the list, and
+ *       addition to {@code java.io.DeleteOnExitHook} maintaining the list, and
  *       the files could be deleted before the JVM exit.
  *   </li>
  *   <li>A strategy that creates a directory that is deleted on JVM exit.
@@ -58,7 +58,7 @@ import java.io.IOException;
  *       creating regular (unregistered) files in the temp directory.
  *   </li>
  * </ul>
- * 
+ *
  */
 public interface TempFileCreationStrategy {
     /**
@@ -66,22 +66,22 @@ public interface TempFileCreationStrateg
      *
      * @param prefix The prefix to be used to generate the name of the temporary file.
      * @param suffix The suffix to be used to generate the name of the temporary file.
-     * 
+     *
      * @return The path to the newly created and empty temporary file.
-     * 
+     *
      * @throws IOException If no temporary file could be created.
      */
     File createTempFile(String prefix, String suffix) throws IOException;
-    
+
     /**
      * Creates a new and empty temporary directory.
      *
      * @param prefix The directory name to be used to generate the name of the temporary directory.
-     * 
+     *
      * @return The path to the newly created and empty temporary directory.
-     * 
+     *
      * @throws IOException If no temporary directory could be created.
-     * 
+     *
      * @since POI 3.15 beta 3.
      */
     File createTempDirectory(String prefix) throws IOException;



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org