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