Java Doc for VelocityFormatter.java in  » Template-Engine » Velocity » org » apache » velocity » app » tools » 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 » Template Engine » Velocity » org.apache.velocity.app.tools 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.velocity.app.tools.VelocityFormatter

VelocityFormatter
public class VelocityFormatter (Code)
Formatting tool for inserting into the Velocity WebContext. Can format dates or lists of objects.

Here's an example of some uses:

 $formatter.formatShortDate($object.Date)
 $formatter.formatLongDate($db.getRecord(232).getDate())
 $formatter.formatArray($array)
 $formatter.limitLen(30, $object.Description)
 

author:
   Sean Legassick
author:
   Daniel Rall
version:
   $Id: VelocityFormatter.java 463298 2006-10-12 16:10:32Z henning $

Inner Class :public class VelocityAlternator
Inner Class :public class VelocityAutoAlternator extends VelocityAlternator

Field Summary
 Contextcontext
    

Constructor Summary
public  VelocityFormatter(Context context)
     Constructor needs a backpointer to the context.

Method Summary
public  StringformatArray(Object array)
     Formats an array into the form "A, B and C".
Parameters:
  array - An Object.
public  StringformatArray(Object array, String delim)
     Formats an array into the form "A<delim>B<delim>C".
Parameters:
  array - An Object.
Parameters:
  delim - A String.
public  StringformatArray(Object array, String delim, String finaldelim)
     Formats an array into the form "A<delim>B<finaldelim>C".
Parameters:
  array - An Object.
Parameters:
  delim - A String.
Parameters:
  finaldelim - A String.
public  StringformatLongDate(Date date)
     Formats a date in DateFormat.LONG style.
Parameters:
  date - The date to format.
public  StringformatLongDateTime(Date date)
     Formats a date/time in 'long' style.
Parameters:
  date - The date to format.
public  StringformatShortDate(Date date)
     Formats a date in DateFormat.SHORT style.
Parameters:
  date - The date to format.
public  StringformatShortDateTime(Date date)
     Formats a date/time in 'short' style.
Parameters:
  date - The date to format.
public  StringformatVector(List list)
     Formats a vector into the form "A, B and C".
Parameters:
  list - The list of elements to format.
public  StringformatVector(List list, String delim)
     Formats a vector into the form "A<delim>B<delim>C".
Parameters:
  list - The list of elements to format.
Parameters:
  delim - A String.
public  StringformatVector(List list, String delim, String finaldelim)
     Formats a list into the form "Adelim>B<finaldelim>C".
Parameters:
  list - The list of elements to format.
Parameters:
  delim - A String.
Parameters:
  finaldelim - A String.
public  ObjectisNull(Object o, Object dflt)
     Returns a default value if the object passed is null.
public  StringlimitLen(int maxlen, String string)
     Limits 'string' to 'maxlen' characters.
public  StringlimitLen(int maxlen, String string, String suffix)
     Limits 'string' to 'maxlen' character.
public  StringmakeAlternator(String name, String alt1, String alt2)
     Makes an alternator object that alternates between two values.

Example usage in a Velocity template:

 <table>
 $formatter.makeAlternator("rowcolor", "#c0c0c0", "#e0e0e0")
 #foreach $item in $items
 #begin
 <tr><td bgcolor="$rowcolor">$item.Name</td></tr>
 $rowcolor.alternate()
 #end
 </table>
 

Parameters:
  name - The name for the alternator int the context.
Parameters:
  alt1 - The first alternate.
Parameters:
  alt2 - The second alternate.
public  StringmakeAlternator(String name, String alt1, String alt2, String alt3)
     Makes an alternator object that alternates between three values.
public  StringmakeAlternator(String name, String alt1, String alt2, String alt3, String alt4)
     Makes an alternator object that alternates between four values.
public  StringmakeAutoAlternator(String name, String alt1, String alt2)
     Makes an alternator object that alternates between two values automatically.

Field Detail
context
Context context(Code)




Constructor Detail
VelocityFormatter
public VelocityFormatter(Context context)(Code)
Constructor needs a backpointer to the context.
Parameters:
  context - A Context.




Method Detail
formatArray
public String formatArray(Object array)(Code)
Formats an array into the form "A, B and C".
Parameters:
  array - An Object. A String.



