Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Method/field introduction in multiple classes

Hi,

Unless I'm mistaken, I distinctly remember the following syntax working many
years ago

    public void (A || B || C).foo()  {
        // impl
    }

Instead of

    public void A.foo()  {
        // impl
    }

    public void B.foo()  {
        // impl
    }

    public void C.foo()  {
        // impl
    }

Has the former now been deprecated?  

Thanks
Neil



Back to the top