add base path scanning
[jSite2.git] / src / net / pterodactylus / jsite / project / Entry.java
index 65f2110..d16e6be 100644 (file)
@@ -46,6 +46,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.