We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@GenerateInterface class A {} @GenerateInterface class B { void setA(IA a) {} }
IA is omitted without error in IB (setA has no parameter).
IA
IB
setA
The text was updated successfully, but these errors were encountered:
http://stackoverflow.com/questions/43978743/java-annotation-processing-reference-generated-type-in-other-generated-code
Google auto-common fixes the issue by deferring uses of not yet generated types to later rounds. It does, however, not permit circular dependencies.
Sorry, something went wrong.
Made NucleusProcessor extend BasicAnnotationProcessor of Google auto-…
7581f77
…common. Related to xinra-nucleus/nucleus-interface-generator#6
Workaround for xinra-nucleus/nucleus-interface-generator#6
a4b3970
erikhofer
No branches or pull requests
IA
is omitted without error inIB
(setA
has no parameter).The text was updated successfully, but these errors were encountered: