I want to make a java application that takes java source codes as input to create and visit their Abstract Syntax Trees, so I can make some statistics out of them.
I found this java parser: https://github.com/javaparser/javaparser
My questions are:
- Is there a way to import that library into NetBeans? Maybe from a jar file?
- Are there other parsers for what I want to do?
- Is using NetBeans and java language the easiest way to do this or should I use a different IDE or different programming languages?