Source Code Cross Referenced for DateTitle.java in  » Chart » jfreechart » org » jfree » chart » title » 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 » jfreechart » org.jfree.chart.title 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /* ===========================================================
002:         * JFreeChart : a free chart library for the Java(tm) platform
003:         * ===========================================================
004:         *
005:         * (C) Copyright 2000-2007, by Object Refinery Limited and Contributors.
006:         *
007:         * Project Info:  http://www.jfree.org/jfreechart/index.html
008:         *
009:         * This library is free software; you can redistribute it and/or modify it 
010:         * under the terms of the GNU Lesser General Public License as published by 
011:         * the Free Software Foundation; either version 2.1 of the License, or 
012:         * (at your option) any later version.
013:         *
014:         * This library is distributed in the hope that it will be useful, but 
015:         * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
016:         * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 
017:         * License for more details.
018:         *
019:         * You should have received a copy of the GNU Lesser General Public
020:         * License along with this library; if not, write to the Free Software
021:         * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
022:         * USA.  
023:         *
024:         * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 
025:         * in the United States and other countries.]
026:         * 
027:         * --------------
028:         * DateTitle.java
029:         * --------------
030:         * (C) Copyright 2000-2007, by David Berry and Contributors.
031:         *
032:         * Original Author:  David Berry;
033:         * Contributor(s):   David Gilbert (for Object Refinery Limited);
034:         *
035:         * $Id: DateTitle.java,v 1.3.2.2 2007/02/02 15:03:19 mungady Exp $
036:         *
037:         * Changes (from 18-Sep-2001)
038:         * --------------------------
039:         * 18-Sep-2001 : Added standard header (DG);
040:         * 09-Jan-2002 : Updated Javadoc comments (DG);
041:         * 07-Feb-2002 : Changed blank space around title from Insets --> Spacer, to 
042:         *               allow for relative or absolute spacing (DG);
043:         * 26-Sep-2002 : Fixed errors reported by Checkstyle (DG);
044:         * 31-Jan-2005 : Updated for changes to super class (DG);
045:         * ------------- JFREECHART 1.0.x ---------------------------------------------
046:         * 02-Feb-2007 : Removed author tags all over JFreeChart sources (DG);
047:         *
048:         */
049:
050:        package org.jfree.chart.title;
051:
052:        import java.awt.Color;
053:        import java.awt.Font;
054:        import java.awt.Paint;
055:        import java.io.Serializable;
056:        import java.text.DateFormat;
057:        import java.util.Date;
058:        import java.util.Locale;
059:
060:        import org.jfree.ui.HorizontalAlignment;
061:        import org.jfree.ui.RectangleEdge;
062:        import org.jfree.ui.RectangleInsets;
063:        import org.jfree.ui.VerticalAlignment;
064:
065:        /**
066:         * A chart title that displays the date.
067:         * <p>
068:         * Keep in mind that a chart can have several titles, and that they can appear 
069:         * at the top, left, right or bottom of the chart - a <code>DateTitle</code> 
070:         * will commonly appear at the bottom of a chart, although you can place it 
071:         * anywhere.
072:         * <P>
073:         * By specifying the locale, dates are formatted to the correct standard for
074:         * the given locale. For example, a date would appear as "January 17, 2000" in
075:         * the US, but "17 January 2000" in most European locales.
076:         */
077:        public class DateTitle extends TextTitle implements  Serializable {
078:
079:            /** For serialization. */
080:            private static final long serialVersionUID = -465434812763159881L;
081:
082:            /**
083:             * Creates a new chart title that displays the current date in the default
084:             * (LONG) format for the locale, positioned to the bottom right of the 
085:             * chart.
086:             * <P>
087:             * The color will be black in 12 point, plain Helvetica font (maps to Arial
088:             * on Win32 systems without Helvetica).
089:             */
090:            public DateTitle() {
091:                this (DateFormat.LONG);
092:            }
093:
094:            /**
095:             * Creates a new chart title that displays the current date with the 
096:             * specified style (for the default locale).
097:             * <P>
098:             * The date style should be one of:  <code>SHORT</code>, 
099:             * <code>MEDIUM</code>, <code>LONG</code> or <code>FULL</code> 
100:             * (defined in <code>java.util.DateFormat<code>).
101:             *
102:             * @param style  the date style.
103:             */
104:            public DateTitle(int style) {
105:                this (style, Locale.getDefault(), new Font("Dialog", Font.PLAIN,
106:                        12), Color.black);
107:            }
108:
109:            /**
110:             * Creates a new chart title that displays the current date.
111:             * <p>
112:             * The date style should be one of:  <code>SHORT</code>, 
113:             * <code>MEDIUM</code>, <code>LONG</code> or <code>FULL</code> (defined 
114:             * in <code>java.util.DateFormat<code>).
115:             * <P>
116:             * For the locale, you can use <code>Locale.getDefault()</code> for the 
117:             * default locale.
118:             *
119:             * @param style  the date style.
120:             * @param locale  the locale.
121:             * @param font  the font.
122:             * @param paint  the text color.
123:             */
124:            public DateTitle(int style, Locale locale, Font font, Paint paint) {
125:                this (style, locale, font, paint, RectangleEdge.BOTTOM,
126:                        HorizontalAlignment.RIGHT, VerticalAlignment.CENTER,
127:                        Title.DEFAULT_PADDING);
128:            }
129:
130:            /**
131:             * Creates a new chart title that displays the current date.
132:             * <p>
133:             * The date style should be one of:  <code>SHORT</code>, 
134:             * <code>MEDIUM</code>, <code>LONG</code> or <code>FULL</code> (defined 
135:             * in <code>java.util.DateFormat<code>).
136:             * <P>
137:             * For the locale, you can use <code>Locale.getDefault()</code> for the 
138:             * default locale.
139:             *
140:             * @param style  the date style.
141:             * @param locale  the locale.
142:             * @param font  the font (not null).
143:             * @param paint  the text color (not null).
144:             * @param position  the relative location of this title (use constants in 
145:             *                  Title).
146:             * @param horizontalAlignment  the horizontal text alignment of this title 
147:             *                             (use constants in Title).
148:             * @param verticalAlignment  the vertical text alignment of this title (use
149:             *                           constants in Title).
150:             * @param padding  determines the blank space around the outside of the 
151:             *                 title (not null).
152:             */
153:            public DateTitle(int style, Locale locale, Font font, Paint paint,
154:                    RectangleEdge position,
155:                    HorizontalAlignment horizontalAlignment,
156:                    VerticalAlignment verticalAlignment, RectangleInsets padding) {
157:                super (DateFormat.getDateInstance(style, locale).format(
158:                        new Date()), font, paint, position,
159:                        horizontalAlignment, verticalAlignment, padding);
160:            }
161:
162:            /**
163:             * Set the format of the date.
164:             * <P>
165:             * The date style should be one of:  <code>SHORT</code>, 
166:             * <code>MEDIUM</code>, <code>LONG</code> or <code>FULL</code> (defined 
167:             * in <code>java.util.DateFormat<code>).
168:             * <P>
169:             * For the locale, you can use <code>Locale.getDefault()</code> for the 
170:             * default locale.
171:             *
172:             * @param style  the date style.
173:             * @param locale  the locale.
174:             */
175:            public void setDateFormat(int style, Locale locale) {
176:                setText(DateFormat.getDateInstance(style, locale).format(
177:                        new Date()));
178:            }
179:
180:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.