Java Doc for RelativeDateFormat.java in  » Chart » jfreechart » org » jfree » chart » util » 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.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.text.DateFormat
   org.jfree.chart.util.RelativeDateFormat

RelativeDateFormat
public class RelativeDateFormat extends DateFormat (Code)
A formatter that formats dates to show the elapsed time relative to some base date.
since:
   1.0.3



Constructor Summary
public  RelativeDateFormat()
     Creates a new instance.
public  RelativeDateFormat(Date time)
     Creates a new instance.
public  RelativeDateFormat(long baseMillis)
     Creates a new instance.

Method Summary
public  Objectclone()
     Returns a clone of this instance.
public  booleanequals(Object obj)
     Tests this formatter for equality with an arbitrary object.
Parameters:
  obj - the object (null permitted).
public  StringBufferformat(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)
     Formats the given date as the amount of elapsed time (relative to the base date specified in the constructor).
Parameters:
  date - the date.
Parameters:
  toAppendTo - the string buffer.
Parameters:
  fieldPosition - the field position.
public  longgetBaseMillis()
     Returns the base date/time used to calculate the elapsed time for display.
public  StringgetDaySuffix()
     Returns the string that is appended to the day count.
public  StringgetHourSuffix()
     Returns the string that is appended to the hour count.
public  StringgetMinuteSuffix()
     Returns the string that is appended to the minute count.
public  StringgetSecondSuffix()
     Returns the string that is appended to the second count.
public  booleangetShowZeroDays()
     Returns the flag that controls whether or not zero day counts are shown in the formatted output.
public  inthashCode()
     Returns a hash code for this instance.
public static  voidmain(String[] args)
     Some test code.
public  Dateparse(String source, ParsePosition pos)
     Parses the given string (not implemented).
Parameters:
  source - the date string.
Parameters:
  pos - the parse position.
public  voidsetBaseMillis(long baseMillis)
     Sets the base date/time used to calculate the elapsed time for display.
public  voidsetDaySuffix(String suffix)
     Sets the string that is appended to the day count.
public  voidsetHourSuffix(String suffix)
     Sets the string that is appended to the hour count.
public  voidsetMinuteSuffix(String suffix)
     Sets the string that is appended to the minute count.
public  voidsetSecondFormatter(NumberFormat formatter)
     Sets the formatter for the seconds and milliseconds.
public  voidsetSecondSuffix(String suffix)
     Sets the string that is appended to the second count.
public  voidsetShowZeroDays(boolean show)
     Sets the flag that controls whether or not zero day counts are shown in the formatted output.


Constructor Detail
RelativeDateFormat
public RelativeDateFormat()(Code)
Creates a new instance.



RelativeDateFormat
public RelativeDateFormat(Date time)(Code)
Creates a new instance.
Parameters:
  time - the date/time (null not permitted).



RelativeDateFormat
public RelativeDateFormat(long baseMillis)(Code)
Creates a new instance.
Parameters:
  baseMillis - the time zone (null not permitted).




Method Detail
clone
public Object clone()(Code)
Returns a clone of this instance. A clone.



equals
public boolean equals(Object obj)(Code)
Tests this formatter for equality with an arbitrary object.
Parameters:
  obj - the object (null permitted). A boolean.



format
public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)(Code)
Formats the given date as the amount of elapsed time (relative to the base date specified in the constructor).
Parameters:
  date - the date.
Parameters:
  toAppendTo - the string buffer.
Parameters:
  fieldPosition - the field position. The formatted date.



getBaseMillis
public long getBaseMillis()(Code)
Returns the base date/time used to calculate the elapsed time for display. The base date/time in milliseconds since 1-Jan-1970.
See Also:   RelativeDateFormat.setBaseMillis(long)



getDaySuffix
public String getDaySuffix()(Code)
Returns the string that is appended to the day count. The string.
See Also:   RelativeDateFormat.setDaySuffix(String)



getHourSuffix
public String getHourSuffix()(Code)
Returns the string that is appended to the hour count. The string.
See Also:   RelativeDateFormat.setHourSuffix(String)



getMinuteSuffix
public String getMinuteSuffix()(Code)
Returns the string that is appended to the minute count. The string.
See Also:   RelativeDateFormat.setMinuteSuffix(String)



getSecondSuffix
public String getSecondSuffix()(Code)
Returns the string that is appended to the second count. The string.
See Also:   RelativeDateFormat.setSecondSuffix(String)



getShowZeroDays
public boolean getShowZeroDays()(Code)
Returns the flag that controls whether or not zero day counts are shown in the formatted output. The flag.
See Also:   RelativeDateFormat.setShowZeroDays(boolean)



hashCode
public int hashCode()(Code)
Returns a hash code for this instance. A hash code.



main
public static void main(String[] args)(Code)
Some test code.
Parameters:
  args - ignored.



parse
public Date parse(String source, ParsePosition pos)(Code)
Parses the given string (not implemented).
Parameters:
  source - the date string.
Parameters:
  pos - the parse position. null, as this method has not been implemented.



setBaseMillis
public void setBaseMillis(long baseMillis)(Code)
Sets the base date/time used to calculate the elapsed time for display. This should be specified in milliseconds using the same encoding as java.util.Date.
Parameters:
  baseMillis - the base date/time in milliseconds.
