Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] new no-arg constructor

Hi,

I want to add a no argument constructor to a class that does not have oen, this does not seem to be possible, does anyone know why not?

public aspect A {
    public TestA.TestA() {  // *** error on this line
    }
}
public class TestA {
    public TestA(String a) {
    }
}

Thanks,
Mike



Back to the top