ast « tree « Java Collection Q&A

Home
Java Collection Q&A
1.algorithm
2.array
3.Array Byte
4.Array Char
5.Array Convert
6.Array Dimension
7.Array Integer
8.Array Object
9.Array String
10.ArrayList
11.collection
12.comparator
13.Development
14.Garbage Collection
15.Generic
16.hash
17.HashMap
18.HashTable
19.iterator
20.LinkedList
21.List
22.Map
23.queue
24.Set
25.Sort
26.tree
Java Collection Q&A » tree » ast 

1. Abstract Syntax Tree    stackoverflow.com

I have an AST derived from the ANTLR Parser Generator for Java. What I want to do is somehow construct a control flow graph of the source code, where each statement ...

2. How to access comments from the java compiler tree api generated ast?    stackoverflow.com

I've used the java compiler tree api to generate the ast for java source files. However, i'm unable to access th comments in the source files. So far, i've been unable ...

3. Creating an AST Tree in Java given another AST Tree    stackoverflow.com

Currently, I'm working on representing an AST tree I have, written in SML, in Java so I can traverse it in Java whenever I want. I'm wondering if I should just create ...

4. Code generating JUnit based on Abstract Syntax tree walk    stackoverflow.com

Assuming I have the following class and method:

package generation;

class HelloWorld {
  public boolean isEven(int val) {
    if ( (val % 2) == 0)
     ...

5. Java / Abstract Syntax Tree into XML representation    stackoverflow.com

do you know of any tool which creates an AST from a Java program or class and creates an XML representation (Collection or single XML document) from the AST? kind regards,
Johannes

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.