-
-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CompilationUnit: Get path of .class file from CompilationUnit #1230
Labels
Comments
Sounds interesting. What method do you propose?
|
I'm looking for a method like this: ...
public List<File> getBinaryFiles() {
// for each type declaration return .class file
}
... This allows me to delete outdated .class files with ease. I need this for my incremental compilation approach where I'm extracting outdated files and compile them by adding the unchanged .class files to the classpath. Since a single .java file might be compiled to several .class files, Edit: This issue is related to #1175 |
msteinbeck
pushed a commit
to msteinbeck/spoon
that referenced
this issue
Mar 17, 2017
surli
pushed a commit
that referenced
this issue
Mar 21, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible to get the file path of the class file of a compilation unit? If not, would you mind if I would add such a feature?
The text was updated successfully, but these errors were encountered: