Java Doc for JxpProcessor.java in  » Template-Engine » jxp » org » onemind » jxp » 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 » jxp » org.onemind.jxp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.onemind.jxp.JxpProcessor

JxpProcessor
public class JxpProcessor implements JxpParserVisitor(Code)
The jxp processor
author:
   TiongHiang Lee (thlee@onemindsoft.org)



Constructor Summary
public  JxpProcessor(JxpContext context)
    

Method Summary
protected  Objectassign(SimpleNode node, Object value)
    
protected  ObjectassignVariable(String name, Object value)
    
protected  ObjectcallFunction(String methodName, Object[] args)
     Call the function of the processor.
public  voiddeclareFunctionLocals(String functionName, SimpleNode params, Object[] args)
    
public  voidflush()
    
final public  JxpContextgetContext()
    
public  JxpProcessingContextgetCurrentContext()
    
public  MapgetEnvironment()
    
public  CountergetMethodStats()
    
protected  ObjectincludeCall(String id)
    
protected  Objectinstantiate(Class type, Object[] args)
    
protected  ObjectinvokeMethod(Object obj, String methodName, Object[] args)
    
final protected  booleanisCheckFunctionArgumentType()
    
protected  ObjectlookupVariable(String variableName)
    
public static  voidmain(String[] args)
    
protected  voidprint(Object o)
     print the object by printing o.toString() using writer of current context.
protected  voidprint(String s)
    
protected  voidprintln(Object o)
    
protected  voidprintln(String s)
    
public  Objectprocess(String id, Writer writer)
    
public  Objectprocess(String id, Writer writer, Map env)
    
protected  Objectprocess(String id, JxpProcessingContext context)
    
protected  ObjectprocessCall(String id)
    
protected  Object[]resolveArguments(AstArguments node, JxpProcessingContext context)
    
protected  int[]resolveArrayDims(AstArrayDims node, JxpProcessingContext context)
    
protected  AssignableresolveAssignmentTarget(SimpleNode node, boolean throwException)
     Resolve the assignment target.
final protected  ClassresolveClass(String className)
     Resolve the class.
protected  ObjectresolveField(Object obj, String fieldName)
     Resolve the field on and object.
protected  ObjectresolveName(List l)
     Resolve a object given the name in current processing context.
final protected  voidsetCheckFunctionArgumentType(boolean checkFunctionArgumentType)
    
public  voidsetDoMethodStats(boolean flag)
    
public  Objectvisit(AstArguments node, Object data)
    
public  Objectvisit(AstArrayAllocationExpression node, Object data)
    
public  Objectvisit(AstArrayDims node, Object data)
    
public  Objectvisit(AstArrayInitializer node, Object data)
    
public  Objectvisit(AstArrayReference node, Object data)
    
public  Objectvisit(AstAssertStatement node, Object data)
    
public  Objectvisit(AstAssignExpression node, Object data)
    
public  Objectvisit(AstBitwiseAndAssignExpression node, Object data)
    
public  Objectvisit(AstBitwiseAndExpression node, Object data)
    
public  Objectvisit(AstBitwiseComplementExpression node, Object data)
    
public  Objectvisit(AstBitwiseOrAssignExpression node, Object data)
    
public  Objectvisit(AstBitwiseOrExpression node, Object data)
    
public  Objectvisit(AstBitwiseXOrAssignExpression node, Object data)
    
public  Objectvisit(AstBitwiseXOrExpression node, Object data)
    
public  Objectvisit(AstBlock node, Object data)
    
public  Objectvisit(AstBreakStatement node, Object data)
    
public  Objectvisit(AstCase node, Object data)
    
public  Objectvisit(AstCastExpression node, Object data)
    
public  Objectvisit(AstCatchBlock node, Object data)
    
public  Objectvisit(AstConditionalAndExpression node, Object data)
    
public  Objectvisit(AstConditionalOrExpression node, Object data)
    
public  Objectvisit(AstContent node, Object data)
    
public  Objectvisit(AstContinueStatement node, Object data)
    
public  Objectvisit(AstDivideAssignExpression node, Object data)
    
public  Objectvisit(AstDivideExpression node, Object data)
    
