+1 enthusiastically. I use this strategy for
composition and (especially) delegation all over the
place, and having IDEA help out would be fantastic.
BTW, many thanks to IntelliJ for making a truly
superior product. My dev team has been using IDEA for
a few months now, and even now it's not at all
uncommon for someone to yell out how much we love this
new feature we just discovered. Keep up the great
work!
Andy
>hey all,
>I'm not sure if this already exists - if it does,
>just tell me where to
>look for it...
>
>what I'm after is something similar to generate
>getter/setters, but that
>would delegate to another class to provide the
>implementation. For
>instance:
>
>public class A
>{
> private int foo;
> public void setFoo(int foo) { this.foo = foo; }
> public int getFoo() { return foo; }
>}
>
>public class B
>{
> public A a = new A();
> public void setFoo(int foo) { a.setFoo(a); }
> public int getFoo() { return a.getFoo(); }
>}
>
>so I suppose I want something like "expose methods
>from member"... does
>this exist? if not, does anyone think its
worthwhile?
>
>cheesr
>dim
__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com
_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list