View Single Post
  #3 (permalink)  
Old 05-07-2007, 10:05 PM
Alan Alan is offline
Member
 
Join Date: May 2007
Posts: 39
Alan is on a distinguished road
I recommend this:
first
I would define the cells (or the visibles/editable properties of the cells)
as javabean properties.
You can find a lot of information about java bean, but I can explain in a few words: javabean is a java class where their attributes are used as a properties (information) and each attribute or properties must be defined by two public access methods: getPPP() (for example) and setPPP()

If you have well define the cells, I would create a javabean class
or you can define the cells as javabeans.
After that, you can use some inspector/editor/visualizator of javabeans.
For example:
SourceForge.net: Java Bean Examiner/Editor/Viewer

Good luck
Alan

Last edited by Alan : 06-01-2007 at 03:45 AM.
Reply With Quote