public  Objectvisit(AstDoStatement node, Object data)
    
public  Objectvisit(AstEmptyStatement node, Object data)
    
public  Objectvisit(AstEQExpression node, Object data)
    
public  Objectvisit(AstField node, Object data)
    
public  Objectvisit(AstFieldDeclaration node, Object data)
    
public  Objectvisit(AstFieldReference node, Object data)
    
public  Objectvisit(AstFinallyBlock node, Object data)
    
public  Objectvisit(AstForInit node, Object data)
    
public  Objectvisit(AstFormalParameter node, Object data)
    
public  Objectvisit(AstFormalParameters node, Object data)
    
public  Objectvisit(AstForStatement node, Object data)
    
public  Objectvisit(AstForUpdate node, Object data)
    
public  Objectvisit(AstGEExpression node, Object data)
    
public  Objectvisit(AstGTExpression node, Object data)
    
public  Objectvisit(AstHookExpression node, Object data)
    
public  Objectvisit(AstIfStatement node, Object data)
    
public  Objectvisit(AstImportDeclaration node, Object data)
    
public  Objectvisit(AstInstanceOfExpression node, Object data)
    
public  Objectvisit(AstJxpDocument node, Object data)
    
public  Objectvisit(AstLabeledStatement node, Object data)
    
public  Objectvisit(AstLEExpression node, Object data)
    
public  Objectvisit(AstLiteral node, Object data)
    
public  Objectvisit(AstLogicalComplementExpression node, Object data)
    
public  Objectvisit(AstLShiftAssignExpression node, Object data)
    
public  Objectvisit(AstLShiftExpression node, Object data)
    
public  Objectvisit(AstLTExpression node, Object data)
    
public  Objectvisit(AstMethodCall node, Object data)
    
public  Objectvisit(AstFunctionDeclaration node, Object data)
    
public  Objectvisit(AstFunctionDeclarator node, Object data)
    
public  Objectvisit(AstMethodInvocation node, Object data)
    
public  Objectvisit(AstMinusAssignExpression node, Object data)
    
public  Objectvisit(AstMinusExpression node, Object data)
    
public  Objectvisit(AstMultiplyAssignExpression node, Object data)
    
public  Objectvisit(AstMultiplyExpression node, Object data)
    
public  Objectvisit(AstName node, Object data)
    
public  Objectvisit(AstNameList node, Object data)
    
public  Objectvisit(AstNEExpression node, Object data)
    
public  Objectvisit(AstObjectAllocationExpression node, Object data)
    
public  Objectvisit(AstPlusAssignExpression node, Object data)
    
public  Objectvisit(AstPlusExpression node, Object data)
    
public  Objectvisit(AstPostDecrementExpression node, Object data)
    
public  Objectvisit(AstPostIncrementExpression node, Object data)
    
public  Objectvisit(AstPreDecrementExpression node, Object data)
    
public  Objectvisit(AstPreIncrementExpression node, Object data)
    
public  Objectvisit(AstPrimaryExpression node, Object data)
    
public  Objectvisit(AstPrimarySuffix node, Object data)
    
public  Objectvisit(AstPrimitiveType node, Object data)
    
public  Objectvisit(AstPrintStatement node, Object data)
    
public  Objectvisit(AstRemainderExpression node, Object data)
    
public  Objectvisit(AstRemAssignExpression node, Object data)
    
public  Objectvisit(AstReturnStatement node, Object data)
    
public  Objectvisit(AstRSignedShiftAssignExpression node, Object data)
    
public  Objectvisit(AstRSignedShiftExpression node, Object data)
    
public  Objectvisit(AstRUnsignedShiftAssignExpression node, Object data)
    
public  Objectvisit(AstRUnsignedShiftExpression node, Object data)
    
public  Objectvisit(AstStatementExpressionList node, Object data)
    
public  Objectvisit(AstSwitchStatement node, Object data)
    
public  Objectvisit(AstSynchronizedStatement node, Object data)
    
public  Objectvisit(AstThrowStatement node, Object data)
    
public  Objectvisit(AstTryStatement node, Object data)
    
public  Objectvisit(AstUnaryMinusExpression node, Object data)
    
