freemarker 2.3.10

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 » freemarker 2.3.10 
freemarker
License:BSD-style license
URL:http://freemarker.org
Description:Java template engine; a generic tool to generate text output (HTML, RTF, source code, etc.).
Package NameComment
freemarker.cache

Contains classes and interfaces that deal with template loading and caching. Beside the actual template cache, it contains loaders that can load template files from the file system, from the classpath, or from a web application context. If you have specific needs, you can plug custom template loaders into the system by implementing the template loader interface.

freemarker.core

This package contains FreeMarker's core parsing/rendering functionality; most casual users do not need to be aware of the classes in this package, and can restrict their attention to the {@link freemarker.template} package.

freemarker.debug
freemarker.debug.impl
freemarker.ext.ant

An ant task that can be used to invoke the FreeMarker engine to generate documentation.

freemarker.ext.beans

Provides model implementations that allow access to arbitrary Java objects.

Most of the issues dealing with beans are handled by the {@link freemarker.ext.beans.BeansWrapper#wrap(Object)}and {@link freemarker.ext.beans.BeansWrapper#getStaticModels()} methods. In normal cases, these are the only methods you should use to turn an arbitrary Java object into a FreeMarker {@link freemarker.template.TemplateModel}. Additionally, you can manually create instance of any wrapper class using its constructors. Note, however that in such cases you bypass the eventual model caching of the wrapper.

freemarker.ext.dom
freemarker.ext.jdom

Provides adapter for JDOM including support for writing XML fragments, listing nodes, traversal, copying, and filtering, and a full XPath support.

freemarker.ext.jsp

Classes for two-way FreeMarker-JSP integration. It contains both a JSP custom tag that allows embedding of FreeMarker templates inside JSP pages, as well as the infrastructure that allows JSP custom tags to be used inside FreeMarker templates.

freemarker.ext.jython

Provides model implementations that allow access to arbitrary Jython objects.

Most of the issues dealing with Jython objects are handled by the {@link freemarker.ext.jython.JythonWrapper#wrap(Object)} method. In normal cases, this is the only method you should use to turn an arbitrary Jython object into a FreeMarker {@link freemarker.template.TemplateModel}. Additionally, you can manually create instances of any wrapper class using its constructors.

freemarker.ext.rhino

Rhino (ECMAScript) support; Experimental: no backward compatibility guarantees; any feedback is highly welcome!

freemarker.ext.servlet

Provides a generic purpose servlet that generates dynamic response using FreeMarker.

@author Attila Szegedi, szegedia@freemail.hu
freemarker.ext.util
freemarker.ext.xml

Provides data model adapter for DOM, dom4j and JDOM; three widely used XML document object models. Supports outputting of transformed XML documents, various node traversals, as well as full XPath support.

freemarker.log

Provides the FreeMarker logging facility.

freemarker.template

This package contains the core API's that most users will use.

The typical usage pattern is to be vended {@link freemarker.template.Template} objects by the {@link freemarker.template.Configuration} object. The Template class represents a template file compiled into an efficient data structure for later use. Processing of compiled templates is very fast.

For complete instructions on how to use this package, please see the manual.

freemarker.template.utility

Utility classes that may be used to customize aspects of FreeMarker. These implement the pluggable interfaces found in FreeMarker, including TemplateTransformModel and TemplateExceptionListener.

@author Nicholas Cull
freemarker.testcase

Test cases for various aspects of the FreeMarker implementation. These use the JUnit testing framework to carry out and report on tests.

To run the tests:

  • Get a copy of JUnit from the JUnit web site
  • Modify testcase.properties to point to the FreeMarker testcase directory on your local machine
  • Run one of the TestRunners in JUnit, such as junit.swingui.TestRunner
  • Point the TestRunner at freemarker.testcase.FreeMarkerTestSuite
  • Look for green...

Any errors will result in the text of the failed test case(s) appearing in your current working directory. From there it should be possible to diagnose the cause of the failure.

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