remove Id keyword
[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         /** The name of the file. */
41         private String name;
42
43         /** Whether to insert the file. */
44         private boolean insert;
45
46         /** The content type of the file. */
47         private String contentType;
48
49         /**
50          * {@inheritDoc}
51          */
52         public String getName() {
53                 return name;
54         }
55
56         /**
57          * {@inheritDoc}
58          */
59         public void setName(String name) {
60                 String oldName = this.name;
61                 this.name = name;
62                 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
63         }
64
65         /**
66          * {@inheritDoc}
67          */
68         public boolean isInsert() {
69                 return insert;
70         }
71
72         /**
73          * {@inheritDoc}
74          */
75         public void setInsert(boolean insert) {
76                 boolean oldInsert = this.insert;
77                 this.insert = insert;
78                 fireIfPropertyChanged(PROPERTY_INSERT, oldInsert, insert);
79         }
80
81         /**
82          * {@inheritDoc}
83          */
84         public String getContentType() {
85                 return contentType;
86         }
87
88         /**
89          * {@inheritDoc}
90          */
91         public void setContentType(String contentType) {
92                 String oldContentType = this.contentType;
93                 this.contentType = contentType;
94                 fireIfPropertyChanged(PROPERTY_CONTENT_TYPE, oldContentType, contentType);
95         }
96
97 }