view src/java/de/intevation/mxd/reader/AbstractSymbolReader.java @ 140:0ebaec057f15

* INSTALL.txt: added a hint how to install the converter and its requirements. * doku/source/conf.py, doku/source/INSTALL.txt, doku/source/index.txt,doku/source/restrictions.txt, doku/source/index.rst,doku/source/restrictions.rst: renamed .rst to .txt, linked INSTALL.txt from root into the docs.
author Stephan Holl <stephan.holl@intevation.de>
date Fri, 24 Jun 2011 10:29:44 +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)