Hello,
So I've been playing a little with JEB plugins and scripts. I saw there is a script for decompiling all the bytecode and creating corresponding JAVA files.
I was wondering, by the use of Java plugins or Python scripts - is there any way to take this decompiled Java files and work with their AST elements?
I mean, when the input is a java file, I want to work with the AST elements themselves, either to manipulate them or simply just to "break the Java" to it's smallest components. 
I want to get a full tree of the class where I know all the methods, variables, names, types, ... - and be able to save the representation or change names with code (both plugins and scripts are acceptable here).
Thank you)))