Java Doc for StyleVisitor.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 Reference  Class Diagram Java Document (Java Doc) 


org.geotools.styling.StyleVisitor

All known Subclasses:   org.geotools.styling.visitor.DuplicatingStyleVisitor,  org.geotools.styling.StyleAttributeExtractorTruncated,  org.geotools.renderer.lite.MetaBufferEstimator,  org.geotools.styling.visitor.DuplicatorStyleVisitor,  org.geotools.styling.StyleAttributeExtractor,  org.geotools.renderer.shape.OpacityFinder,
StyleVisitor
public interface StyleVisitor (Code)
An interface for classes that want to perform operations on a Style hierarchy. It forms part of a GoF Visitor Patern implementation. A call to style.accept(StyleVisitor) will result in a call to one of the methods in this interface. The responsibility for traversing sub filters is intended to lie with the visitor (this is unusual, but permited under the Visitor pattern). A typical use would be to transcribe a style into a specific format, e.g. XML or SQL. Alternativly it may be to extract specific information from the Style structure, for example a list of all fills.
author:
   James Macgill
author:
   Ian Turton
version:
   $Id: StyleVisitor.java 20562 2006-07-16 14:54:53Z jgarnett $




Method Summary
 voidvisit(StyledLayerDescriptor sld)
     Called when accept is called on a StyledLayerDescriptor.
 voidvisit(NamedLayer layer)
     Called when accept is called on a NamedLayer.
 voidvisit(UserLayer layer)
     Called when accept is called on a UserLayer.
 voidvisit(FeatureTypeConstraint ftc)
     Called when accept is called on a FeatureTypeConstraint.
 voidvisit(Style style)
     Called when accept is called on a Style.
 voidvisit(Rule rule)
    
 voidvisit(FeatureTypeStyle fts)
    
 voidvisit(Fill fill)
    
 voidvisit(Stroke stroke)
    
 voidvisit(Symbolizer sym)
     since it is impossible to create a Symbolizer this method should generate an exception or warning.
 voidvisit(PointSymbolizer ps)
    
 voidvisit(LineSymbolizer line)
    
 voidvisit(PolygonSymbolizer poly)
    
 voidvisit(TextSymbolizer text)
    
 voidvisit(RasterSymbolizer raster)
    
 voidvisit(Graphic gr)
    
 voidvisit(Mark mark)
    
 voidvisit(ExternalGraphic exgr)
    
 voidvisit(PointPlacement pp)
    
 voidvisit(AnchorPoint ap)
    
 voidvisit(Displacement dis)
    
 voidvisit(LinePlacement lp)
    
 voidvisit(Halo halo)
    
 voidvisit(ColorMap colorMap)
    
 voidvisit(ColorMapEntry colorMapEntry)
    



Method Detail
visit
void visit(StyledLayerDescriptor sld)(Code)
Called when accept is called on a StyledLayerDescriptor.
Parameters:
  sld - The StyledLayerDescriptor to visit



visit
void visit(NamedLayer layer)(Code)
Called when accept is called on a NamedLayer.
Parameters:
  layer - The NamedLayer to visit



visit
void visit(UserLayer layer)(Code)
Called when accept is called on a UserLayer.
Parameters:
  layer - The UserLayer to visit



visit
void visit(FeatureTypeConstraint ftc)(Code)
Called when accept is called on a FeatureTypeConstraint.
Parameters:
  ftc - The FeatureTypeConstraint to visit



visit
void visit(Style style)(Code)
Called when accept is called on a Style.
Parameters:
  style - The style to visit



visit
void visit(Rule rule)(Code)
Called when accept is called on a rule
Parameters:
  rule - the rule to visit



visit
void visit(FeatureTypeStyle fts)(Code)
Called when accept is called on a fetauretypestyle
Parameters:
  fts - the feature type styler to visit



visit
void visit(Fill fill)(Code)
Called when accept is called on a fill
Parameters:
  fill - the fill to be visited



visit
void visit(Stroke stroke)(Code)
Called when accept is called on a stroke
Parameters:
  stroke - the stroke to visit



visit
void visit(Symbolizer sym)(Code)
since it is impossible to create a Symbolizer this method should generate an exception or warning.
Parameters:
  sym - the symbolizer to visit



visit
void visit(PointSymbolizer ps)(Code)
Called when accept is called on a pointsymbolizer
Parameters:
  ps - the point symbolizer to visit



visit
void visit(LineSymbolizer line)(Code)
Called when accept is called on a linesymbolizer
Parameters:
  line - the line symbolizer to visit



visit
void visit(PolygonSymbolizer poly)(Code)
Called when accept is called on a polygon symbolizer
Parameters:
  poly - the polygon symbolizer to visit



visit
void visit(TextSymbolizer text)(Code)
Called when accept is called on a textsymbolizer
Parameters:
  text - the text symbolizer to visit



visit
void visit(RasterSymbolizer raster)(Code)
Called when accept is called on a rastersymbolizer
Parameters:
  raster - the raster symbolizer to visit



visit
void visit(Graphic gr)(Code)
Called when accept is called on a graphic
Parameters:
  gr - the graphic to visit



visit
void visit(Mark mark)(Code)
Called when accept is called on a mark
Parameters:
  mark - the mark to visit



visit
void visit(ExternalGraphic exgr)(Code)
Called when accept is called on a external graphic
Parameters:
  exgr - the external graphic to visit



visit
void visit(PointPlacement pp)(Code)
Called when accept is called on a Point Placement
Parameters:
  pp - the point placement to visit



visit
void visit(AnchorPoint ap)(Code)
Called when accept is called on a anchor point
Parameters:
  ap - the anchor point to visit



visit
void visit(Displacement dis)(Code)
Called when accept is called on a displacement
Parameters:
  dis - the displacement to visit



visit
void visit(LinePlacement lp)(Code)
Called when accept is called on a Line Placement
Parameters:
  lp - the line placement to visit



visit
void visit(Halo halo)(Code)
Called when accept is called on a halo
Parameters:
  halo - the halo to visit



visit
void visit(ColorMap colorMap)(Code)
Called when accept is called on a raster color map
Parameters:
  colorMap - the color map to visit



visit
void visit(ColorMapEntry colorMapEntry)(Code)
Called when accept is called on a raster color map entry
Parameters:
  colorMapEntry - the color map to visit



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.