Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] IDT - separating getter/setter from beans

Hi Simone,

thanks a Lot.

Regards Roger



Am 26.05.2010 um 15:24 schrieb Simone Gianni <simoneg@xxxxxxxxxx>:

> Hi Roger,
> yes, you can do it, but you have to specify to which class you are attaching them :
> 
> public aspect MyTestBeanSupport {
> 
>    public void MyTest.setData1(String data) {
>        this.data1 = data1;
>    }
> 
>    public Strng MyTest.getData1() {
>        return data1;
>    }
> 
> }
> 
> Simone
> 
> 


Back to the top