Mercurial > mxd2map
view src/java/de/intevation/mxd/reader/FillSymbolReader.java @ 119:84f202b6aa65
Added log4j appender for console output.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Thu, 16 Jun 2011 14:13:39 +0200 |
parents | fb93f20478cc |
children | f4eb506499f5 |
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 ISymbol symbol; private IFillSymbol fillSymbol; public FillSymbolReader() throws Exception{ logger.debug("contructor()"); this.symbol = null; this.fillSymbol = null; } public FillSymbolReader(ISymbol symbol) throws Exception{ logger.debug("contructor(ISymbol)"); this.symbol = symbol; this.fillSymbol = null; } public FillSymbolReader(IFillSymbol symbol) throws Exception{ logger.debug("contructor(ILineSymbol)"); this.fillSymbol = symbol; this.symbol= null; } 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; } public void setSymbol(ISymbol sym) { this.symbol = sym; this.fillSymbol = null; } public void setSymbol(IFillSymbol sym) { this.symbol = null; this.fillSymbol = sym; } public boolean canRead(ISymbol sym) { if(sym instanceof SimpleFillSymbol || sym instanceof MarkerFillSymbol || sym instanceof MultiLayerFillSymbol || sym instanceof LineFillSymbol) { return true; } else { return false; } } 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 :