Add filename of last insert.
authorDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 22 Mar 2012 20:11:18 +0000 (21:11 +0100)
committerDavid ‘Bombe’ Roden <bombe@freenetproject.org>
Thu, 22 Mar 2012 20:11:18 +0000 (21:11 +0100)
src/de/todesbaum/jsite/application/FileOption.java

index 52d071b..c8824de 100644 (file)
@@ -52,6 +52,9 @@ public class FileOption {
        /** The edition of the last insert. */
        private int lastInsertEdition;
 
+       /** The filename of the last insert. */
+       private String lastInsertFilename;
+
        /** The current hash of the file. */
        private String currentHash;
 
@@ -230,6 +233,27 @@ public class FileOption {
        }
 
        /**
+        * Returns the name of the file when it was last inserted.
+        *
+        * @return The name of the file at the last insert
+        */
+       public String getLastInsertFilename() {
+               return lastInsertFilename;
+       }
+
+       /**
+        * Sets the name of the file when it was last inserted.
+        *
+        * @param lastInsertFilename
+        *            The name of the file at the last insert.
+        * @return These file options
+        */
+       public FileOption setLastInsertFilename(String lastInsertFilename) {
+               this.lastInsertFilename = lastInsertFilename;
+               return this;
+       }
+
+       /**
         * Returns the current hash of the file. This value is ony a temporary value
         * that is copied to {@link #getLastInsertHash()} when a project has
         * finished inserting.