6a726c630bed078349b0b553504882c2f6f4825c
[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  * @version $Id$
29  */
30 public abstract class AbstractEntry extends AbstractBean implements Entry {
31
32         /** The name of the “name” property. */
33         public static final String PROPERTY_NAME = "name";
34
35         /** The name of the “insert” property. */
36         public static final String PROPERTY_INSERT = "insert";
37
38         /** The name of the “content type” property. */
39         public static final String PROPERTY_CONTENT_TYPE = "contentType";
40
41         /** The name of the file. */
42         private String name;
43
44         /** Whether to insert the file. */
45         private boolean insert;
46
47         /** The content type of the file. */
48         private String contentType;
49
50         /**
51          * {@inheritDoc}
52          */
53         public String getName() {
54                 return name;
55         }
56
57         /**
58          * {@inheritDoc}
59          */
60         public void setName(String name) {
61                 String oldName = this.name;
62                 this.name = name;
63                 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
64         }
65
66         /**
67          * {@inheritDoc}
68          */
69         public boolean isInsert() {
70                 return insert;
71         }
72
73         /**
74          * {@inheritDoc}
75          */
76         public void setInsert(boolean insert) {
77                 boolean oldInsert = this.insert;
78                 this.insert = insert;
79                 fireIfPropertyChanged(PROPERTY_INSERT, oldInsert, insert);
80         }
81
82         /**
83          * {@inheritDoc}
84          */
85         public String getContentType() {
86                 return contentType;
87         }
88
89         /**
90          * {@inheritDoc}
91          */
92         public void setContentType(String contentType) {
93                 String oldContentType = this.contentType;
94                 this.contentType = contentType;
95                 fireIfPropertyChanged(PROPERTY_CONTENT_TYPE, oldContentType, contentType);
96         }
97
98 }