net.sourceforge.jrefactory.ast

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 » UML » jrefactory » net.sourceforge.jrefactory.ast 
net.sourceforge.jrefactory.ast
Java Source File NameTypeComment
AccessNode.javaClass This class is the base for all Nodes that contain modifiers ("public", "native", etc.).
ASTActualTypeArgument.javaClass Stores an Actual Type Parameter (new to JDK 1.5).
ASTAdditiveExpression.javaClass Stores an additive expression consiting of a list of MultiplicativeExpression (contained in the children) separated by operators ("+" "-") contained in the list of names.
ASTAllocationExpression.javaClass Holds an expression where a new object is allocated.
ASTAndExpression.javaClass Holds an expression held together by & binary operator.
ASTAnnotation.javaClass
ASTAnnotationMethodDeclaration.javaClass
ASTAnnotationTypeDeclaration.javaClass
ASTAnnotationTypeMemberDeclaration.javaClass
ASTArgumentList.javaClass
ASTArguments.javaClass Holds the argument list that contains the specific arguments of a method invocation.
ASTArrayDimsAndInits.javaClass Holds the array dimensions and the initialization for the array.
ASTArrayInitializer.javaClass
ASTAssertionStatement.javaClass Allows assertions to be thrown.
ASTAssignmentOperator.javaClass This node contains some type of assignment operator for instance = or +=.
ASTBlock.javaClass Contains a block ("{" ...
ASTBlockStatement.javaClass Blocks are made up of BlockStatements.
ASTBooleanLiteral.javaClass
ASTBreakStatement.javaClass Contains a break statement.
ASTCastExpression.javaClass Casts an object or a primitive type to a different object or primitive type.
ASTClassBody.javaClass Stores the class body.
ASTClassBodyDeclaration.javaClass Each class body is made up of a number of class body declarations.
ASTClassDeclaration.javaClass Holds a class declaration.
ASTClassOrInterfaceType.javaClass
ASTCompilationUnit.javaClass Top level unit for compilation which is able to sort the import statements.
ASTConditionalAndExpression.javaClass
ASTConditionalExpression.javaClass Expression built from ? and : to do a small if then else operation inside an expression.
ASTConditionalOrExpression.javaClass Conditional operation that works with boolean values created with the "||" operator.
ASTConstantDeclaration.javaClass
ASTConstructorDeclaration.javaClass
ASTContinueStatement.javaClass Stores a continue statement.
ASTDoStatement.javaClass Stores a do { ...
ASTEmptyStatement.javaClass Stores an empty statement.
ASTEnumDeclaration.javaClass Stores an enum declaration.
ASTEnumElement.javaClass This holds an element of an enumeration.
ASTEqualityExpression.javaClass Expression that contains == or !=.
ASTExclusiveOrExpression.javaClass Expression of integer values which is combined with the ^ (xor) operator.
ASTExplicitConstructorInvocation.javaClass Holds an invocation of super() or this() in a constructor.
ASTExpression.javaClass This is the base structure for an expression.
ASTFieldDeclaration.javaClass Holds a field declaration.
ASTForInit.javaClass
ASTFormalParameter.javaClass
ASTFormalParameters.javaClass
ASTForStatement.javaClass
ASTForUpdate.javaClass
ASTGenericDeclaration.javaClass A node representing a Generic Declaration.
ASTGenericDeclarationPart.javaClass A part of a generic declaration.
ASTGenericNameList.javaClass Contains a list of ClassOrInterfaceType as its children.
ASTIdentifier.javaClass This node holds an identifier.
ASTIfStatement.javaClass Stores an if statement.
ASTImportDeclaration.javaClass Stores an import declaration that appears at the beginning of a java file.
ASTInclusiveOrExpression.javaClass Stores a binary operation that performs a bitwise or expressed with the | operator.
ASTInitializer.javaClass Stores a static or dynamic initializer that is contained within the class.
ASTInstanceOfExpression.javaClass
ASTInterfaceBody.javaClass Contains the body of the interface.
ASTInterfaceDeclaration.javaClass Holds an interface declaration.
ASTInterfaceMemberDeclaration.javaClass
ASTJSPBody.javaClass Stores the class body.
ASTLabeledStatement.javaClass A statement that has been labeled.
ASTLiteral.javaClass Contains a constant or literal value in the code.
ASTLocalVariableDeclaration.javaClass
ASTMemberValue.javaClass
ASTMemberValueArrayInitializer.javaClass
ASTMemberValuePair.javaClass
ASTMemberValuePairs.javaClass
ASTMethodDeclaration.javaClass
ASTMethodDeclarator.javaClass
ASTMultiplicativeExpression.javaClass Expression consisting of a list of UnaryExpression (contained in the children) separated by operators ("*", "/" or "%") contained in the list of names.
ASTName.javaClass Stores a name.
ASTNameList.javaClass Contains a list of names contained in the children, for instance for the interfaces that a class implements.
ASTNestedClassDeclaration.javaClass
ASTNestedInterfaceDeclaration.javaClass
ASTNullLiteral.javaClass
ASTPackageDeclaration.javaClass
ASTPostfixExpression.javaClass
ASTPreDecrementExpression.javaClass Expression to decrement a value before inserting it's value into the expression.
ASTPreIncrementExpression.javaClass
ASTPrimaryExpression.javaClass The primary expression that actually contains the variables or methods involved in the expression.
ASTPrimaryPrefix.javaClass The prefix expression.
ASTPrimarySuffix.javaClass
ASTPrimitiveType.javaClass
ASTReferenceType.javaClass
ASTReferenceTypeList.javaClass
ASTRelationalExpression.javaClass
ASTResultType.javaClass Contains void, a primitive type, or a named type and can be used as a return value from a method.
ASTReturnStatement.javaClass
ASTShiftExpression.javaClass
ASTStatement.javaClass
ASTStatementExpression.javaClass
ASTStatementExpressionList.javaClass
ASTSwitchLabel.javaClass
ASTSwitchStatement.javaClass
ASTSynchronizedStatement.javaClass
ASTThrowStatement.javaClass
ASTTryStatement.javaClass
ASTType.javaClass
ASTTypeArguments.javaClass Type Arguments.
ASTTypeDeclaration.javaClass
ASTTypeParameter.javaClass A Type Parameter.
ASTTypeParameterList.javaClass A list of Type Parameters which are contained in this nodes children.
ASTTypeParameters.javaClass Contains a TypeParameterList as its only child.
ASTUnaryExpression.javaClass Declares an expression that takes only one argument.
ASTUnaryExpressionNotPlusMinus.javaClass An expression that takes only a single argument that is not + or minus.
ASTUnmodifiedClassDeclaration.javaClass
ASTUnmodifiedInterfaceDeclaration.javaClass
ASTVariableDeclarator.javaClass
ASTVariableDeclaratorId.javaClass Declares a variable.
ASTVariableInitializer.javaClass
ASTWhileStatement.javaClass
ModifierAdapter.javaClass
ModifierHolder.javaInterface
NamedNode.javaClass Declares node with a name.
Node.javaInterface All AST nodes must implement this interface.
Scope.javaInterface Provides methods which all scopes must implement.
SimpleNode.javaClass This object is the base class for all items in the AST (abstract syntax tree).
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.