Skip to content
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

Make it possible to skip classes in the inheritance tree #2

Open
erikhofer opened this issue Jan 19, 2017 · 0 comments
Open

Make it possible to skip classes in the inheritance tree #2

erikhofer opened this issue Jan 19, 2017 · 0 comments
Assignees

Comments

@erikhofer
Copy link
Member

Example:

@GenerateInterface class A {}
class B extends A {}
class C extends B {}

@GenerateInterface is inherited. This will result in:

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:

interface IA {}
interface IC extends IA {}
@erikhofer erikhofer self-assigned this Jan 19, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant