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@113: package de.intevation.gnv.profile.horizontal; tim@113: tim@113: import org.apache.log4j.Logger; tim@113: tim@113: /** sascha@780: * @author Tim Englich sascha@778: * tim@113: */ tim@171: public class HorizontalProfileInstantaneousPointArtifact extends tim@171: HorizontalProfileArtifact { tim@113: /** tim@113: * the logger, used to log exceptions and additonaly information tim@113: */ tim@171: private static Logger log = Logger tim@171: .getLogger(HorizontalProfileInstantaneousPointArtifact.class); tim@171: tim@113: /** tim@113: * The UID of this Class. tim@113: */ tim@171: private static final long serialVersionUID = -6700816287500004553L; tim@171: tim@113: /** tim@113: * Constructor tim@113: */ tim@171: public HorizontalProfileInstantaneousPointArtifact() { tim@113: super(); tim@113: log.debug("HorizontalProfileInstantaneousPointArtifact.Constructor"); tim@171: super.name = super.name + "InstantaneousPoint"; tim@113: } tim@113: }