add method to return complete path of a project file
[jSite2.git] / src / net / pterodactylus / jsite / project / ProjectFile.java
1 /*
2  * jSite2 - ProjectFile.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jsite.project;
21
22 import java.io.File;
23 import java.util.List;
24
25 import net.pterodactylus.jsite.core.Core;
26
27 /**
28  * Abstraction for a that exists on the machine {@link Core} is being run on.
29  * This abstraction layer exists to make it possible to run jSite as a daemon
30  * and only connect to it via network.
31  * 
32  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
33  */
34 public interface ProjectFile {
35
36         /**
37          * Returns the name of the file.
38          * 
39          * @return The name of the file
40          */
41         public String getName();
42
43         /**
44          * Returns all parent files of this file. This file is the last file in the
45          * returned list.
46          * 
47          * @return A list of all parents of this file and this file itself
48          */
49         public List<ProjectFile> getParents();
50
51         /**
52          * Returns the complete path of this file, without a leading
53          * {@link File#separator}.
54          * 
55          * @return The complete path of this file
56          */
57         public String getCompletePath();
58
59         /**
60          * Returns whether this file is a directory.
61          * 
62          * @return <code>true</code> if this file is a directory,
63          *         <code>false</code> otherwise
64          */
65         public boolean isDirectory();
66
67         /**
68          * Returns whether this file is a file (as opposed to being a directory).
69          * 
70          * @return <code>true</code> if this file is a file, <code>false</code>
71          *         otherwise
72          */
73         public boolean isFile();
74
75         /**
76          * Returns whether this file is hidden.
77          * 
78          * @return <code>true</code> if this file is hidden
79          */
80         public boolean isHidden();
81
82         /**
83          * If this file is a directory, returns all files in this directory.
84          * 
85          * @see #isDirectory()
86          * @return All files in this directory if this file is a directory, or
87          *         <code>null</code> if this file is not a directory
88          */
89         public List<ProjectFile> getFiles();
90
91 }