Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-core-dev] org.eclipse.jdt.internal.compiler.batch.Main extracting info about the ongoing compilation

Hi Everyone,

I am using javassist to intercept calls to compile(String[]) of org.eclipse.jdt.internal.compiler.batch.Main class. I have access to the arguments being passed to compile method.

My aim is to extract three informations about the ongoing compilation:

1. List of jars being used.
2. List of source files ( paths to the files).
3. List of class files generated (paths to the files) with corresponding java source file.

What is the best way to extract those information : the Objects/Classes to be used?

Thanks in advance,

Amine



Back to the top