Source Code Cross Referenced for MonthDateFormat.java in  » Chart » jfreechart » org » jfree » chart » axis » 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.axis 
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:         * MonthDateFormat.java
029:         * --------------------
030:         * (C) Copyright 2005-2007, by Object Refinery Limited and Contributors.
031:         *
032:         * Original Author:  David Gilbert (for Object Refinery Limited);
033:         * Contributor(s):   -;
034:         *
035:         * $Id: MonthDateFormat.java,v 1.1.2.5 2007/06/08 15:05:13 mungady Exp $
036:         *
037:         * Changes:
038:         * --------
039:         * 10-May-2005 : Version 1 (DG);
040:         *
041:         */
042:
043:        package org.jfree.chart.axis;
044:
045:        import java.text.DateFormat;
046:        import java.text.DateFormatSymbols;
047:        import java.text.FieldPosition;
048:        import java.text.NumberFormat;
049:        import java.text.ParsePosition;
050:        import java.text.SimpleDateFormat;
051:        import java.util.Arrays;
052:        import java.util.Calendar;
053:        import java.util.Date;
054:        import java.util.GregorianCalendar;
055:        import java.util.Locale;
056:        import java.util.TimeZone;
057:
058:        import org.jfree.data.time.Month;
059:
060:        /**
061:         * A formatter that formats dates to show the initial letter(s) of the month
062:         * name and, as an option, the year for the first or last month of each year.
063:         */
064:        public class MonthDateFormat extends DateFormat {
065:
066:            /** The symbols used for the months. */
067:            private String[] months;
068:
069:            /** Flags that control which months will have the year appended. */
070:            private boolean[] showYear;
071:
072:            /** The year formatter. */
073:            private DateFormat yearFormatter;
074:
075:            /**
076:             * Creates a new instance for the default time zone.
077:             */
078:            public MonthDateFormat() {
079:                this (TimeZone.getDefault());
080:            }
081:
082:            /**
083:             * Creates a new instance for the specified time zone.
084:             * 
085:             * @param zone  the time zone (<code>null</code> not permitted).
086:             */
087:            public MonthDateFormat(TimeZone zone) {
088:                this (zone, Locale.getDefault(), 1, true, false);
089:            }
090:
091:            /**
092:             * Creates a new instance for the specified time zone.
093:             * 
094:             * @param locale  the locale used to obtain the month 
095:             *                names (<code>null</code> not permitted).
096:             */
097:            public MonthDateFormat(Locale locale) {
098:                this (TimeZone.getDefault(), locale, 1, true, false);
099:            }
100:
101:            /**
102:             * Creates a new instance for the specified time zone.
103:             * 
104:             * @param zone  the time zone (<code>null</code> not permitted).
105:             * @param chars  the maximum number of characters to use from the month
106:             *               names (that are obtained from the date symbols of the
107:             *               default locale).  If this value is <= 0, the entire 
108:             *               month name is used in each case.
109:             */
110:            public MonthDateFormat(TimeZone zone, int chars) {
111:                this (zone, Locale.getDefault(), chars, true, false);
112:            }
113:
114:            /**
115:             * Creates a new instance for the specified time zone.
116:             * 
117:             * @param locale  the locale (<code>null</code> not permitted).
118:             * @param chars  the maximum number of characters to use from the month
119:             *               names (that are obtained from the date symbols of the
120:             *               default locale).  If this value is <= 0, the entire 
121:             *               month name is used in each case.
122:             */
123:            public MonthDateFormat(Locale locale, int chars) {
124:                this (TimeZone.getDefault(), locale, chars, true, false);
125:            }
126:
127:            /**
128:             * Creates a new formatter.
129:             * 
130:             * @param zone  the time zone used to extract the month and year from dates
131:             *              passed to this formatter (<code>null</code> not permitted).
132:             * @param locale  the locale used to determine the month names 
133:             *                (<code>null</code> not permitted).
134:             * @param chars  the maximum number of characters to use from the month 
135:             *               names, or zero to indicate that the entire month name 
136:             *               should be used.
137:             * @param showYearForJan  a flag that controls whether or not the year is
138:             *                        appended to the symbol for the first month of
139:             *                        each year.
140:             * @param showYearForDec  a flag that controls whether or not the year is
141:             *                        appended to the symbol for the last month of
142:             *                        each year.
143:             */
144:            public MonthDateFormat(TimeZone zone, Locale locale, int chars,
145:                    boolean showYearForJan, boolean showYearForDec) {
146:                this (zone, locale, chars, new boolean[] { showYearForJan,
147:                        false, false, false, false, false, false, false, false,
148:                        false, false, false, showYearForDec },
149:                        new SimpleDateFormat("yy"));
150:            }
151:
152:            /**
153:             * Creates a new formatter.
154:             * 
155:             * @param zone  the time zone used to extract the month and year from dates
156:             *              passed to this formatter (<code>null</code> not permitted).
157:             * @param locale  the locale used to determine the month names 
158:             *                (<code>null</code> not permitted).
159:             * @param chars  the maximum number of characters to use from the month 
160:             *               names, or zero to indicate that the entire month name 
161:             *               should be used.
162:             * @param showYear  an array of flags that control whether or not the
163:             *                  year is displayed for a particular month.
164:             * @param yearFormatter  the year formatter.
165:             */
166:            public MonthDateFormat(TimeZone zone, Locale locale, int chars,
167:                    boolean[] showYear, DateFormat yearFormatter) {
168:                if (locale == null) {
169:                    throw new IllegalArgumentException(
170:                            "Null 'locale' argument.");
171:                }
172:                DateFormatSymbols dfs = new DateFormatSymbols(locale);
173:                String[] monthsFromLocale = dfs.getMonths();
174:                this .months = new String[12];
175:                for (int i = 0; i < 12; i++) {
176:                    if (chars > 0) {
177:                        this .months[i] = monthsFromLocale[i].substring(0, Math
178:                                .min(chars, monthsFromLocale[i].length()));
179:                    } else {
180:                        this .months[i] = monthsFromLocale[i];
181:                    }
182:                }
183:                this .calendar = new GregorianCalendar(zone);
184:                this .showYear = showYear;
185:                this .yearFormatter = yearFormatter;
186:
187:                // the following is never used, but it seems that DateFormat requires
188:                // it to be non-null.  It isn't well covered in the spec, refer to 
189:                // bug parade 5061189 for more info.
190:                this .numberFormat = NumberFormat.getNumberInstance();
191:            }
192:
193:            /**
194:             * Formats the given date.
195:             * 
196:             * @param date  the date.
197:             * @param toAppendTo  the string buffer.
198:             * @param fieldPosition  the field position.
199:             * 
200:             * @return The formatted date.
201:             */
202:            public StringBuffer format(Date date, StringBuffer toAppendTo,
203:                    FieldPosition fieldPosition) {
204:                this .calendar.setTime(date);
205:                int month = this .calendar.get(Calendar.MONTH);
206:                toAppendTo.append(this .months[month]);
207:                if (this .showYear[month]) {
208:                    toAppendTo.append(this .yearFormatter.format(date));
209:                }
210:                return toAppendTo;
211:            }
212:
213:            /**
214:             * Parses the given string (not implemented).
215:             * 
216:             * @param source  the date string.
217:             * @param pos  the parse position.
218:             * 
219:             * @return <code>null</code>, as this method has not been implemented.
220:             */
221:            public Date parse(String source, ParsePosition pos) {
222:                return null;
223:            }
224:
225:            /**
226:             * Tests this formatter for equality with an arbitrary object.
227:             * 
228:             * @param obj  the object.
229:             * 
230:             * @return A boolean.
231:             */
232:            public boolean equals(Object obj) {
233:                if (obj == this ) {
234:                    return true;
235:                }
236:                if (!(obj instanceof  MonthDateFormat)) {
237:                    return false;
238:                }
239:                if (!super .equals(obj)) {
240:                    return false;
241:                }
242:                MonthDateFormat that = (MonthDateFormat) obj;
243:                if (!Arrays.equals(this .months, that.months)) {
244:                    return false;
245:                }
246:                if (!Arrays.equals(this .showYear, that.showYear)) {
247:                    return false;
248:                }
249:                if (!this .yearFormatter.equals(that.yearFormatter)) {
250:                    return false;
251:                }
252:                return true;
253:            }
254:
255:            /**
256:             * Some test code.
257:             * 
258:             * @param args  ignored.
259:             */
260:            public static void main(String[] args) {
261:                MonthDateFormat mdf = new MonthDateFormat(Locale.UK, 2);
262:                System.out.println("UK:");
263:                System.out.println(mdf.format(new Month(1, 2005).getStart()));
264:                System.out.println(mdf.format(new Month(2, 2005).getStart()));
265:                System.out.println(mdf.format(new Month(3, 2005).getStart()));
266:                System.out.println(mdf.format(new Month(4, 2005).getStart()));
267:                System.out.println(mdf.format(new Month(5, 2005).getStart()));
268:                System.out.println(mdf.format(new Month(6, 2005).getStart()));
269:                System.out.println(mdf.format(new Month(7, 2005).getStart()));
270:                System.out.println(mdf.format(new Month(8, 2005).getStart()));
271:                System.out.println(mdf.format(new Month(9, 2005).getStart()));
272:                System.out.println(mdf.format(new Month(10, 2005).getStart()));
273:                System.out.println(mdf.format(new Month(11, 2005).getStart()));
274:                System.out.println(mdf.format(new Month(12, 2005).getStart()));
275:                System.out.println();
276:
277:                mdf = new MonthDateFormat(Locale.GERMANY, 2);
278:                System.out.println("GERMANY:");
279:                System.out.println(mdf.format(new Month(1, 2005).getStart()));
280:                System.out.println(mdf.format(new Month(2, 2005).getStart()));
281:                System.out.println(mdf.format(new Month(3, 2005).getStart()));
282:                System.out.println(mdf.format(new Month(4, 2005).getStart()));
283:                System.out.println(mdf.format(new Month(5, 2005).getStart()));
284:                System.out.println(mdf.format(new Month(6, 2005).getStart()));
285:                System.out.println(mdf.format(new Month(7, 2005).getStart()));
286:                System.out.println(mdf.format(new Month(8, 2005).getStart()));
287:                System.out.println(mdf.format(new Month(9, 2005).getStart()));
288:                System.out.println(mdf.format(new Month(10, 2005).getStart()));
289:                System.out.println(mdf.format(new Month(11, 2005).getStart()));
290:                System.out.println(mdf.format(new Month(12, 2005).getStart()));
291:                System.out.println();
292:
293:                mdf = new MonthDateFormat(Locale.FRANCE, 2);
294:                System.out.println("FRANCE:");
295:                System.out.println(mdf.format(new Month(1, 2005).getStart()));
296:                System.out.println(mdf.format(new Month(2, 2005).getStart()));
297:                System.out.println(mdf.format(new Month(3, 2005).getStart()));
298:                System.out.println(mdf.format(new Month(4, 2005).getStart()));
299:                System.out.println(mdf.format(new Month(5, 2005).getStart()));
300:                System.out.println(mdf.format(new Month(6, 2005).getStart()));
301:                System.out.println(mdf.format(new Month(7, 2005).getStart()));
302:                System.out.println(mdf.format(new Month(8, 2005).getStart()));
303:                System.out.println(mdf.format(new Month(9, 2005).getStart()));
304:                System.out.println(mdf.format(new Month(10, 2005).getStart()));
305:                System.out.println(mdf.format(new Month(11, 2005).getStart()));
306:                System.out.println(mdf.format(new Month(12, 2005).getStart()));
307:                System.out.println();
308:
309:                SimpleDateFormat sdf = new SimpleDateFormat("yyyy");
310:                sdf.setNumberFormat(null);
311:                System.out.println(sdf.equals("X"));
312:            }
313:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.