I'm creating a Java application where the user can search through a list of objects, which are then displayed in a JEditorPane window using a dynamically generated table whose size varies by the amount of results returned.
I then want to allow the user to select and edit the objects. (The Java objects, not the HTML code) Is this feasible, or should I be doing something completely different? Should I even be using a JEditorPane, or should I be using a different method, and how would I go about that?
The display in question has anywhere from 1 to 50 (depending on the results) cells that read like this:
Name
Text
a picture of the object
year
check boxes for two boolean variables that are part of the object.
The check boxes should allow the user to click on them and change the boolean variables, which would then be saved to the main object collection.
Thoughts?