Source Code Cross Referenced for PointSymbolizer.java in  » GIS » GeoTools-2.4.1 » org » geotools » styling » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.styling 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *    GeoTools - OpenSource mapping toolkit
003:         *    http://geotools.org
004:         *    (C) 2002-2006, GeoTools Project Managment Committee (PMC)
005:         *    (C) 2002, Centre for Computational Geography
006:         *
007:         *    This library is free software; you can redistribute it and/or
008:         *    modify it under the terms of the GNU Lesser General Public
009:         *    License as published by the Free Software Foundation;
010:         *    version 2.1 of the License.
011:         *
012:         *    This library is distributed in the hope that it will be useful,
013:         *    but WITHOUT ANY WARRANTY; without even the implied warranty of
014:         *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
015:         *    Lesser General Public License for more details.
016:         *
017:         * Contacts:
018:         *     UNITED KINGDOM: James Macgill.  j.macgill@geog.leeds.ac.uk
019:         */
020:        package org.geotools.styling;
021:
022:        /**
023:         * A symbolizer describes how a feature should appear on a map.
024:         *
025:         * <p>
026:         * The symbolizer defines not just the shape that should appear but also  such
027:         * graphical properties as color and opacity.
028:         * </p>
029:         *
030:         * <p>
031:         * A symbolizer is obtained by specifying one of a small number of different
032:         * types of symbolizer and then supplying parameters to overide its default
033:         * behaviour.
034:         * </p>
035:         *
036:         * <p>
037:         * The details of this object are taken from the <a
038:         * href="https://portal.opengeospatial.org/files/?artifact_id=1188"> OGC
039:         * Styled-Layer Descriptor Report (OGC 02-070) version 1.0.0.</a>:
040:         * <pre><code>
041:         * &lt;xsd:element name="PointSymbolizer" substitutionGroup="sld:Symbolizer">
042:         *   &lt;xsd:annotation>
043:         *     &lt;xsd:documentation>
044:         *       A "PointSymbolizer" specifies the rendering of a "graphic symbol"
045:         *       at a point.
046:         *     &lt;/xsd:documentation>
047:         *   &lt;/xsd:annotation>
048:         *   &lt;xsd:complexType>
049:         *     &lt;xsd:complexContent>
050:         *       &lt;xsd:extension base="sld:SymbolizerType">
051:         *         &lt;xsd:sequence>
052:         *           &lt;xsd:element ref="sld:Geometry" minOccurs="0"/>
053:         *           &lt;xsd:element ref="sld:Graphic" minOccurs="0"/>
054:         *         &lt;/xsd:sequence>
055:         *       &lt;/xsd:extension>
056:         *     &lt;/xsd:complexContent>
057:         *   &lt;/xsd:complexType>
058:         * &lt;/xsd:element>
059:         * </code></pre>
060:         * </p>
061:         *
062:         * <p>
063:         * Renderers can use this information when displaying styled features, though
064:         * it must be remembered that not all renderers will be able to fully
065:         * represent strokes as set out by this interface.  For example, opacity may
066:         * not be supported.
067:         * </p>
068:         *
069:         * <p>
070:         * Notes:
071:         *
072:         * <ul>
073:         * <li>
074:         * The graphical parameters and their values are derived from SVG/CSS2
075:         * standards with names and semantics which are as close as possible.
076:         * </li>
077:         * </ul>
078:         * </p>
079:         *
080:         * @author James Macgill
081:         * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/api/src/main/java/org/geotools/styling/PointSymbolizer.java $
082:         * @version $Id: PointSymbolizer.java 20562 2006-07-16 14:54:53Z jgarnett $
083:         */
084:        public interface PointSymbolizer extends Symbolizer {
085:            /**
086:             * Provides the graphical-symbolization parameter to use for the  point
087:             * geometry.
088:             *
089:             * @return The Graphic to be used when drawing a point.
090:             */
091:            Graphic getGraphic();
092:
093:            /**
094:             * Provides the graphical-symbolization parameter to use for the  point
095:             * geometry.
096:             *
097:             * @param graphic DOCUMENT ME!
098:             */
099:            void setGraphic(Graphic graphic);
100:
101:            /**
102:             * This property defines the geometry to be used for styling.<br>
103:             * The property is optional and if it is absent (null) then the "default"
104:             * geometry property of the feature should be used.  Geometry types other
105:             * than inherently point types can be used.  The geometryPropertyName is
106:             * the name of a geometry property in the Feature being styled.
107:             * Typically, features only have one geometry so, in general, the need to
108:             * select one is not required. Note: this moves a little away from the SLD
109:             * spec which provides an XPath reference to a Geometry object, but does
110:             * follow it in spirit.
111:             *
112:             * @return String The name of the attribute in the feature being styled
113:             *         that should be used.  If null then the default geometry should
114:             *         be used.
115:             */
116:            String getGeometryPropertyName();
117:
118:            /**
119:             * This property defines the geometry to be used for styling.<br>
120:             * The property is optional and if it is absent (null) then the "default"
121:             * geometry property of the feature should be used.  Geometry types other
122:             * than inherently point types can be used.  The geometryPropertyName is
123:             * the name of a geometry property in the Feature being styled.
124:             * Typically, features only have one geometry so, in general, the need to
125:             * select one is not required. Note: this moves a little away from the SLD
126:             * spec which provides an XPath reference to a Geometry object, but does
127:             * follow it in spirit.
128:             *
129:             * @param geometryPropertyName DOCUMENT ME!
130:             */
131:            void setGeometryPropertyName(String geometryPropertyName);
132:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.