view src/java/de/intevation/mxd/reader/AbstractSymbolReader.java @ 211:bdf58d5b7d92

Added an english translation of the website. * website/about.htm4, website/buildhtml.mk, website/contact-de.htm4, website/contact.htm4, website/development-de.htm4, website/development.htm4, website/donate-de.htm4, website/donate.htm4, website/download.htm4, website/img/funktionsweise-MXD2map-de.png, website/index.htm4, website/license-de.htm4, website/license.htm4, website/template_header.m4, website/img/funktionsweise-MXD2map.png, website/img/funktionsweise-MXD2map_small.png, doku/funktionsweise/funktionsweise-MXD-konverter.svg, website/img/funktionsweise-MXD-konverter.png, website/img/funktionsweise-MXD-konverter_small.png: English translation of the website. Added a new Makefile-Target 'images' to get the dokumentation-images into the site.
author Stephan Holl <stephan.holl@intevation.de>
date Fri, 22 Jul 2011 13:24:36 +0200
parents 04ea8a4972ff
children df4e0946ef02
line wrap: on
line source
package de.intevation.mxd.reader;

import org.apache.log4j.Logger;

import org.w3c.dom.Element;
import de.intevation.mxd.utils.MapToXMLUtils;

/**
 * Reads multi layer marker symbol information.
 *
 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
 */
public abstract class AbstractSymbolReader implements ISymbolReader{

    /**
     * The logger.
     */
    private static final Logger logger =
        Logger.getLogger(AbstractSymbolReader.class);

    /**
     * Private member.
     */
    protected Element parent;
    protected MapToXMLUtils util;


    /**
     * Setter for the parent XML element.
     *
     * @param parent The XML parent node.
     */
    public void setParent(Element p) {
        this.parent = p;
    }

    /**
     * Setter for XML document helper.
     *
     * @param util The helper class for storing map information.
     */
    public void setUtil(MapToXMLUtils u) {
        this.util = u;
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)