public  Objectvisit(AstUnaryPlusExpression node, Object data)
    
public  Objectvisit(AstVariableDeclarator node, Object data)
    
public  Objectvisit(AstWhileStatement node, Object data)
    
public  Objectvisit(SimpleNode node, Object data)
    
public  Objectvisit(AstType node, Object data)
    
public  Objectvisit(AstVariableDeclaratorId node, Object data)
    
public  Objectvisit(AstExitStatement node, Object data)
    
public  Objectvisit(AstStaticImportDeclaration node, Object data)
    
public  Objectvisit(AstVariableParameters node, Object data)
    
public  Objectvisit(AstEnhancedForStatement node, Object data)
    
public  Objectvisit(AstNamedArgument node, Object data)
    
public  Objectvisit(AstPageDirective node, Object data)
    
public  Objectvisit(AstIncludeDirective node, Object data)
    
public  Objectvisit(AstIsEmptyExpression node, Object data)
    


Constructor Detail
JxpProcessor
public JxpProcessor(JxpContext context)(Code)
Constructor
Parameters:
  source - the page source




Method Detail
assign
protected Object assign(SimpleNode node, Object value) throws ProcessingException(Code)
Assign the value assignable target node to the value
Parameters:
  node - the assignable target
Parameters:
  value - the value to assign the value assinged
throws:
  ProcessingException - if the node is not an assignable



assignVariable
protected Object assignVariable(String name, Object value)(Code)
Assign a variable in a current nametable stack to the value
Parameters:
  name - the variable name
Parameters:
  value - the value the value assigned



callFunction
protected Object callFunction(String methodName, Object[] args) throws Exception(Code)
Call the function of the processor. Call predefined print or println if the method name matched. Otherwise, reflection will be used on the processor to invoke method
Parameters:
  methodName - the method name
Parameters:
  args - the arguments the value returned by the method call
throws:
  Exception - if there's problem calling method



declareFunctionLocals
public void declareFunctionLocals(String functionName, SimpleNode params, Object[] args) throws Exception(Code)
Create the function environment
Parameters:
  params - the parameters
Parameters:
  args - the arguments



flush
public void flush() throws IOException(Code)
Flush the writer
throws:
  IOException - if there's io exception



getContext
final public JxpContext getContext()(Code)
Get the source the source



getCurrentContext
public JxpProcessingContext getCurrentContext()(Code)
Get the current processing context the current processing context



getEnvironment
public Map getEnvironment()(Code)
Get current environment the environment



getMethodStats
public Counter getMethodStats()(Code)
Get the method stats the method stats



includeCall
protected Object includeCall(String id) throws Exception(Code)
Include another page as a part of current page and process it
Parameters:
  id - the id the object
throws:
  Exception - if there's exception



instantiate
protected Object instantiate(Class type, Object[] args) throws Exception(Code)
Instantiate an instance of class type using the arguments
Parameters:
  type - the type to instantiate
Parameters:
  args - the arguments the object instantiated
throws:
  Exception - if there's problem in the instantiation



invokeMethod
protected Object invokeMethod(Object obj, String methodName, Object[] args) throws Exception(Code)
Invoke the method of object obj with given argument
Parameters:
  obj - the object
Parameters:
  methodName - the method name
Parameters:
  args - the arguments the value return by the method invoked
throws:
  Exception - if there's problem invoking the method



isCheckFunctionArgumentType
final protected boolean isCheckFunctionArgumentType()(Code)
Return the checkFunctionArgumentType the checkFunctionArgumentType.



lookupVariable
protected Object lookupVariable(String variableName) throws NoSuchFieldException(Code)
Look up a variable in current nametable stack
Parameters:
  variableName - the variable name the value of the variable
throws:
  NoSuchFieldException - the the variable cannot be found



main
public static void main(String[] args) throws Exception(Code)
process a file
Parameters:
  args - the arguments
throws:
  Exception - if exception



print
protected void print(Object o) throws IOException(Code)
print the object by printing o.toString() using writer of current context. If the object is null, "null" will be printed.
Parameters:
  o - the object
throws:
  IOException - if there's problem doing the printing



