2 * jSite2 - AbstractEntry.java -
3 * Copyright © 2008 David Roden
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.
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.
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.
20 package net.pterodactylus.jsite.project;
22 import net.pterodactylus.util.beans.AbstractBean;
25 * Abstract base implementation of a {@link Entry}.
27 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
29 public abstract class AbstractEntry extends AbstractBean implements Entry {
31 /** The name of the “name” property. */
32 public static final String PROPERTY_NAME = "name";
34 /** The name of the “insert” property. */
35 public static final String PROPERTY_INSERT = "insert";
37 /** The name of the “content type” property. */
38 public static final String PROPERTY_CONTENT_TYPE = "contentType";
40 /** Whether this entry is virtual. */
41 private final boolean virtual;
43 /** The name of the file. */
46 /** Whether to insert the file. */
47 private boolean insert;
49 /** The content type of the file. */
50 private String contentType;
53 * Creates a new entry.
56 * <code>true</code> if this entry is virtual,
57 * <code>false</code> otherwise
59 protected AbstractEntry(boolean virtual) {
60 this.virtual = virtual;
66 public boolean isVirtual() {
73 public String getName() {
80 public void setName(String name) {
81 String oldName = this.name;
83 fireIfPropertyChanged(PROPERTY_NAME, oldName, name);
89 public boolean isInsert() {
96 public void setInsert(boolean insert) {
97 boolean oldInsert = this.insert;
99 fireIfPropertyChanged(PROPERTY_INSERT, oldInsert, insert);
105 public String getContentType() {
112 public void setContentType(String contentType) {
113 String oldContentType = this.contentType;
114 this.contentType = contentType;
115 fireIfPropertyChanged(PROPERTY_CONTENT_TYPE, oldContentType, contentType);