Java Doc for DateSelector.java in  » Web-Framework » TURBINE » org » apache » turbine » 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 » Web Framework » TURBINE » org.apache.turbine.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.turbine.util.DateSelector

DateSelector
public class DateSelector (Code)
DateSelector is a utility class to handle the creation of a set of date popup menus. The code is broken into a set of static methods for quick and easy access to the individual select objects:
 ElementContainer ec dateSelect = new ElementContainer();
 String myName = "mydate";
 ec.addElement(DateSelector.getMonthSelector(myName));
 ec.addElement(DateSelector.getDaySelector(myName));
 ec.addElement(DateSelector.getYearSelector(myName));
 
There are also methods which will use attributes to build a complete month,day,year selector:
 DateSelector ds = new DateSelector(myName);
 dateSelect = ds.ecsOutput();
 
The above element container would use the onChange setting and may hide the selected day if set via showDays().

author:
   Jeffrey D. Brekke
author:
   Jon S. Stevens
author:
   Leon Atkinson
version:
   $Id: DateSelector.java 534527 2007-05-02 16:10:59Z tv $


Field Summary
final public static  StringDAY_SUFFIX
     Suffix for day parameter.
final public static  StringDEFAULT_PREFIX
     Prefix for date names.
final public static  StringMONTH_SUFFIX
     Suffix for month parameter.
final public static  StringYEAR_SUFFIX
     Suffix for year parameter.

Constructor Summary
public  DateSelector()
    
public  DateSelector(String selName, Calendar useDate)
     Constructor, uses the date set in a calendar that has been already passed in (with the date set correctly).
public  DateSelector(String selName)
     Constructor defaults to current date.

Method Summary
public  ElementContainerecsOutput()
    
public static  SelectgetDaySelector(String name)
     Return a day selector.
Parameters:
  name - The name to use for the selected day.
public static  SelectgetDaySelector(String name, Calendar now)
     Return a day selector.
Parameters:
  name - The name to use for the selected day.
Parameters:
  now - Calendar to start with.
public static  SelectgetMonthSelector(String name)
     Return a month selector.
Parameters:
  name - The name to use for the selected month.
public static  SelectgetMonthSelector(String name, Calendar now)
     Return a month selector. Note: The values of the month placed into the select list are the month integers starting at 0 (ie: if the user selects February, the selected value will be 1).
Parameters:
  name - The name to use for the selected month.
Parameters:
  now - Calendar to start with.
public  StringgetSelName()
     Get the selector name prefix.
public static  SelectgetYearSelector(String name)
     Return a year selector.
Parameters:
  name - The name to use for the selected year.
public static  SelectgetYearSelector(String name, Calendar now)
     Return a year selector.
Parameters:
  name - The name to use for the selected year.
Parameters:
  now - Calendar to start with.
public static  SelectgetYearSelector(String name, int firstYear, int lastYear, int selectedYear)
     Return a year selector.
Parameters:
  name - The name to use for the selected year.
Parameters:
  firstYear - the first (earliest) year in the selector.
Parameters:
  lastYear - the last (latest) year in the selector.
Parameters:
  selectedYear - the year initially selected in the Select html.
public  Stringoutput()
     Used to build the popupmenu in HTML.
public  DateSelectorsetDay(int day)
     Select the day to be selected if the showDays(false) behavior is used.
public  DateSelectorsetOnChange(String onChange)
     Adds the onChange to all of <SELECT> tags.
public  voidsetSelName(String selName)
     Set the selector name prefix.
public  DateSelectorsetShowDay(boolean show)
     Whether or not to show the days as a popup menu.
public  booleansetYear(int firstYear, int lastYear, int selectedYear)
     Select the day to be selected if the showDays(false) behavior is used.
public  StringtoString()
     Used to build the popupmenu in HTML.

Field Detail
DAY_SUFFIX
final public static String DAY_SUFFIX(Code)
Suffix for day parameter.



DEFAULT_PREFIX
final public static String DEFAULT_PREFIX(Code)
Prefix for date names.



MONTH_SUFFIX
final public static String MONTH_SUFFIX(Code)
Suffix for month parameter.



YEAR_SUFFIX
final public static String YEAR_SUFFIX(Code)
Suffix for year parameter.




Constructor Detail
DateSelector
public DateSelector()(Code)
Constructor defaults to current date and uses the default prefix:
DateSelector.DEFAULT