print
protected void print(String s) throws IOException(Code)
Print the string using writer of current context
Parameters:
  s - the string
throws:
  IOException - if there's io problem TODO: make to flag IOException to avoid call writes again



println
protected void println(Object o) throws IOException(Code)
print the object with the line delimiter "\n"
Parameters:
  o - the object
throws:
  IOException - if there's problem doing the printing



println
protected void println(String s) throws IOException(Code)
print the object with the line delimiter "\n"
Parameters:
  s - the string
throws:
  IOException - if there's problem doing the printing



process
public Object process(String id, Writer writer) throws Exception(Code)
Process a page with empty environment



process
public Object process(String id, Writer writer, Map env) throws Exception(Code)
process the page identified by id with the context given
Parameters:
  id - the id
Parameters:
  env - the environment value return by this page
throws:
  Exception - if there's problem doing the printing



process
protected Object process(String id, JxpProcessingContext context) throws Exception(Code)
Processing a page identified by id in current context
Parameters:
  id - the id the value return by the processing
throws:
  Exception - if there's problem doing the printing



processCall
protected Object processCall(String id) throws Exception(Code)
Process a page identified by id in current context
Parameters:
  id - the id the value return by the page
throws:
  Exception - if there's problem doing the printing



resolveArguments
protected Object[] resolveArguments(AstArguments node, JxpProcessingContext context) throws Exception(Code)
Resolve the arguments for function or method call
Parameters:
  node - the node
Parameters:
  context - the context object array containing the resolved argument values
throws:
  Exception - if there's problem



resolveArrayDims
protected int[] resolveArrayDims(AstArrayDims node, JxpProcessingContext context) throws Exception(Code)
Resolve the array dimensions needed
Parameters:
  node - the ArrayDims node
Parameters:
  context - the processing context the int array containing the dimensions info
throws:
  Exception - if there's problem resolving the dimension



resolveAssignmentTarget
protected Assignable resolveAssignmentTarget(SimpleNode node, boolean throwException) throws ProcessingException(Code)
Resolve the assignment target. Exception will be thrown if the node is not assignable and throwExcpetion is true. Otherwise null will be return if the node cannot be resolved to assignment target.
Parameters:
  node - the simple node or the target
Parameters:
  throwException - whether to throw exception the target
throws:
  ProcessingException - if the target cannot be resolved



resolveClass
final protected Class resolveClass(String className)(Code)
Resolve the class. Call the current context for resolving since the imports in context specific
Parameters:
  className - the class name the class



resolveField
protected Object resolveField(Object obj, String fieldName) throws Exception(Code)
Resolve the field on and object. Also resolve the array length field
Parameters:
  obj - the object
Parameters:
  fieldName - the field name the field value
throws:
  Exception - if the field cannot be resolved



resolveName
protected Object resolveName(List l) throws Exception(Code)
Resolve a object given the name in current processing context. It cound be variable, or class
Parameters:
  l - containing series of identifier the object associated with the name
throws:
  Exception - if there's problem resolving the name



setCheckFunctionArgumentType
final protected void setCheckFunctionArgumentType(boolean checkFunctionArgumentType)(Code)
Set the checkFunctionArgumentType
Parameters:
  checkFunctionArgumentType - The checkFunctionArgumentType to set.



setDoMethodStats
public void setDoMethodStats(boolean flag)(Code)



visit
public Object visit(AstArguments node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstArgumentsjava.lang.Object)



visit
public Object visit(AstArrayAllocationExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstArrayAllocationExpressionjava.lang.Object)



visit
public Object visit(AstArrayDims node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstArrayDimsjava.lang.Object)



visit
public Object visit(AstArrayInitializer node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstArrayInitializerjava.lang.Object)



visit
public Object visit(AstArrayReference node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstArrayReferencejava.lang.Object)



visit
public Object visit(AstAssertStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstAssertStatementjava.lang.Object)



visit
public Object visit(AstAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstAssignExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseAndAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstAndAssignExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseAndExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstBitAndExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseComplementExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstTildeUnaryExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseOrAssignExpression node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstBitwiseOrAssignExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseOrExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstInclusiveOrExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseXOrAssignExpression node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstBitwiseXOrAssignExpressionjava.lang.Object)



