Source Code Cross Referenced for DB2FeatureTypeHandler.java in  » GIS » GeoTools-2.4.1 » org » geotools » data » db2 » 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.data.db2 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         *    GeoTools - OpenSource mapping toolkit
03:         *    http://geotools.org
04:         *    (C) Copyright IBM Corporation, 2005. All rights reserved.
05:         *
06:         *    This library is free software; you can redistribute it and/or
07:         *    modify it under the terms of the GNU Lesser General Public
08:         *    License as published by the Free Software Foundation;
09:         *    version 2.1 of the License.
10:         *
11:         *    This library is distributed in the hope that it will be useful,
12:         *    but WITHOUT ANY WARRANTY; without even the implied warranty of
13:         *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14:         *    Lesser General Public License for more details.
15:         *
16:         */
17:        package org.geotools.data.db2;
18:
19:        import org.geotools.data.jdbc.FeatureTypeHandler;
20:        import org.geotools.data.jdbc.JDBCDataStore;
21:        import org.geotools.data.jdbc.fidmapper.FIDMapperFactory;
22:        import java.io.IOException;
23:        import java.util.logging.Logger;
24:
25:        /**
26:         * Override methods from FeatureTypeHandler for DB2-specific handling.
27:         *
28:         * @author David Adler - IBM Corporation
29:         * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/unsupported/db2/src/main/java/org/geotools/data/db2/DB2FeatureTypeHandler.java $
30:         */
31:        public class DB2FeatureTypeHandler extends FeatureTypeHandler {
32:            private static final Logger LOGGER = org.geotools.util.logging.Logging
33:                    .getLogger("org.geotools.data.db2");
34:
35:            // It is really nasty that we make a second copy of the DataStore in the subclass because
36:            // it is private in FeatureTypeHandler and not visible to subclasses.	
37:            DB2DataStore db2Store;
38:
39:            /**
40:             * Creates a new feature type handler
41:             *
42:             * @param store the parent data store
43:             * @param fmFactory the FIDMapper factory
44:             * @param cacheTimeOut timeout used to purge possibly stale data from the
45:             *        caches
46:             */
47:            public DB2FeatureTypeHandler(JDBCDataStore store,
48:                    FIDMapperFactory fmFactory, long cacheTimeOut) {
49:                super (store, fmFactory, cacheTimeOut);
50:                this .db2Store = (DB2DataStore) store;
51:            }
52:
53:            /**
54:             * Gets the list of type names from the DB2SpatialCatalog which should have
55:             * been loaded with all geometry columns (includes type names) when the
56:             * DB2DataStore was created.
57:             * 
58:             * <p>
59:             * Note: there seems to be some ambiguity as one could have the same type
60:             * name (table name) in the database with different table schemas.
61:             * </p>
62:             * 
63:             * <p>
64:             * It isn't clear how this relates to DataStore.getTypeNames
65:             * </p>
66:             *
67:             * @return an array of type (table) names.
68:             *
69:             * @throws IOException
70:             */
71:            private String[] loadTypeNamesFromDatabase() throws IOException {
72:                return this.db2Store.getTypeNames();
73:            }
74:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.