Mercurial > mxd2map
view src/java/de/intevation/mxd/reader/FillSymbolReader.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 | 0bde090506f9 |
children | df4e0946ef02 |
line wrap: on
line source
package de.intevation.mxd.reader; import java.lang.Exception; import org.w3c.dom.Element; import org.apache.log4j.Logger; import com.esri.arcgis.display.ISymbol; import com.esri.arcgis.display.IFillSymbol; import com.esri.arcgis.display.MultiLayerFillSymbol; import com.esri.arcgis.display.SimpleFillSymbol; import com.esri.arcgis.display.MarkerFillSymbol; import com.esri.arcgis.display.LineFillSymbol; /** * Wrapper for fill symbol reader. * * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a> */ public class FillSymbolReader extends AbstractSymbolReader { /** * The logger. */ private static final Logger logger = Logger.getLogger(FillSymbolReader.class); /** * Private member. */ private ISymbol symbol; private IFillSymbol fillSymbol; /** * Default constructor. */ public FillSymbolReader() throws Exception { logger.debug("contructor()"); this.symbol = null; this.fillSymbol = null; } /** * Constructor with symbol. * * @param symbol The symbol used to display polygons. */ public FillSymbolReader(ISymbol symbol) throws Exception { logger.debug("contructor(ISymbol)"); this.symbol = symbol; this.fillSymbol = null; } /** * Constructor with symbol. * * @param symbol The symbol used to display polygons. */ public FillSymbolReader(IFillSymbol symbol) throws Exception { logger.debug("contructor(ILineSymbol)"); this.fillSymbol = symbol; this.symbol= null; } /** * Read the symbol attributes. * * @return DOM element containing the symbol attributes. */ public Element read() { ISymbolReader sreader = null; if(symbol != null) { try { if(symbol instanceof SimpleFillSymbol) { sreader = new SimpleFillSymbolReader(symbol); } else if(symbol instanceof MultiLayerFillSymbol) { sreader = new MultiLayerFillSymbolReader(symbol); } else if(symbol instanceof MarkerFillSymbol) { sreader = new MarkerFillSymbolReader(symbol); } else if(symbol instanceof LineFillSymbol) { sreader = new LineFillSymbolReader(symbol); } else { logger.debug("The reader for type " + symbol.getClass().toString() + " is not implemented!"); return parent; } } catch(Exception e) { logger.error( "Could not read the symbol " + symbol.getClass().toString()); return parent; } } else if(fillSymbol != null) { try { if(fillSymbol instanceof SimpleFillSymbol) { sreader = new SimpleFillSymbolReader(fillSymbol); } else if(fillSymbol instanceof MultiLayerFillSymbol) { sreader = new MultiLayerFillSymbolReader(fillSymbol); } else if(fillSymbol instanceof MarkerFillSymbol) { sreader = new MarkerFillSymbolReader(fillSymbol); } else if(fillSymbol instanceof LineFillSymbol) { sreader = new LineFillSymbolReader(fillSymbol); } else { logger.debug("The reader for type " + fillSymbol.getClass().toString() + " is not implemented!"); return parent; } } catch(Exception e) { logger.error( "Could not read the symbol " + symbol.getClass().toString()); return parent; } } else { return parent; } if (sreader != null) { sreader.setParent(parent); sreader.setUtil(util); sreader.read(); } return parent; } /** * Sets the symbol to read. * * @param the symbol used to display polygons. */ public void setSymbol(ISymbol sym) { this.symbol = sym; this.fillSymbol = null; } /** * Sets the symbol to read. * * @param the symbol used to display polygons. */ public void setSymbol(IFillSymbol sym) { this.symbol = null; this.fillSymbol = sym; } /** * Determine whether this reader can be used to read the symbol. * * @param sym The ArcGIS symbol. */ public boolean canRead(ISymbol sym) { if(sym instanceof SimpleFillSymbol || sym instanceof MarkerFillSymbol || sym instanceof MultiLayerFillSymbol || sym instanceof LineFillSymbol) { return true; } else { return false; } } /** * Determine whether this reader can be used to read the symbol. * * @param sym The ArcGIS symbol. */ public boolean canRead(IFillSymbol sym) { if(sym instanceof SimpleFillSymbol || sym instanceof MarkerFillSymbol || sym instanceof MultiLayerFillSymbol || sym instanceof LineFillSymbol) { return true; } else { return false; } } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :