Java Doc for IGeoResourceInfo.java in  » GIS » udig-1.1 » net » refractions » udig » catalog » 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.catalog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.refractions.udig.catalog.IGeoResourceInfo

IGeoResourceInfo
public class IGeoResourceInfo (Code)
Represents a bean style metadata accessor for metadata about a geoResource.

The methods within this class must be non-blocking. This class, and sub-classes represent cached versions of the metadata about a particular service.

Much of this interface is based on Dublin Core and the RDF application profile.

Any changes to this content will be communicate by an event by the assocaited GeoResource.


author:
   David Zwiers, Refractions Research
since:
   0.6


Field Summary
protected  ReferencedEnvelopebounds
    
protected  ImageDescriptoricon
    
protected  String[]keywords
    
protected  URIschema
    
protected  Stringtitledescriptionname
    

Constructor Summary
protected  IGeoResourceInfo()
    
public  IGeoResourceInfo(String title, String name, String description, URI schema, Envelope bounds, CoordinateReferenceSystem crs, String[] keywords, ImageDescriptor icon)
    

Method Summary
public  ReferencedEnvelopegetBounds()
     Returns the BBox of the resource if one exists, The null envelope otherwise.
public  CoordinateReferenceSystemgetCRS()
     Returns the CRS of the resource if one exists, null otherwise.
public  StringgetDescription()
     Returns the resource's description.
public  ImageDescriptorgetIcon()
     Base symbology (with out decorators) representing this resource.

The ImageDescriptor returned should conform the the Eclipse User Interface Guidelines (16x16 image with a 16x15 glyph centered).

This plug-in provides default based on resource type:


 <b>return</b> ISharedImages.getImagesDescriptor( IGeoResoruce );
 

    Any LabelProvider should use the default image, a label decorator should be used to pick up these images in a separate thread.

public  String[]getKeywords()
    
public  StringgetName()
     Returns the name of the data ...
public  URIgetSchema()
     Returns the xml schema namespace for this resource type.
public  StringgetTitle()
    

Field Detail
bounds
protected ReferencedEnvelope bounds(Code)



icon
protected ImageDescriptor icon(Code)



keywords
protected String[] keywords(Code)



schema
protected URI schema(Code)



titledescriptionname
protected String titledescriptionname(Code)




Constructor Detail
IGeoResourceInfo
protected IGeoResourceInfo()(Code)



IGeoResourceInfo
public IGeoResourceInfo(String title, String name, String description, URI schema, Envelope bounds, CoordinateReferenceSystem crs, String[] keywords, ImageDescriptor icon)(Code)




Method Detail
getBounds
public ReferencedEnvelope getBounds()(Code)
Returns the BBox of the resource if one exists, The null envelope otherwise.

The bounds are returned in (ie should be reprojected to) Lat Long:

  • DefaultGeographicCRS.WGS84
  • EPSG:4369 (LatLong NAD83)
  • ESPG 4326 (another LatLong)

Known Mappings:

  • 1st part of the Dublin Core Coverage

Lat Long bounding box of the resource



getCRS
public CoordinateReferenceSystem getCRS()(Code)
Returns the CRS of the resource if one exists, null otherwise.

Known Mappings:

  • 2nd part of the Dublin Core Coverage

CRS of the resource, or null if unknown.



getDescription
public String getDescription()(Code)
Returns the resource's description.

Known Mappings:

  • WFS GetCapabilities description
  • WMS GetCapabilities description

description of resource, or null if unavailable



getIcon
public ImageDescriptor getIcon()(Code)
Base symbology (with out decorators) representing this resource.

The ImageDescriptor returned should conform the the Eclipse User Interface Guidelines (16x16 image with a 16x15 glyph centered).

This plug-in provides default based on resource type:


 <b>return</b> ISharedImages.getImagesDescriptor( IGeoResoruce );
 

    Any LabelProvider should use the default image, a label decorator should be used to pick up these images in a separate thread. This allows resources like WMS to make blocking request of an external service.

    ImageDescriptor symbolizing this resource



getKeywords
public String[] getKeywords()(Code)
Returns the keywords assocaited with this resource

Known Mappings:

  • Maps to Dublin Core's Subject element

Keywords for use with search, or null unavailable.



getName
public String getName()(Code)
Returns the name of the data ... such as the typeName or LayerName.

Known Mappings:

  • WFS typeName
  • Database table name
  • WMS layer name

name of the data, used with getSchema() to identify resource



getSchema
public URI getSchema()(Code)
Returns the xml schema namespace for this resource type.

Known Mappings:

  • Dublin Code Format element

namespace, used with getName() to identify resource



getTitle
public String getTitle()(Code)
Returns the resource's title Readble title (in current local)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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