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