ingo@1115: /* ingo@1115: * Copyright (c) 2010 by Intevation GmbH ingo@1115: * ingo@1115: * This program is free software under the LGPL (>=v2.1) ingo@1115: * Read the file LGPL.txt coming with the software for details ingo@1115: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1115: */ ingo@1115: tim@116: package de.intevation.gnv.profile.horizontal; tim@116: tim@116: import org.apache.log4j.Logger; tim@116: tim@116: /** sascha@780: * @author Tim Englich sascha@778: * tim@116: */ tim@116: public class HorizontalProfileMeshArtifact extends HorizontalProfileArtifact { tim@116: /** tim@116: * the logger, used to log exceptions and additonaly information tim@116: */ tim@171: private static Logger log = Logger tim@171: .getLogger(HorizontalProfileMeshArtifact.class); tim@171: tim@116: /** tim@116: * The UID of this class tim@116: */ tim@116: private static final long serialVersionUID = -8291547966693867205L; tim@171: tim@116: /** tim@116: * Constructor tim@116: */ tim@171: public HorizontalProfileMeshArtifact() { tim@116: super(); tim@116: log.debug("VerticalProfileMeshArtifact.Constructor"); tim@171: super.name = super.name + "Mesh"; tim@116: } tim@116: }