set insert flag from hidden status implement base path scanning
[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 “content type” property. */
36         public static final String PROPERTY_CONTENT_TYPE = "contentType";
37
38         /** The name of the file. */
39         private String name;
40
41         /** The content type of the file. */
42         private String contentType;
43
44         /**
45          * {@inheritDoc}
46          */
47         public String getName() {
48                 return name;
49         }
50
51         /**
52          * {@inheritDoc}
53          */
54         public void setName(String name) {
55                 String oldName = this.name;
56                 this.name = name;
57                 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
58         }
59
60         /**
61          * {@inheritDoc}
62          */
63         public String getContentType() {
64                 return contentType;
65         }
66
67         /**
68          * {@inheritDoc}
69          */
70         public void setContentType(String contentType) {
71                 String oldContentType = this.contentType;
72                 this.contentType = contentType;
73                 fireIfPropertyChanged(PROPERTY_CONTENT_TYPE, oldContentType, contentType);
74         }
75
76 }