com.go.tea.parsetree

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 » Tea » com.go.tea.parsetree 
com.go.tea.parsetree
Java Source File NameTypeComment
AndExpression.javaClass AndExpression defines a logical "and" operation with short-circuit semantics.
ArithmeticExpression.javaClass ArithmeticExpression defines addition, subtraction, multiplication, division or remainder operations.
ArrayLookup.javaClass An ArrayLookup can access indexed properties on objects.
AssignmentStatement.javaClass AssignmentStatements can only assign values to variables, and not to array elements.
BinaryExpression.javaClass A BinaryExpression contains a left expression, a right expression and an operator.
BinaryLogicalExpression.javaClass
Block.javaClass A Block is a StatementList that most likely appeared in the source file delimited by braces.
BooleanLiteral.javaClass BooleanLiterals can only have one of two values, true or false.
BreakStatement.javaClass
author:
   Sean T.
CallExpression.javaClass
ConcatenateExpression.javaClass A ConcatenateExpression takes two Expressions, converts their values to strings and returns a new string with the concatenated result. The operator should only be Token.CONCAT.
ExceptionGuardStatement.javaClass A statement that catches instances of Exception, calls ThreadGroup.uncaughtException, and moves on.
Expression.javaClass An Expression is a piece of code that, when executed, produces a value.
ExpressionList.javaClass An ExpressionList wraps a list of expressions that may appear in a call statement or new array expression.
ExpressionStatement.javaClass An ExpressionStatement allows an Expression to be converted to a Statement.
ForeachStatement.javaClass A ForeachStatement iterates over the values of an array or a Collection, storing each value in a variable, allowing a statement or statements to operate on each.
FunctionCallExpression.javaClass A CallExpression to a function.
IfStatement.javaClass An IfStatement consists of a condition, a "then" part and an "else" part. Both the then and else parts are optional, but a parser should never create an IfStatement without a then part.
Literal.javaClass A literal is an expression that has a constant value.
Logical.javaInterface An interface that marks an expression as performing a boolean logic operation.
Lookup.javaClass A Lookup can access properties on objects.
Name.javaClass A Name just associates a String with a SourceInfo object.
NegateExpression.javaClass NegateExpression is a simple unary expression that calculates the negative value of an expression.
NewArrayExpression.javaClass An expression that evaluates to a new array or Map of values.
Node.javaClass The superclass of all parse tree nodes.
NodeVisitor.javaInterface A NodeVisitor enables operations to be performed on a parse tree. The Visitor design pattern is discussed in detail in Design Patterns (ISBN 0-201-63361-2) by Gamma, Helm, Johnson and Vlissides.

The traditional operations performed on parse trees are type checking and code generation.

NotExpression.javaClass NotExpression is a simple unary expression that calculates the logical "not" value of an expression.
NullLiteral.javaClass A Literal representing the null Object.
NumberLiteral.javaClass Base class for all Literals that have a numeric type.
OrExpression.javaClass OrExpression defines a logical "or" operation with short-circuit semantics.
ParenExpression.javaClass A ParenExpression is a thin wrapper around an Expression that was delimited by parenthesis in the source code.
RelationalExpression.javaClass RelationalExpression defines seven operations, "==", "!=", "<", ">", "<=" ">=" and "isa".
ReturnStatement.javaClass A ReturnStatement allows the values of Expressions to be returned from an execution scope.
Statement.javaClass A Statement represents a stand-alone unit of code.
StatementList.javaClass A StatementList wraps a list of statements as if they were a single statement.
StringLiteral.javaClass A StringLiteral is a constant string of characters, usually delimited by quotes in a source file.
SubstitutionStatement.javaClass SubstitutionStatement is represented as '...' in a template.
Template.javaClass Template is the main container node for Tea templates.
TemplateCallExpression.javaClass A CallExpression to a template is specified in a template with the "call" keyword.
TreeMutator.javaClass TreeMutator is similar to TreeWalker TreeWalker in that it traverses a parse tree in canonocal order, and only a few visit methods should be overridden.
TreeWalker.javaClass A TreeWalker traverses a parse tree in its canonical order.
TypeName.javaClass
Variable.javaClass A Variable represents a variable declaration.
VariableRef.javaClass VariableRef is used to reference declared Variables.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.