Igor Vaynberg wrote:
in other words, if you were building this app using jsps or servlets how would you carry over this data structure between requests?
No, I actually would not carry the data between requests. When the page is requested, I would run my test suite to compute the results. Serving the test results from a previous test run is useless and is likely to be misleading.. Following Eelco's suggestion, I've set all the fields in my panel (DescriptionPanel) to transient. However, in one case the panel creates a ListView which references non-serializable data items. Thus I started creating a parallel and serializable data class hierarchy for presenting my results, which I am actually quite happy about. However, I also wish I knew a simpler solution if the same question arose in a different context where duplicating the class hierarchy would be inappropriate.
-igor
-- Ceki Gülcü Logback: The reliable, generic, fast and flexible logging framework for Java. http://logback.qos.ch --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org