If you haven't already you might want to look at the plugin export
screen in the admin console. A similar screen for collecting the
various user inputs could be provided in an eclipse based wizard.
It would also be nice if a wizard could generate the static block of a
gbean where the GBeanInfoBuilder is created:
static {
GBeanInfoBuilder infoFactory =
GBeanInfoBuilder.createStatic(MyGBean.class);
....
GBEAN_INFO = infoFactory.getBeanInfo();
}
public static GBeanInfo getGBeanInfo() {
return GBEAN_INFO;
}
Paul
On 6/24/06, Sachin Patel <[EMAIL PROTECTED]> wrote:
So for next release, I was thinking about working on some
enhancements to the eclipse-plugin to provide some g-plugin/services
creation tools & wizards that could do some basic things like
automatic codegeneration to provide stubbed out classes/methods. Do
people see any value in this? Are there a set of common things that
we could auto generate for users? If so what?
Thanks.
-sachin