Hi Chris. About 2 years ago I developed a desktop java app, using Swing and Cayenne. I was using Eclipse becuase there is a free plug-in called * WindowBuilderPro*, that allows you to visually create your Swing views. Anyway this tool also had some kind of Data-Binding support; however, I did not use that....I simply had code that would do like....
On view show.... someEditBox.setText(myCayennePoJo.getLastName()) and, on "save" myCayennePoJo.setLastName(someEditBox.getText()) At this point, if I were to develop something like that again, I would develop the screens & POJOs so the UI control names & POJO prop names are the same and then have some *reflection* type code to do the heavy moving. On Fri, May 31, 2013 at 11:19 AM, Chris Walters <walt...@id.com> wrote: > I have a need to bind some Cayenne data objects to Swing components in a > Netbeans platform-based app. Google tells me there used to be something > called Data Views. Are they completely gone? Any other recommendations > for binding data objects to Swing components if so? > > Am I showing how out of touch I am by even contemplating this combination? > >