Package cuchaz.enigma.analysis

Examples of cuchaz.enigma.analysis.SourceIndexVisitor


 
  public SourceIndex getSourceIndex( CompilationUnit sourceTree, String source )
  {
    // build the source index
    SourceIndex index = new SourceIndex( source );
    sourceTree.acceptVisitor( new SourceIndexVisitor(), index );
   
    // DEBUG
    //sourceTree.acceptVisitor( new TreeDumpVisitor( new File( "tree.txt" ) ), null );
   
    // resolve all the classes in the source references
View Full Code Here

TOP

Related Classes of cuchaz.enigma.analysis.SourceIndexVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.