tim@83: /** tim@83: * tim@83: */ tim@83: package de.intevation.gnv.profile.vertical; tim@83: tim@83: import org.apache.log4j.Logger; tim@83: tim@83: /** tim@83: * @author Tim Englich tim@83: * tim@83: */ tim@83: public class VerticalProfileMeshArtifact extends VerticalProfileArtifact { tim@83: /** tim@83: * the logger, used to log exceptions and additonaly information tim@83: */ tim@83: private static Logger log = Logger.getLogger(VerticalProfileMeshArtifact.class); tim@83: tim@83: tim@83: /** tim@83: * The UID of this class tim@83: */ tim@83: private static final long serialVersionUID = -8291547966693867205L; tim@83: tim@83: /** tim@83: * Constructor tim@83: */ tim@83: public VerticalProfileMeshArtifact(){ tim@83: super(); tim@83: log.debug("VerticalProfileMeshArtifact.Constructor"); tim@83: super.name = super.name+ "Mesh"; tim@83: } tim@83: }