formatArray
public String formatArray(Object array, String delim)(Code)
Formats an array into the form "A<delim>B<delim>C".
Parameters:
  array - An Object.
Parameters:
  delim - A String. A String.



formatArray
public String formatArray(Object array, String delim, String finaldelim)(Code)
Formats an array into the form "A<delim>B<finaldelim>C".
Parameters:
  array - An Object.
Parameters:
  delim - A String.
Parameters:
  finaldelim - A String. A String.



formatLongDate
public String formatLongDate(Date date)(Code)
Formats a date in DateFormat.LONG style.
Parameters:
  date - The date to format. The formatted date as text.



formatLongDateTime
public String formatLongDateTime(Date date)(Code)
Formats a date/time in 'long' style.
Parameters:
  date - The date to format. The formatted date as text.



formatShortDate
public String formatShortDate(Date date)(Code)
Formats a date in DateFormat.SHORT style.
Parameters:
  date - The date to format. The formatted date as text.



formatShortDateTime
public String formatShortDateTime(Date date)(Code)
Formats a date/time in 'short' style.
Parameters:
  date - The date to format. The formatted date as text.



formatVector
public String formatVector(List list)(Code)
Formats a vector into the form "A, B and C".
Parameters:
  list - The list of elements to format. A String.



formatVector
public String formatVector(List list, String delim)(Code)
Formats a vector into the form "A<delim>B<delim>C".
Parameters:
  list - The list of elements to format.
Parameters:
  delim - A String. A String.



formatVector
public String formatVector(List list, String delim, String finaldelim)(Code)
Formats a list into the form "Adelim>B<finaldelim>C".
Parameters:
  list - The list of elements to format.
Parameters:
  delim - A String.
Parameters:
  finaldelim - A String. A String.



isNull
public Object isNull(Object o, Object dflt)(Code)
Returns a default value if the object passed is null.
Parameters:
  o -
Parameters:
  dflt - Object or default value when object is null.



limitLen
public String limitLen(int maxlen, String string)(Code)
Limits 'string' to 'maxlen' characters. If the string gets curtailed, "..." is appended to it.
Parameters:
  maxlen - An int with the maximum length.
Parameters:
  string - A String. A String.



limitLen
public String limitLen(int maxlen, String string, String suffix)(Code)
Limits 'string' to 'maxlen' character. If the string gets curtailed, 'suffix' is appended to it.
Parameters:
  maxlen - An int with the maximum length.
Parameters:
  string - A String.
Parameters:
  suffix - A String. A String.



makeAlternator
public String makeAlternator(String name, String alt1, String alt2)(Code)
Makes an alternator object that alternates between two values.

Example usage in a Velocity template:

 <table>
 $formatter.makeAlternator("rowcolor", "#c0c0c0", "#e0e0e0")
 #foreach $item in $items
 #begin
 <tr><td bgcolor="$rowcolor">$item.Name</td></tr>
 $rowcolor.alternate()
 #end
 </table>
 

Parameters:
  name - The name for the alternator int the context.
Parameters:
  alt1 - The first alternate.
Parameters:
  alt2 - The second alternate. The newly created instance.



makeAlternator
public String makeAlternator(String name, String alt1, String alt2, String alt3)(Code)
Makes an alternator object that alternates between three values.
Parameters:
  name -
Parameters:
  alt1 -
Parameters:
  alt2 -
Parameters:
  alt3 - alternated object.
See Also:   VelocityFormatter.makeAlternator(String name,String alt1,String alt2)



makeAlternator
public String makeAlternator(String name, String alt1, String alt2, String alt3, String alt4)(Code)
Makes an alternator object that alternates between four values.
Parameters:
  name -
Parameters:
  alt1 -
Parameters:
  alt2 -
Parameters:
  alt3 -
Parameters:
  alt4 - Alternated object.
See Also:   VelocityFormatter.makeAlternator(String name,String alt1,String alt2)



makeAutoAlternator
public String makeAutoAlternator(String name, String alt1, String alt2)(Code)
Makes an alternator object that alternates between two values automatically.
Parameters:
  name -
Parameters:
  alt1 -
Parameters:
  alt2 - Alternated object.
See Also:   VelocityFormatter.makeAlternator(String name,String alt1,String alt2)



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.