/*---------------- FILE HEADER ------------------------------------------ This file is part of deegree. Copyright (C) 2001-2006 by: EXSE, Department of Geography, University of Bonn http://www.giub.uni-bonn.de/deegree/ lat/lon GmbH http://www.lat-lon.de This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact: Andreas Poth lat/lon GmbH Aennchenstr. 19 53115 Bonn Germany E-Mail: poth@lat-lon.de Prof. Dr. Klaus Greve Department of Geography University of Bonn Meckenheimer Allee 166 53115 Bonn Germany E-Mail: greve@giub.uni-bonn.de ---------------------------------------------------------------------------*/ package org.deegree.graphics.sld; import java.util.HashMap; import java.util.Map; /** * This is the top level interface of <tt>Fill</tt> and <tt>Stroke</tt> defining * the methods <tt>getGraphicFill()</tt> and <tt>getCssParameters()</tt> that * are common to both. * <p> * @author <a href="mailto:k.lupp@web.de">Katharina Lupp</a> * @author <a href="mailto:mschneider@lat-lon.de">Markus Schneider</a> * @version $Revision: 1.8 $ $Date: 2006/09/25 19:57:10 $ */ public class Drawing { protected GraphicFill graphicFill = null; protected Map cssParams = null; /** * Constructs a new instance of <tt>Drawing</tt>. * @param cssParams * @param graphicFill */ Drawing( Map cssParams, GraphicFill graphicFill ) { this.cssParams = cssParams; this.graphicFill = graphicFill; } /** * The GraphicFill element both indicates that a stipple-fill repeated * graphic will be used and specifies the fill graphic. * @return the GraphicFill-Element * */ public GraphicFill getGraphicFill() { return graphicFill; } /** * The GraphicFill element both indicates that a stipple-fill repeated graphic * will be used and specifies the fill graphic. * @param graphicFill the GraphicFill-Element * */ public void setGraphicFill( GraphicFill graphicFill ) { this.graphicFill = graphicFill; } /** * A simple SVG/CSS2 styling parameters are given with the CssParameter * element. <br> * This method is for technical use. The user should access the specialized * methods of the derived classes. * @return the CssParameters */ public Map getCssParameters() { return cssParams; } /** * A simple SVG/CSS2 styling parameters are given with the CssParameter * element. <br> * This method sets CssParameters. * @param cssParameters the CssParameters */ void setCssParameters( HashMap cssParameters ) { this.cssParams = cssParameters; } /** * Simple SVG/CSS2 styling parameters are given with the CssParameter * element. * This method adds a CssParameter to a given set of CssParameters. * <p> * @param key the key of the object to insert * @param value the value of the object to insert */ void addCssParameter( Object key, Object value ) { cssParams.put( key, value ); } /** * Simple SVG/CSS2 styling parameters are given with the CssParameter * element. * <p> * This method adds a CssParameter to a given set of CssParameters. * @param key the key of the object to remove */ void removeCssParameter( Object key ) { cssParams.remove( key ); } }/* ******************************************************************** Changes to this class. What the people have been up to: $Log: Drawing.java,v $ Revision 1.8 2006/09/25 19:57:10 poth made getCSSParameter public Revision 1.7 2006/07/21 12:09:03 poth methods that has no use outside the package are now declared package protected Revision 1.6 2006/07/12 14:46:14 poth comment footer added ********************************************************************** */