Source Code Cross Referenced for CategoryDataSetCreator.java in  » ESB » open-esb » org » openesb » tools » extchart » jfchart » data » 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 » ESB » open esb » org.openesb.tools.extchart.jfchart.data 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * BEGIN_HEADER - DO NOT EDIT
003:         *
004:         * The contents of this file are subject to the terms
005:         * of the Common Development and Distribution License
006:         * (the "License").  You may not use this file except
007:         * in compliance with the License.
008:         *
009:         * You can obtain a copy of the license at
010:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011:         * See the License for the specific language governing
012:         * permissions and limitations under the License.
013:         *
014:         * When distributing Covered Code, include this CDDL
015:         * HEADER in each file and include the License file at
016:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017:         * If applicable add the following below this CDDL HEADER,
018:         * with the fields enclosed by brackets "[]" replaced with
019:         * your own identifying information: Portions Copyright
020:         * [year] [name of copyright owner]
021:         */
022:
023:        /*
024:         * @(#)CategoryDataSetCreator.java
025:         * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026:         *
027:         * END_HEADER - DO NOT EDIT
028:         */
029:        package org.openesb.tools.extchart.jfchart.data;
030:
031:        import org.openesb.tools.extchart.exception.ChartException;
032:        import java.sql.ResultSet;
033:        import java.sql.ResultSetMetaData;
034:        import java.sql.SQLException;
035:        import java.sql.Types;
036:        import java.util.logging.Logger;
037:        import org.jfree.data.category.DefaultCategoryDataset;
038:        import org.jfree.data.general.Dataset;
039:
040:        /**
041:         *
042:         * @author rdwivedi
043:         */
044:        public class CategoryDataSetCreator extends DataSetCreator {
045:
046:            private static Logger mLogger = Logger
047:                    .getLogger(CategoryDataSetCreator.class.getName());
048:            private DefaultCategoryDataset dataset = null;
049:
050:            /** Creates a new instance of CategoryDataSetCreator */
051:            public CategoryDataSetCreator() {
052:
053:            }
054:
055:            public Dataset getDefaultDataSet() {
056:                return dataset;
057:            }
058:
059:            public void processResultSet(ResultSet resultSet)
060:                    throws ChartException {
061:
062:                dataset = new DefaultCategoryDataset();
063:                try {
064:                    ResultSetMetaData metaData = resultSet.getMetaData();
065:                    int columnCount = metaData.getColumnCount();
066:                    if (columnCount < 2) {
067:                        throw new ChartException(
068:                                "There must be more then 1 columns.");
069:                    }
070:                    // Remove any previous old data
071:                    int i = dataset.getRowCount();
072:                    for (; i > 0; --i) {
073:                        dataset.removeRow(i);
074:                    }
075:                    while (resultSet.next()) {
076:                        // first column contains the row key...
077:                        Comparable categoryKey = resultSet.getString(1);
078:                        String ser = resultSet.getString(2);
079:                        if (columnCount > 3) {
080:                            for (int column = 3; column <= columnCount - 1; column++) {
081:                                // all other column makes up the secondary series sepereated by -
082:                                ser += "-" + resultSet.getString(column);
083:                            }
084:                        }
085:                        // now for value part it needs to be numeric....
086:
087:                        int columnType = metaData.getColumnType(columnCount);
088:
089:                        switch (columnType) {
090:                        case Types.TINYINT:
091:                        case Types.SMALLINT:
092:                        case Types.INTEGER:
093:                        case Types.BIGINT:
094:                        case Types.FLOAT:
095:                        case Types.DOUBLE:
096:                        case Types.DECIMAL:
097:                        case Types.NUMERIC:
098:                        case Types.REAL: {
099:                            Number value = (Number) resultSet
100:                                    .getObject(columnCount);
101:                            dataset.setValue(value, categoryKey, ser);
102:                            break;
103:                        }
104:                        case Types.DATE:
105:                        case Types.TIME:
106:                        case Types.TIMESTAMP: {
107:                            mLogger
108:                                    .info("Found Data type for value , which is not allowed"
109:                                            + resultSet.getObject(columnCount));
110:                            break;
111:                        }
112:                        case Types.CHAR:
113:                        case Types.VARCHAR:
114:                        case Types.LONGVARCHAR: {
115:                            String string = (String) resultSet
116:                                    .getObject(columnCount);
117:                            try {
118:                                Number value = Double.valueOf(string);
119:                                dataset.setValue(value, categoryKey, ser);
120:                            } catch (NumberFormatException e) {
121:                                mLogger
122:                                        .info("Found a non number value at value column"
123:                                                + string);
124:                            }
125:                            break;
126:                        }
127:                        default:
128:                            mLogger.info("Not a valid type for value column"
129:                                    + metaData.getColumnName(columnCount));
130:                            break;
131:                        }
132:                    }
133:
134:                } catch (SQLException e) {
135:                    throw new ChartException(e);
136:                }
137:
138:            }
139:
140:            public String getQuery() throws ChartException {
141:                return null;
142:            }
143:
144:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.