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
Example:
@GenerateInterface class A {} class B extends A {} class C extends B {}
@GenerateInterface is inherited. This will result in:
@GenerateInterface
interface IA {} interface IB extends IA {} interface IC extends IB {}
It should be able to skip B so that no interface is created for B:
B
interface IA {} interface IC extends IA {}
The text was updated successfully, but these errors were encountered:
erikhofer
No branches or pull requests
Example:
@GenerateInterface
is inherited. This will result in:It should be able to skip
B
so that no interface is created forB
:The text was updated successfully, but these errors were encountered: