freemarker.core

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.core 
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.

Java Source File NameTypeComment
AddConcatExpression.javaClass An operator for the + operator.
AndExpression.javaClass
ArithmeticEngine.javaClass Class to perform arithmetic operations.
ArithmeticExpression.javaClass An operator for arithmetic operations.
Assignment.javaClass An instruction that assigns a literal or reference, to a single-identifier variable.
AssignmentInstruction.javaClass
AttemptBlock.javaClass
BlockAssignment.javaClass
BodyInstruction.javaClass An instruction that processes the nested block within a macro instruction.
BooleanExpression.javaClass
BooleanLiteral.javaClass
BreakInstruction.javaClass Represents a <break> instruction to break out of a loop.
BuiltIn.javaClass
BuiltinVariable.javaClass
Case.javaClass Represents a case in a switch statement.
CollectionAndSequence.javaClass Add sequence capabilities to an existing collection, or vice versa.
CommandLine.javaClass FreeMarker command-line utility, the Main-Class of freemarker.jar.
Comment.javaClass A template element where the content is ignored, a Comment.
ComparisonExpression.javaClass A class that handles comparisons.
CompressedBlock.javaClass An instruction that reduces all sequences of whitespace to a single space or newline.
ConditionalBlock.javaClass An element that represents a conditionally executed block.
Configurable.javaClass This is a common superclass of freemarker.template.Configuration , freemarker.template.Template , and Environment classes. It provides settings that are common to each of them.
CustomAttribute.javaClass A class that allows one to associate custom data with a configuration, a template, or environment.
DebugBreak.javaClass
DefaultToExpression.javaClass
DollarVariable.javaClass An instruction that outputs the value of an Expression.
Dot.javaClass The dot operator.
DynamicKeyName.javaClass A unary operator that uses the string value of an expression as a hash key.
Environment.javaClass Object that represents the runtime environment during template processing. For every invocation of a Template.process() method, a new instance of this object is created, and then discarded when process() returns. This object stores the set of temporary variables created by the template, the value of settings set by the template, the reference to the data model root, etc.
EscapeBlock.javaClass Representation of the compile-time Escape directive.
EvaluationUtil.javaClass
ExistsExpression.javaClass
Expression.javaClass An abstract class for nodes in the parse tree that represent a FreeMarker expression.
FallbackInstruction.javaClass
FlushInstruction.javaClass An instruction that flushes the output stream.
FMParser.javaClass This class is generated by JavaCC from a grammar file.
FMParserConstants.javaInterface
FMParserTokenManager.javaClass
FreeMarkerTree.javaClass
HashLiteral.javaClass
Identifier.javaClass
IfBlock.javaClass A instruction that handles if-elseif-else blocks.
Include.javaClass An instruction that gets another template and processes it within the current template.
Interpret.javaClass A method that takes a parameter and evaluates it as a scalar, then treats that scalar as template source code and returns a transform model that evaluates the template in place. The template inherits the configuration and environment of the executing template.
InvalidReferenceException.javaClass A subclass of TemplateException that says there is no value associated with a given expression.
IteratorBlock.javaClass
LibraryLoad.javaClass An instruction that gets another template and processes it within the current template.
ListLiteral.javaClass
LocalContext.javaInterface An interface that represents a local context.
Macro.javaClass An element representing a macro declaration.
MethodCall.javaClass A unary operator that calls a TemplateMethodModel.
MixedContent.javaClass Encapsulates an array of TemplateElement objects.
NewBI.javaClass A built-in that allows us to instantiate an instance of a java class.
NodeBuiltins.javaClass A holder for builtins that operate on TemplateNodeModels.
NoEscapeBlock.javaClass
NonBooleanException.javaClass A subclass of TemplateException that indicates that the internals expected an expression to evaluate to a boolean value and it didn't.
NonNumericalException.javaClass A subclass of TemplateException that indicates that the internals expected an expression to evaluate to a numerical value and it didn't.
NonStringException.javaClass A subclass of TemplateException that indicates that the internals expected an expression to evaluate to a string or numeric value and it didn't.
NotExpression.javaClass
NumberLiteral.javaClass A simple implementation of the TemplateNumberModel interface.
NumericalBuiltins.javaClass A holder for builtins that operate exclusively on TemplateSequenceModels.
NumericalOutput.javaClass An instruction that outputs the value of a numerical expression.
NumericalRange.javaClass A class that represents a Range between two integers. inclusive of the end-points.
OrExpression.javaClass
ParentheticalExpression.javaClass
ParseException.javaClass This exception is thrown when parse errors are encountered.
PropertySetting.javaClass An instruction that sets a property of the template rendering environment.
Range.javaClass A class that represents a Range between two integers.
RecoveryBlock.javaClass
RecurseNode.javaClass An instruction to visit the children of a node.
RegexBuiltins.javaClass This is a first-pass implementation of regular expression support. It is subject to change based on community feedback.
ReturnInstruction.javaClass Represents a <return> instruction to jump out of a macro.
SequenceBuiltins.javaClass A holder for builtins that operate exclusively on TemplateSequenceModels.
SimpleCharStream.javaClass An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
StopException.javaClass This exception is thrown when a <stop> directive is encountered.
StopInstruction.javaClass Represents a <stop> instruction to abort template processing.
StringArraySequence.javaClass Sequence variable implementation that wraps a String[] with relatively low resource utilization.
StringBuiltins.javaClass A holder for builtins that operate exclusively on strings.
StringLiteral.javaClass
SwitchBlock.javaClass An instruction representing a switch-case structure.
TemplateElement.javaClass Objects that represent elements in the compiled tree representation of the template necessarily descend from this abstract class.
TemplateObject.javaClass Objects that represent instructions or expressions in the compiled tree representation of the template all descend from this abstract base class.
TextBlock.javaClass A TemplateElement representing a block of plain text.
Token.javaClass Describes the input token stream.
TokenMgrError.javaClass
TransformBlock.javaClass
TrimInstruction.javaClass An instruction that indicates that that opening and trailing whitespace on this line should be trimmed.
UnaryPlusMinusExpression.javaClass
UnifiedCall.javaClass An element for the unified macro/transform syntax.
VisitNode.javaClass An instruction to visit an XML node.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.