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@85: package de.intevation.gnv.profile.vertical; tim@85: tim@85: import org.apache.log4j.Logger; tim@85: tim@85: /** sascha@780: * @author Tim Englich sascha@778: * tim@85: */ tim@171: public class VerticalProfileInstantaneousPointArtifact extends tim@171: VerticalProfileArtifact { tim@85: /** tim@85: * the logger, used to log exceptions and additonaly information tim@85: */ tim@171: private static Logger log = Logger tim@171: .getLogger(VerticalProfileInstantaneousPointArtifact.class); tim@171: tim@85: /** tim@85: * The UID of this class tim@85: */ tim@85: private static final long serialVersionUID = -8291547966693867205L; tim@171: tim@85: /** tim@85: * Constructor tim@85: */ tim@171: public VerticalProfileInstantaneousPointArtifact() { tim@85: super(); tim@85: log.debug("VerticalProfileInstantaneousPointArtifact.Constructor"); tim@171: super.name = super.name + "InstantaneousPoint"; tim@85: } tim@85: } sascha@836: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :