r728 - trunk/simexplorer-is-web/src/java/fr/cemagref/simexplorer/is/ui/web/tools
Author: glandais Date: 2008-02-07 16:14:32 +0000 (Thu, 07 Feb 2008) New Revision: 728 Removed: trunk/simexplorer-is-web/src/java/fr/cemagref/simexplorer/is/ui/web/tools/DownloadableFile.java Log: Useless class Deleted: trunk/simexplorer-is-web/src/java/fr/cemagref/simexplorer/is/ui/web/tools/DownloadableFile.java =================================================================== --- trunk/simexplorer-is-web/src/java/fr/cemagref/simexplorer/is/ui/web/tools/DownloadableFile.java 2008-02-07 16:09:43 UTC (rev 727) +++ trunk/simexplorer-is-web/src/java/fr/cemagref/simexplorer/is/ui/web/tools/DownloadableFile.java 2008-02-07 16:14:32 UTC (rev 728) @@ -1,71 +0,0 @@ -/* -* ##% Copyright (C) 2008 Code Lutin, Gabriel Landais -* -* 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 fr.cemagref.simexplorer.is.ui.web.tools; - -import fr.cemagref.simexplorer.is.entities.metadata.MetaData; - -/** - * The Class DownloadableFile. - */ -public class DownloadableFile { - - /** The meta data. */ - private MetaData metaData; - - /** The filename. */ - private String filename; - - /** - * Gets the filename. - * - * @return the filename - */ - public String getFilename() { - return filename; - } - - /** - * Sets the filename. - * - * @param filename - * the new filename - */ - public void setFilename(String filename) { - this.filename = filename; - } - - /** - * Gets the meta data entity. - * - * @return the meta data entity - */ - public MetaData getMetaDataEntity() { - return metaData; - } - - /** - * Sets the meta data entity. - * - * @param metaData - * the new meta data entity - */ - public void setMetaDataEntity(MetaData metaData) { - this.metaData = metaData; - } - -}
participants (1)
-
glandais@users.labs.libre-entreprise.org