Hi Tom,

You just need to change:

  TestBean() {
  }

to:

  public TestBean() {
  }

The default constructor needs to be public so that Stripes can create
instances of TestBean.

Also note that you can also choose to change:

  private List<TestBean> testBeanList = new ArrayList<TestBean>();

to:

  private List<TestBean> testBeanList;

and let Stripes create the list for you.

Hope that helps.

Cheers,
Freddy



-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to