Java Doc for DefaultCatalog.java in  » GIS » GeoTools-2.4.1 » org » geotools » catalog » defaults » 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.catalog.defaults 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geotools.catalog.AbstractCatalog
      org.geotools.catalog.defaults.DefaultCatalog

DefaultCatalog
public class DefaultCatalog extends AbstractCatalog (Code)
Default Catalog implementation. All services are stored in memory.
author:
   David Zwiers, Refractions Research
author:
   Justin Deoliveira, jdeolive@openplans.org
since:
   0.6



Constructor Summary
public  DefaultCatalog()
    
public  DefaultCatalog(CatalogInfo metadata)
    

Method Summary
public  voidadd(Service entry)
    
public  voidaddCatalogListener(ResolveChangeListener listener)
    
public  booleancanResolve(Class adaptee)
    
protected static  booleancheck(Service service, AST pattern)
    
protected static  booleancheck(GeoResource resource, AST pattern)
    
protected static  booleancheck(GeoResource resource, AST pattern, Envelope bbox)
    
public  Listfind(URI query, ProgressListener monitor)
     Quick search by url match.
public  ListfindService(URI query, ProgressListener monitor)
     Quick search by url match.
public  voidfire(ResolveChangeEvent event)
     Fire a resource changed event, these may be batched into one delta for performance.
public  URIgetIdentifier()
    
public  ThrowablegetMessage()
    
public  StatusgetStatus()
    
public  Listmembers(ProgressListener monitor)
    
public  voidremove(Service entry)
    
public  voidremoveCatalogListener(ResolveChangeListener listener)
    
public  voidreplace(URI id, Service entry)
    
public  Objectresolve(Class adaptee, ProgressListener monitor)
    
public synchronized  Listsearch(String pattern, Envelope bbox, ProgressListener monitor)
     Performs a search on this catalog based on the specified inputs.


Constructor Detail
DefaultCatalog
public DefaultCatalog()(Code)



DefaultCatalog
public DefaultCatalog(CatalogInfo metadata)(Code)




Method Detail
add
public void add(Service entry) throws UnsupportedOperationException(Code)

See Also:   net.refractions.udig.catalog.ICatalog.add(net.refractions.udig.catalog.IService)
Parameters:
  entry -
throws:
  UnsupportedOperationException -



addCatalogListener
public void addCatalogListener(ResolveChangeListener listener)(Code)

See Also:   net.refractions.udig.catalog.ICatalog.addCatalogListener(net.refractions.udig.catalog.ICatalog.ICatalogListener)
Parameters:
  listener -



canResolve
public boolean canResolve(Class adaptee)(Code)



check
protected static boolean check(Service service, AST pattern)(Code)



check
protected static boolean check(GeoResource resource, AST pattern)(Code)



check
protected static boolean check(GeoResource resource, AST pattern, Envelope bbox)(Code)



find
public List find(URI query, ProgressListener monitor)(Code)
Quick search by url match.
Parameters:
  query -
See Also:   net.refractions.udig.catalog.ICatalog.search(org.geotools.filter.Filter) List
throws:
  IOException -



findService
public List findService(URI query, ProgressListener monitor)(Code)
Quick search by url match.
See Also:   net.refractions.udig.catalog.ICatalog.search(org.geotools.filter.Filter)
Parameters:
  query - List
throws:
  IOException -



fire
public void fire(ResolveChangeEvent event)(Code)
Fire a resource changed event, these may be batched into one delta for performance.
Parameters:
  event - the event to be fired
throws:
  IOException - protected void fireResourceEvent( IGeoResource resource,IResolveDelta.Kind kind ) throws IOException { Object[] listeners =catalogListeners.getListeners(); if( listeners.length == 0 ) return;GeoReferenceDelta rDelta = new GeoReferenceDelta( resource, kind ); ServiceDeltasDelta = new ServiceDelta( resource.getService(null), IDelta.Kind.NO_CHANGE,Collections.singletonList( rDelta ) ); CatalogDelta cDelta = new CatalogDelta(Collections.singletonList( (IDelta)sDelta ) ); fire( new CatalogChangeEvent(resource, ICatalogChangeEvent.Type.POST_CHANGE, cDelta ) ); }



getIdentifier
public URI getIdentifier()(Code)



getMessage
public Throwable getMessage()(Code)



getStatus
public Status getStatus()(Code)



members
public List members(ProgressListener monitor)(Code)



remove
public void remove(Service entry) throws UnsupportedOperationException(Code)

See Also:   net.refractions.udig.catalog.ICatalog.remove(net.refractions.udig.catalog.IService)
Parameters:
  entry -
throws:
  UnsupportedOperationException -



removeCatalogListener
public void removeCatalogListener(ResolveChangeListener listener)(Code)

See Also:   net.refractions.udig.catalog.ICatalog.removeCatalogListener(net.refractions.udig.catalog.ICatalog.ICatalogListener)
Parameters:
  listener -



replace
public void replace(URI id, Service entry) throws UnsupportedOperationException(Code)



resolve
public Object resolve(Class adaptee, ProgressListener monitor)(Code)

See Also:   net.refractions.udig.catalog.ICatalog.resolve(java.lang.Classorg.eclipse.core.runtime.IProgressMonitor)



search
public synchronized List search(String pattern, Envelope bbox, ProgressListener monitor)(Code)
Performs a search on this catalog based on the specified inputs. The pattern uses the following conventions: use " " to surround a phase use + to represent 'AND' use - to represent 'OR' use ! to represent 'NOT' use ( ) to designate scope The bbox provided shall be in Lat - Long, or null if the search is not to be contained within a specified area.
See Also:   net.refractions.udig.catalog.ICatalog.search(java.lang.Stringcom.vividsolutions.jts.geom.Envelope)
Parameters:
  pattern -
Parameters:
  bbox - used for an intersection test



Methods inherited from org.geotools.catalog.AbstractCatalog
public void addListener(ResolveChangeListener listener)(Code)(Java Doc)
public void fire(ResolveChangeEvent event)(Code)(Java Doc)
public CatalogInfo getInfo(ProgressListener monitor) throws IOException(Code)(Java Doc)
public Map getUserData()(Code)(Java Doc)
public Resolve parent(ProgressListener monitor)(Code)(Java Doc)
public void removeListener(ResolveChangeListener listener)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

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.