I'm not able to get a correct line of methods. Few are getting properly few are not.
for (CtMethod declaredMethod : declaredMethods) {
int methodLineNumber = declaredMethod.getMethodInfo().getLineNumber(0);
}
1)What is the mistake?
2)In getLineNumber(int offset) how to calculate offset?
If I understood your question correctly, you are looking on finding out the associated starting line number of all methods in your java code
I would suggest you to use JavaParser (https://javaparser.org/)
Github Link - https://github.com/javaparser/javaparser
It is a java code analysis tool using which I too solved a problem on similar lines
You may need to override the visit method found in VoidVisitorAdapter
You need to set a Compilation Unit and pass it on as below in your driver code
The File src here can be made using the Files.walk() if you need to run it on multiple files
where the filePath is the path to file on which you need your java parser to run which can be called with
PS: the EBook available on their website gives you great intro to Java Parsers