Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Can I use "Declare Parents" to make an interface be the parent of another interface?

Greetings.

Can I use @DeclareParents this way:


interface A { }

interface B { }

@DeclareParents(value="B", defaultImpl=BImpl.class)
private A something;

class C implements A { }




Will class C have the methods declared in B?

Back to the top