Source Code Cross Referenced for PlotTypes.java in  » Chart » cewolf-1.0 » de » laures » cewolf » taglib » 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 » Chart » cewolf 1.0 » de.laures.cewolf.taglib 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* ================================================================
002:         * Cewolf : Chart enabling Web Objects Framework
003:         * ================================================================
004:         *
005:         * Project Info:  http://cewolf.sourceforge.net
006:         * Project Lead:  Guido Laures (guido@laures.de);
007:         *
008:         * (C) Copyright 2002, by Guido Laures
009:         *
010:         * This library is free software; you can redistribute it and/or modify it under the terms
011:         * of the GNU Lesser General Public License as published by the Free Software Foundation;
012:         * either version 2.1 of the License, or (at your option) any later version.
013:         *
014:         * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
015:         * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
016:         * See the GNU Lesser General Public License for more details.
017:         *
018:         * You should have received a copy of the GNU Lesser General Public License along with this
019:         * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
020:         * Boston, MA 02111-1307, USA.
021:         */
022:
023:        package de.laures.cewolf.taglib;
024:
025:        import java.util.Arrays;
026:        import java.util.List;
027:
028:        import org.jfree.chart.renderer.AbstractRenderer;
029:        import org.jfree.chart.renderer.category.AreaRenderer;
030:        import org.jfree.chart.renderer.category.BarRenderer;
031:        import org.jfree.chart.renderer.category.LineAndShapeRenderer;
032:        import org.jfree.chart.renderer.xy.CandlestickRenderer;
033:        import org.jfree.chart.renderer.xy.HighLowRenderer;
034:        import org.jfree.chart.renderer.xy.StandardXYItemRenderer;
035:        import org.jfree.chart.renderer.xy.XYAreaRenderer;
036:        import org.jfree.chart.renderer.xy.XYBarRenderer;
037:        import org.jfree.chart.renderer.xy.XYStepRenderer;
038:
039:        /**
040:         * Contains the list of all possible plot type string values which can be used
041:         * in the <code>type</code> attribute of a &lt;chart&gt; tag.
042:         *
043:         * It also contains all the renders that correspond with the plot types
044:         * @author  Chris McCann
045:         */
046:        public class PlotTypes {
047:
048:            /** All type strings in an array */
049:            public static final String[] typeNames = { "xyarea", "xyline",
050:                    "xyshapesandlines", "scatter", "xyverticalbar", "step",
051:                    "candlestick", "highlow", "signal", "verticalbar", "area",
052:                    "line", "shapesandlines" };
053:
054:            /**
055:             * The whole typeNames array inside of a list.
056:             * @see #typeNames
057:             */
058:            private static final List typeList = Arrays.asList(typeNames);
059:
060:            /**
061:             * Create a renderer for the given type index.
062:             * We create a new renderer instance for each chart, because they may want to customize
063:             * it in a post-processor.
064:             * 
065:             * @param idx The index of the type
066:             * @return A new renderer instance
067:             */
068:            public static AbstractRenderer getRenderer(int idx) {
069:                switch (idx) {
070:                case 0:
071:                    return new XYAreaRenderer();
072:                case 1:
073:                    return new StandardXYItemRenderer();
074:                case 2:
075:                    return new StandardXYItemRenderer(
076:                            StandardXYItemRenderer.SHAPES_AND_LINES);
077:                case 3:
078:                    return new StandardXYItemRenderer(
079:                            StandardXYItemRenderer.SHAPES);
080:                case 4:
081:                    return new XYBarRenderer();
082:                case 5:
083:                    return new XYStepRenderer();
084:                case 6:
085:                    return new CandlestickRenderer();
086:                case 7:
087:                    return new HighLowRenderer();
088:                    //case 8: return new SignalRenderer();
089:                case 9:
090:                    return new BarRenderer();
091:                case 10:
092:                    return new AreaRenderer();
093:                case 11:
094:                    return new LineAndShapeRenderer(true, false);
095:                case 12:
096:                    return new LineAndShapeRenderer(true, true);
097:                default:
098:                    throw new RuntimeException("Invalid renderer index:" + idx);
099:                }
100:            }
101:
102:            private PlotTypes() {
103:            }
104:
105:            /**
106:             * Get the renderer index for the given plot type.
107:             * @param plotType The type string of the plot
108:             * @return The index The index of renderer
109:             * @throws AttributeValidationException if unknown type
110:             */
111:            public static int getRendererIndex(String plotType)
112:                    throws AttributeValidationException {
113:                int rendererIndex = PlotTypes.typeList.indexOf(plotType
114:                        .toLowerCase());
115:                if (rendererIndex < 0) {
116:                    throw new AttributeValidationException("plot.type",
117:                            plotType);
118:                }
119:                return rendererIndex;
120:            }
121:
122:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.