Motto:
"It is trivial to write a JavaBean the wrong way,
but not so easy to write it properly and maintain it consistent..."
JavaBeans Generator generates JavaBeans source files based on a simple XML configuration file.
That means you write a configuration file like this:
<bean class="jbg.tutorial.Person">
<property name="name">
<simple-type type="string" />
</property>
<property name="birthDate">
<simple-type type="date" />
</property>
</bean>And automatically generated you get:
This brings the following benefits to your bean Java sources:
The following are prerequisites to be able to use JBG:
See the JBG Tutorial to start using JBG in you own applications.
See the list of JBG features for a reference of what is supported by JBG.
JBG is hosted by Sourceforge.net, see JBG at Sourceforge.net.
JBG is part of SEAF.