X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fproject%2FAbstractEntry.java;fp=src%2Fnet%2Fpterodactylus%2Fjsite%2Fproject%2FAbstractEntry.java;h=74e907613d9d728b6e9ca0f6e8b316ad4aa07ff5;hb=2518cd10be541f7a5354adc0f6c6c1334b7b5691;hp=0000000000000000000000000000000000000000;hpb=9bddbb90d5acb39a0bedeed256054e22201d8a1a;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/project/AbstractEntry.java b/src/net/pterodactylus/jsite/project/AbstractEntry.java new file mode 100644 index 0000000..74e9076 --- /dev/null +++ b/src/net/pterodactylus/jsite/project/AbstractEntry.java @@ -0,0 +1,76 @@ +/* + * jSite2 - AbstractEntry.java - + * Copyright © 2008 David Roden + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +package net.pterodactylus.jsite.project; + +import net.pterodactylus.util.beans.AbstractBean; + +/** + * Abstract base implementation of a {@link Entry}. + * + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> + * @version $Id$ + */ +public abstract class AbstractEntry extends AbstractBean implements Entry { + + /** The name of the “name” property. */ + public static final String PROPERTY_NAME = "name"; + + /** The name of the “content type” property. */ + public static final String PROPERTY_CONTENT_TYPE = "contentType"; + + /** The name of the file. */ + private String name; + + /** The content type of the file. */ + private String contentType; + + /** + * {@inheritDoc} + */ + public String getName() { + return name; + } + + /** + * {@inheritDoc} + */ + public void setName(String name) { + String oldName = this.name; + this.name = name; + fireIfPropertyChanged(PROPERTY_NAME, oldName, name); + } + + /** + * {@inheritDoc} + */ + public String getContentType() { + return contentType; + } + + /** + * {@inheritDoc} + */ + public void setContentType(String contentType) { + String oldContentType = this.contentType; + this.contentType = contentType; + fireIfPropertyChanged(PROPERTY_CONTENT_TYPE, oldContentType, contentType); + } + +}