visit
public Object visit(AstBitwiseXOrExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstExclusiveOrExpressionjava.lang.Object)



visit
public Object visit(AstBlock node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstBlockjava.lang.Object)



visit
public Object visit(AstBreakStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstBreakStatementjava.lang.Object)



visit
public Object visit(AstCase node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstCasejava.lang.Object)



visit
public Object visit(AstCastExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstCastExpressionjava.lang.Object)



visit
public Object visit(AstCatchBlock node, Object data) throws Exception(Code)



visit
public Object visit(AstConditionalAndExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstConditionalAndExpressionjava.lang.Object)



visit
public Object visit(AstConditionalOrExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstConditionalOrExpressionjava.lang.Object)



visit
public Object visit(AstContent node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstContentjava.lang.Object)



visit
public Object visit(AstContinueStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstContinueStatementjava.lang.Object)



visit
public Object visit(AstDivideAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstSlashAssignExpressionjava.lang.Object)



visit
public Object visit(AstDivideExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstSlashExpressionjava.lang.Object)



visit
public Object visit(AstDoStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstDoStatementjava.lang.Object)



visit
public Object visit(AstEmptyStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstEmptyStatementjava.lang.Object)



visit
public Object visit(AstEQExpression node, Object data) throws Exception(Code)

See Also:   org.onemind.jxp.parser.JxpParserVisitor.visit(jxp.parser.AstEQExpressionjava.lang.Object)



visit
public Object visit(AstField node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstFieldjava.lang.Object)



visit
public Object visit(AstFieldDeclaration node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstFieldDeclarationjava.lang.Object)



visit
public Object visit(AstFieldReference node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstFieldReferencejava.lang.Object)



visit
public Object visit(AstFinallyBlock node, Object data) throws Exception(Code)



visit
public Object visit(AstForInit node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstForInitjava.lang.Object)



visit
public Object visit(AstFormalParameter node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstFormalParameterjava.lang.Object)



visit
public Object visit(AstFormalParameters node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstFormalParametersjava.lang.Object)



visit
public Object visit(AstForStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstForStatementjava.lang.Object)



visit
public Object visit(AstForUpdate node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstForUpdatejava.lang.Object)



visit
public Object visit(AstGEExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstGEExpressionjava.lang.Object)



visit
public Object visit(AstGTExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstGTExpressionjava.lang.Object)



visit
public Object visit(AstHookExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstHookExpressionjava.lang.Object)



visit
public Object visit(AstIfStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstIfStatementjava.lang.Object)



visit
public Object visit(AstImportDeclaration node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstImportDeclarationjava.lang.Object)



visit
public Object visit(AstInstanceOfExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstInstanceOfExpressionjava.lang.Object)



visit
public Object visit(AstJxpDocument node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstJxpDocumentjava.lang.Object)



visit
public Object visit(AstLabeledStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstLabeledStatementjava.lang.Object)



visit
public Object visit(AstLEExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstLEExpressionjava.lang.Object)



visit
public Object visit(AstLiteral node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstLiteraljava.lang.Object)



visit
public Object visit(AstLogicalComplementExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstBangUnaryExpressionjava.lang.Object)



visit
public Object visit(AstLShiftAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstLShiftAssignExpressionjava.lang.Object)



visit
public Object visit(AstLShiftExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstLShiftExpressionjava.lang.Object)



visit
public Object visit(AstLTExpression node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstLTExpressionjava.lang.Object)



visit
public Object visit(AstMethodCall node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMethodCalljava.lang.Object)



visit
public Object visit(AstFunctionDeclaration node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMethodDeclarationjava.lang.Object)



visit
public Object visit(AstFunctionDeclarator node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMethodDeclaratorjava.lang.Object)



visit
public Object visit(AstMethodInvocation node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMethodInvocationjava.lang.Object)



visit
public Object visit(AstMinusAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMinusAssignExpressionjava.lang.Object)



visit
public Object visit(AstMinusExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMinusExpressionjava.lang.Object)



visit
public Object visit(AstMultiplyAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstStarAssignExpressionjava.lang.Object)



