Java Doc for TreeUtils.java in  » IDE » tIDE » javaparser » 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 » IDE » tIDE » javaparser 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javaparser.TreeUtils

TreeUtils
final public class TreeUtils (Code)




Method Summary
public static  voidcollectLocalVariablesBefore(RAWParserTreeNode fromInRAW, int beforeLine, java.util.List<Parameter> params)
     Walk up in the RAW tree and return the next declarator (LocalVariableDeclaration or FormalParameter node) maybe raw, in a for loop, in a method, ... Previous means that the tree is only looked at previous siblings (and then down) and node up ! actually, this only looks backward for types declared before the position of "from".
public static  booleancontains(Token t, int line, int col)
     Be careful, the spaces are not tokens, therefore no space will be matched by any token.
public static  booleancontains(ParserTreeNode t, int line, int col)
    
public static  List<ParserTreeNode>getAllMethodsAndFieldsForType(ParserTreeNode classOrInterface)
    
public static  ParserTreeNodegetBlokContaining(ParserTreeNode tn, int line, int col)
     search for a token containing exactely the position.
public static  ParserTreeNodegetChildWithStringRep(ParserTreeNode tn, String str)
    
public static  ParserTreeNodegetFirstTokenNodeBeforePosition(ParserTreeNode tn, int line, int col)
    
public static  ParserTreeNodegetNearestSimplifiedNode(ParserTreeNode node, int line, int col)
     This do NOT look in the raw tree.
public static  RAWParserTreeNodegetNodeTokenContaining(RAWParserTreeNode tn, int line, int col)
     search for a token containing exactely the position.
public static  RAWParserTreeNodegetTokenNodeAtOrAfterPosition(RAWParserTreeNode tn, int line, int col)
     The node containing or just after the given position.
public static  booleanisPositionInOrJustAfter(Token t, int line, int col)
    
public static  booleanisTokenContainingOrAfter(Token t, int line, int col)
     can be boosted a little bit...
public static  voidlookInBranchForParameters(RAWParserTreeNode from, int beforeLine, java.util.List<Parameter> params)
     recursive look for parameters.
public static  StringlookInBranchForTypeForParameter(RAWParserTreeNode from, String name)
     this look into the RAW tree (down) for parameters with the given name.
public static  StringsearchTypeForVariableName(RAWParserTreeNode fromInRAW, String name, boolean methodCallsOnly)
     Walk up in the RAW tree and return the next declarator (LocalVariableDeclaration or FormalParameter node) maybe raw, in a for loop, in a method, ... Previous means that the tree is only looked at previous siblings (and then down) and node up ! actually, this only looks backward for types declared before the position of "from".



Method Detail
collectLocalVariablesBefore
public static void collectLocalVariablesBefore(RAWParserTreeNode fromInRAW, int beforeLine, java.util.List<Parameter> params)(Code)
Walk up in the RAW tree and return the next declarator (LocalVariableDeclaration or FormalParameter node) maybe raw, in a for loop, in a method, ... Previous means that the tree is only looked at previous siblings (and then down) and node up ! actually, this only looks backward for types declared before the position of "from". that means that this is only suitable for variables, not for fields or methds that have a bigger scope (class). STOPS AT FIRST METHOD DECL ! all variables dclared after fromInRAW are ignored !



contains
public static boolean contains(Token t, int line, int col)(Code)
Be careful, the spaces are not tokens, therefore no space will be matched by any token. it is better to use the parsed simplified Nodes to scan in which block some input is rather than to search for an exact token match.
Parameters:
  line - starts with 1



contains
public static boolean contains(ParserTreeNode t, int line, int col)(Code)

Parameters:
  line - starts with 1



getAllMethodsAndFieldsForType
public static List<ParserTreeNode> getAllMethodsAndFieldsForType(ParserTreeNode classOrInterface)(Code)

Parameters:
  classOrInterface - may also be an enum or an annotation.



getBlokContaining
public static ParserTreeNode getBlokContaining(ParserTreeNode tn, int line, int col)(Code)
search for a token containing exactely the position. often don't exist ! use only for debug



getChildWithStringRep
public static ParserTreeNode getChildWithStringRep(ParserTreeNode tn, String str)(Code)



getFirstTokenNodeBeforePosition
public static ParserTreeNode getFirstTokenNodeBeforePosition(ParserTreeNode tn, int line, int col)(Code)
The node containing or just before getNodeTokenContaining often don't exist, this did sometimes more often exist :-) !! especially when editing (inserting text chars) and using an old tree NOT WORKING WELL, TOO IMPRECISE ! use getTokenNodeAtOrAfterPosition instead !!!



getNearestSimplifiedNode
public static ParserTreeNode getNearestSimplifiedNode(ParserTreeNode node, int line, int col)(Code)
This do NOT look in the raw tree. Returns the first containing. Depth first recursive search



getNodeTokenContaining
public static RAWParserTreeNode getNodeTokenContaining(RAWParserTreeNode tn, int line, int col)(Code)
search for a token containing exactely the position. (DEPTH FIRST => ???) often don't exist ! use only for debug and completion type discover (IDResolver) in the RAW syntax tree (=tn) BETTER: use getFirstNodeBeforePosition to allow some tolerance when completing with old raw trees



getTokenNodeAtOrAfterPosition
public static RAWParserTreeNode getTokenNodeAtOrAfterPosition(RAWParserTreeNode tn, int line, int col)(Code)
The node containing or just after the given position. Robust when the RAW tokens tree is walked down (depth first), this returns the first element direct after the position.



isPositionInOrJustAfter
public static boolean isPositionInOrJustAfter(Token t, int line, int col)(Code)
allow in or just after (1 line)



isTokenContainingOrAfter
public static boolean isTokenContainingOrAfter(Token t, int line, int col)(Code)
can be boosted a little bit...



lookInBranchForParameters
public static void lookInBranchForParameters(RAWParserTreeNode from, int beforeLine, java.util.List<Parameter> params)(Code)
recursive look for parameters. Used for completion of local variables (F2) slow, collect all but methods and fields (only preceedings) TODO: limit to scopes !



lookInBranchForTypeForParameter
public static String lookInBranchForTypeForParameter(RAWParserTreeNode from, String name)(Code)
this look into the RAW tree (down) for parameters with the given name. quick because stops at first occurence. (TODO: some nodes have no chance to contain parameters => abort!) this is also not efficient for method and fields (look in the simplified tree instead !)



searchTypeForVariableName
public static String searchTypeForVariableName(RAWParserTreeNode fromInRAW, String name, boolean methodCallsOnly)(Code)
Walk up in the RAW tree and return the next declarator (LocalVariableDeclaration or FormalParameter node) maybe raw, in a for loop, in a method, ... Previous means that the tree is only looked at previous siblings (and then down) and node up ! actually, this only looks backward for types declared before the position of "from". that means that this is only suitable for variables, not for fields or methds that have a bigger scope (class).
Parameters:
  methodCallsOnly - true if you know that you're searching for a method call like "hello(12)", use name="hello", methodCallsOnly=true



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.