remove Id keyword
[jSite2.git] / src / net / pterodactylus / jsite / project / Entry.java
index 65f2110..6164914 100644 (file)
@@ -24,7 +24,6 @@ package net.pterodactylus.jsite.project;
  * (separated by a slash, ‘/’).
  * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
  */
 public interface Entry {
 
@@ -46,6 +45,23 @@ public interface Entry {
        public void setName(String name);
 
        /**
+        * Returns whether this file should be inserted.
+        * 
+        * @return <code>true</code> to insert the file, <code>false</code> to
+        *         skip it
+        */
+       public boolean isInsert();
+
+       /**
+        * Sets whether this file should be inserted.
+        * 
+        * @param insert
+        *            <code>true</code> to insert the file, <code>false</code>
+        *            to skip it
+        */
+       public void setInsert(boolean insert);
+
+       /**
         * Returns the content type of the file. If the content type is
         * <code>null</code>, the node will auto-detect the content type based on
         * the filename. The content type is given as a MIME type.