DateSelector
public DateSelector(String selName, Calendar useDate)(Code)
Constructor, uses the date set in a calendar that has been already passed in (with the date set correctly).
Parameters:
  selName - A String with the selector name.
Parameters:
  useDate - A Calendar with a date.



DateSelector
public DateSelector(String selName)(Code)
Constructor defaults to current date.
Parameters:
  selName - A String with the selector name.




Method Detail
ecsOutput
public ElementContainer ecsOutput()(Code)



getDaySelector
public static Select getDaySelector(String name)(Code)
Return a day selector.
Parameters:
  name - The name to use for the selected day. A select object with all the days in a month.



getDaySelector
public static Select getDaySelector(String name, Calendar now)(Code)
Return a day selector.
Parameters:
  name - The name to use for the selected day.
Parameters:
  now - Calendar to start with. A select object with all the days in a month.



getMonthSelector
public static Select getMonthSelector(String name)(Code)
Return a month selector.
Parameters:
  name - The name to use for the selected month. A select object with all the months.



getMonthSelector
public static Select getMonthSelector(String name, Calendar now)(Code)
Return a month selector. Note: The values of the month placed into the select list are the month integers starting at 0 (ie: if the user selects February, the selected value will be 1).
Parameters:
  name - The name to use for the selected month.
Parameters:
  now - Calendar to start with. A select object with all the months.



getSelName
public String getSelName()(Code)
Get the selector name prefix. A String with the select name prefix.



getYearSelector
public static Select getYearSelector(String name)(Code)
Return a year selector.
Parameters:
  name - The name to use for the selected year. A select object with all the years starting five yearsfrom now and five years before this year.



getYearSelector
public static Select getYearSelector(String name, Calendar now)(Code)
Return a year selector.
Parameters:
  name - The name to use for the selected year.
Parameters:
  now - Calendar to start with. A select object with all the years starting five yearsfrom now and five years before this year.



getYearSelector
public static Select getYearSelector(String name, int firstYear, int lastYear, int selectedYear)(Code)
Return a year selector.
Parameters:
  name - The name to use for the selected year.
Parameters:
  firstYear - the first (earliest) year in the selector.
Parameters:
  lastYear - the last (latest) year in the selector.
Parameters:
  selectedYear - the year initially selected in the Select html. A select object with all the years from firstyearto lastyear..



output
public String output()(Code)
Used to build the popupmenu in HTML. The properties set in the object are used to generate the correct HTML. The selName attribute is used to seed the names of the select lists. The names will be generated as follows:
  • selName + "_month"
  • selName + "_day"
  • selName + "_year"
If onChange was set it is also used in the generation of the output. The output HTML will list the select lists in the following order: month day year. A String with the correct HTML for the date selector.



setDay
public DateSelector setDay(int day)(Code)
Select the day to be selected if the showDays(false) behavior is used. Individual getMonth, getDay, getYear static methods will not use this setting.
Parameters:
  day - The day. A DateSelector (self).



setOnChange
public DateSelector setOnChange(String onChange)(Code)
Adds the onChange to all of <SELECT> tags. This is limited to one function for all three popups and is only used when the output() methods are used. Individual getMonth, getDay, getYear static methods will not use this setting.
Parameters:
  string - A String to use for onChange attribute. If null,then nothing will be set. A DateSelector (self).



setSelName
public void setSelName(String selName)(Code)
Set the selector name prefix. Individual getMonth, getDay, getYear static methods will not use this setting.
Parameters:
  selname - A String with the select name prefix.



setShowDay
public DateSelector setShowDay(boolean show)(Code)
Whether or not to show the days as a popup menu. The days will be a hidden parameter and the value set with setDay is used. Individual getMonth, getDay, getYear static methods will not use this setting.
Parameters:
  show - True if the day should be shown. A DateSelector (self).



setYear
public boolean setYear(int firstYear, int lastYear, int selectedYear)(Code)
Select the day to be selected if the showDays(false) behavior is used. Individual getMonth, getDay, getYear static methods will not use this setting.
Parameters:
  day - The day. A DateSelector (self).



toString
public String toString()(Code)
Used to build the popupmenu in HTML. The properties set in the object are used to generate the correct HTML. The selName attribute is used to seed the names of the select lists. The names will be generated as follows:
  • selName + "_month"
  • selName + "_day"
  • selName + "_year"
The output HTML will list the select lists in the following order: month day year. A String with the correct HTML for the date selector.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.