add virtual flag in entry
[jSite2.git] / src / net / pterodactylus / jsite / project / AbstractEntry.java
1 /*
2  * jSite2 - AbstractEntry.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 net.pterodactylus.util.beans.AbstractBean;
23
24 /**
25  * Abstract base implementation of a {@link Entry}.
26  * 
27  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
28  */
29 public abstract class AbstractEntry extends AbstractBean implements Entry {
30
31         /** The name of the “name” property. */
32         public static final String PROPERTY_NAME = "name";
33
34         /** The name of the “insert” property. */
35         public static final String PROPERTY_INSERT = "insert";
36
37         /** The name of the “content type” property. */
38         public static final String PROPERTY_CONTENT_TYPE = "contentType";
39
40         /** Whether this entry is virtual. */
41         private final boolean virtual;
42
43         /** The name of the file. */
44         private String name;
45
46         /** Whether to insert the file. */
47         private boolean insert;
48
49         /** The content type of the file. */
50         private String contentType;
51
52         /**
53          * Creates a new entry.
54          * 
55          * @param virtual
56          *            <code>true</code> if this entry is virtual,
57          *            <code>false</code> otherwise
58          */
59         protected AbstractEntry(boolean virtual) {
60                 this.virtual = virtual;
61         }
62
63         /**
64          * {@inheritDoc}
65          */
66         public boolean isVirtual() {
67                 return virtual;
68         }
69
70         /**
71          * {@inheritDoc}
72          */
73         public String getName() {
74                 return name;
75         }
76
77         /**
78          * {@inheritDoc}
79          */
80         public void setName(String name) {
81                 String oldName = this.name;
82                 this.name = name;
83                 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
84         }
85
86         /**
87          * {@inheritDoc}
88          */
89         public boolean isInsert() {
90                 return insert;
91         }
92
93         /**
94          * {@inheritDoc}
95          */
96         public void setInsert(boolean insert) {
97                 boolean oldInsert = this.insert;
98                 this.insert = insert;
99                 fireIfPropertyChanged(PROPERTY_INSERT, oldInsert, insert);
100         }
101
102         /**
103          * {@inheritDoc}
104          */
105         public String getContentType() {
106                 return contentType;
107         }
108
109         /**
110          * {@inheritDoc}
111          */
112         public void setContentType(String contentType) {
113                 String oldContentType = this.contentType;
114                 this.contentType = contentType;
115                 fireIfPropertyChanged(PROPERTY_CONTENT_TYPE, oldContentType, contentType);
116         }
117
118 }