visit
public Object visit(AstMultiplyExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstMultiplyExpressionjava.lang.Object)



visit
public Object visit(AstName node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstNamejava.lang.Object)



visit
public Object visit(AstNameList node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstNameListjava.lang.Object)



visit
public Object visit(AstNEExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstNEExpressionjava.lang.Object)



visit
public Object visit(AstObjectAllocationExpression node, Object data) throws Exception(Code)
(non-Javadoc)
See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstObjectAllocationExpressionjava.lang.Object)



visit
public Object visit(AstPlusAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPlusAssignExpressionjava.lang.Object)



visit
public Object visit(AstPlusExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPlusExpressionjava.lang.Object)



visit
public Object visit(AstPostDecrementExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPostfixDecrementExpressionjava.lang.Object)



visit
public Object visit(AstPostIncrementExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPostfixIncrementExpressionjava.lang.Object)



visit
public Object visit(AstPreDecrementExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPreDecrementExpressionjava.lang.Object)



visit
public Object visit(AstPreIncrementExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPreIncrementExpressionjava.lang.Object)



visit
public Object visit(AstPrimaryExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPrimaryExpressionjava.lang.Object)



visit
public Object visit(AstPrimarySuffix node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPrimarySuffixjava.lang.Object)



visit
public Object visit(AstPrimitiveType node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPrimitiveTypejava.lang.Object)



visit
public Object visit(AstPrintStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstPrintStatementjava.lang.Object)



visit
public Object visit(AstRemainderExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstRemainderExpressionjava.lang.Object)



visit
public Object visit(AstRemAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstRemAssignExpressionjava.lang.Object)



visit
public Object visit(AstReturnStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstReturnStatementjava.lang.Object)



visit
public Object visit(AstRSignedShiftAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstRSignedShiftAssignExpressionjava.lang.Object)



visit
public Object visit(AstRSignedShiftExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstRSignedShiftExpressionjava.lang.Object)



visit
public Object visit(AstRUnsignedShiftAssignExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstRUnsignedShiftAssignExpressionjava.lang.Object)



visit
public Object visit(AstRUnsignedShiftExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstRUnsignedShiftExpressionjava.lang.Object)



visit
public Object visit(AstStatementExpressionList node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstStatementExpressionListjava.lang.Object)



visit
public Object visit(AstSwitchStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstSwitchStatementjava.lang.Object)



visit
public Object visit(AstSynchronizedStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstSynchronizedStatementjava.lang.Object)



visit
public Object visit(AstThrowStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstThrowStatementjava.lang.Object)



visit
public Object visit(AstTryStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstTryStatementjava.lang.Object)



visit
public Object visit(AstUnaryMinusExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstUnaryMinusExpressionjava.lang.Object)



visit
public Object visit(AstUnaryPlusExpression node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstUnaryPlusExpressionjava.lang.Object)



visit
public Object visit(AstVariableDeclarator node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstVariableDeclaratorjava.lang.Object)



visit
public Object visit(AstWhileStatement node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.AstWhileStatementjava.lang.Object)



visit
public Object visit(SimpleNode node, Object data) throws Exception(Code)

See Also:   jxp.parser.JxpParserVisitor.visit(jxp.parser.SimpleNodejava.lang.Object)



visit
public Object visit(AstType node, Object data) throws Exception(Code)



visit
public Object visit(AstVariableDeclaratorId node, Object data) throws Exception(Code)



visit
public Object visit(AstExitStatement node, Object data) throws Exception(Code)



visit
public Object visit(AstStaticImportDeclaration node, Object data) throws Exception(Code)



visit
public Object visit(AstVariableParameters node, Object data) throws Exception(Code)



visit
public Object visit(AstEnhancedForStatement node, Object data) throws Exception(Code)



visit
public Object visit(AstNamedArgument node, Object data) throws Exception(Code)



visit
public Object visit(AstPageDirective node, Object data) throws Exception(Code)



visit
public Object visit(AstIncludeDirective node, Object data) throws Exception(Code)



visit
public Object visit(AstIsEmptyExpression node, Object data) throws Exception(Code)



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.