Source Code Cross Referenced for LabelCacheDecorator.java in  » GIS » udig-1.1 » net » refractions » udig » render » internal » feature » basic » 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 » udig 1.1 » net.refractions.udig.render.internal.feature.basic 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* uDig - User Friendly Desktop Internet GIS client
002:         * http://udig.refractions.net
003:         * (C) 2004, Refractions Research Inc.
004:         *
005:         * This library is free software; you can redistribute it and/or
006:         * modify it under the terms of the GNU Lesser General Public
007:         * License as published by the Free Software Foundation;
008:         * version 2.1 of the License.
009:         *
010:         * This library is distributed in the hope that it will be useful,
011:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
012:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
013:         * Lesser General Public License for more details.
014:         */
015:        package net.refractions.udig.render.internal.feature.basic;
016:
017:        import java.awt.Graphics2D;
018:        import java.awt.Point;
019:        import java.awt.Rectangle;
020:        import java.awt.geom.AffineTransform;
021:        import java.util.List;
022:
023:        import javax.media.jai.util.Range;
024:
025:        import net.refractions.udig.project.render.ILabelPainter;
026:
027:        import org.geotools.feature.Feature;
028:        import org.geotools.geometry.jts.JTS;
029:        import org.geotools.referencing.FactoryFinder;
030:        import org.geotools.referencing.operation.matrix.GeneralMatrix;
031:        import org.geotools.referencing.operation.transform.IdentityTransform;
032:        import org.geotools.renderer.lite.LabelCache;
033:        import org.geotools.renderer.lite.LiteShape2;
034:        import org.geotools.styling.TextSymbolizer;
035:        import org.opengis.referencing.FactoryException;
036:        import org.opengis.referencing.operation.MathTransform;
037:        import org.opengis.referencing.operation.TransformException;
038:
039:        import com.vividsolutions.jts.geom.Geometry;
040:
041:        /**
042:         * Wraps the context's {@link ILabelPainter} to allow labelling produced by the Streaming/Shapefile renderers to be combined 
043:         * with the labels from other labels.  Streaming and Shapefile renderer both assume they are the start and end points of rendering
044:         * so they start and finish the label cache, as well as assign their own layerIds and clear the cache.  None of these are acceptable
045:         * for uDig so this class intercepts the calls and handles these cases as well as translating the geometries so they are relative to 
046:         * the full display area. 
047:         * 
048:         * @author Jesse
049:         * @since 1.1.0
050:         */
051:        public class LabelCacheDecorator implements  LabelCache {
052:            private final LabelCache wrapped;
053:            private final Point origin;
054:            private final String layerId;
055:
056:            public LabelCacheDecorator(final LabelCache wrapped, Point origin,
057:                    String layerId) {
058:                super ();
059:                this .wrapped = wrapped;
060:                this .origin = origin;
061:                this .layerId = layerId;
062:            }
063:
064:            public void clear() {
065:                // do nothing see doClear()
066:            }
067:
068:            public void end(Graphics2D graphics, Rectangle displayArea) {
069:                // do nothing so that Geotools renderers don't trigger the rendering of the labels
070:            }
071:
072:            public void clear(String layerId) {
073:                wrapped.clear(this .layerId);
074:            }
075:
076:            public void disableLayer(String layerId) {
077:                wrapped.disableLayer(this .layerId);
078:            }
079:
080:            public void enableLayer(String layerId) {
081:                wrapped.enableLayer(this .layerId);
082:            }
083:
084:            public void endLayer(String layerId, Graphics2D graphics,
085:                    Rectangle displayArea) {
086:                // this is called by the frame work later.  Geotools doesn't need to call this
087:            }
088:
089:            public List orderedLabels() {
090:                return wrapped.orderedLabels();
091:            }
092:
093:            public void put(String layerId, TextSymbolizer symbolizer,
094:                    Feature feature, LiteShape2 shape, Range scaleRange) {
095:
096:                wrapped.put(this .layerId, symbolizer, feature, shape,
097:                        scaleRange);
098:            }
099:
100:            public void start() {
101:                wrapped.start();
102:            }
103:
104:            public void startLayer(String layerId) {
105:                // this is called by the frame work earlier.  Geotools doesn't need to call this
106:            }
107:
108:            public void stop() {
109:                /*
110:                 * Vitalus:
111:                 * We should not stop label cache from one renderer while it is shared between many renderers.
112:                 * Fix for labels rendering when the layer is removed.
113:                 */
114:                //        wrapped.stop();
115:            }
116:
117:        }
w_w___w__._j_a___v___a__2__s__.___co_m | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.