See Also:   RelativeDateFormat.getBaseMillis()



setDaySuffix
public void setDaySuffix(String suffix)(Code)
Sets the string that is appended to the day count.
Parameters:
  suffix - the suffix (null not permitted).
See Also:   RelativeDateFormat.getDaySuffix()



setHourSuffix
public void setHourSuffix(String suffix)(Code)
Sets the string that is appended to the hour count.
Parameters:
  suffix - the suffix (null not permitted).
See Also:   RelativeDateFormat.getHourSuffix()



setMinuteSuffix
public void setMinuteSuffix(String suffix)(Code)
Sets the string that is appended to the minute count.
Parameters:
  suffix - the suffix (null not permitted).
See Also:   RelativeDateFormat.getMinuteSuffix()



setSecondFormatter
public void setSecondFormatter(NumberFormat formatter)(Code)
Sets the formatter for the seconds and milliseconds.
Parameters:
  formatter - the formatter (null not permitted).



setSecondSuffix
public void setSecondSuffix(String suffix)(Code)
Sets the string that is appended to the second count.
Parameters:
  suffix - the suffix (null not permitted).
See Also:   RelativeDateFormat.getSecondSuffix()



setShowZeroDays
public void setShowZeroDays(boolean show)(Code)
Sets the flag that controls whether or not zero day counts are shown in the formatted output.
Parameters:
  show - the flag.
See Also:   RelativeDateFormat.getShowZeroDays()



Fields inherited from java.text.DateFormat
final public static int AM_PM_FIELD(Code)(Java Doc)
final public static int DATE_FIELD(Code)(Java Doc)
final public static int DAY_OF_WEEK_FIELD(Code)(Java Doc)
final public static int DAY_OF_WEEK_IN_MONTH_FIELD(Code)(Java Doc)
final public static int DAY_OF_YEAR_FIELD(Code)(Java Doc)
final public static int DEFAULT(Code)(Java Doc)
final public static int ERA_FIELD(Code)(Java Doc)
final public static int FULL(Code)(Java Doc)
final public static int HOUR0_FIELD(Code)(Java Doc)
final public static int HOUR1_FIELD(Code)(Java Doc)
final public static int HOUR_OF_DAY0_FIELD(Code)(Java Doc)
final public static int HOUR_OF_DAY1_FIELD(Code)(Java Doc)
final public static int LONG(Code)(Java Doc)
final public static int MEDIUM(Code)(Java Doc)
final public static int MILLISECOND_FIELD(Code)(Java Doc)
final public static int MINUTE_FIELD(Code)(Java Doc)
final public static int MONTH_FIELD(Code)(Java Doc)
final public static int SECOND_FIELD(Code)(Java Doc)
final public static int SHORT(Code)(Java Doc)
final public static int TIMEZONE_FIELD(Code)(Java Doc)
final public static int WEEK_OF_MONTH_FIELD(Code)(Java Doc)
final public static int WEEK_OF_YEAR_FIELD(Code)(Java Doc)
final public static int YEAR_FIELD(Code)(Java Doc)
protected Calendar calendar(Code)(Java Doc)
protected NumberFormat numberFormat(Code)(Java Doc)

Methods inherited from java.text.DateFormat
public Object clone()(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
final public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition fieldPosition)(Code)(Java Doc)
abstract public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition)(Code)(Java Doc)
final public String format(Date date)(Code)(Java Doc)
public static Locale[] getAvailableLocales()(Code)(Java Doc)
public Calendar getCalendar()(Code)(Java Doc)
final public static DateFormat getDateInstance()(Code)(Java Doc)
final public static DateFormat getDateInstance(int style)(Code)(Java Doc)
final public static DateFormat getDateInstance(int style, Locale aLocale)(Code)(Java Doc)
final public static DateFormat getDateTimeInstance()(Code)(Java Doc)
final public static DateFormat getDateTimeInstance(int dateStyle, int timeStyle)(Code)(Java Doc)
final public static DateFormat getDateTimeInstance(int dateStyle, int timeStyle, Locale aLocale)(Code)(Java Doc)
final public static DateFormat getInstance()(Code)(Java Doc)
public NumberFormat getNumberFormat()(Code)(Java Doc)
final public static DateFormat getTimeInstance()(Code)(Java Doc)
final public static DateFormat getTimeInstance(int style)(Code)(Java Doc)
final public static DateFormat getTimeInstance(int style, Locale aLocale)(Code)(Java Doc)
public TimeZone getTimeZone()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public boolean isLenient()(Code)(Java Doc)
public Date parse(String source) throws ParseException(Code)(Java Doc)
abstract public Date parse(String source, ParsePosition pos)(Code)(Java Doc)
public Object parseObject(String source, ParsePosition pos)(Code)(Java Doc)
public void setCalendar(Calendar newCalendar)(Code)(Java Doc)
public void setLenient(boolean lenient)(Code)(Java Doc)
public void setNumberFormat(NumberFormat newNumberFormat)(Code)(Java Doc)
public void setTimeZone(TimeZone zone)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.