FileDocCategorySizeDatePackage
TestAction.javaAPI DocExample1664Mon Jul 23 13:26:12 BST 2007org.apache.struts2.views.freemarker

TestAction

public class TestAction extends com.opensymphony.xwork2.ActionSupport

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public TestAction()


      
        super();
    
Methods Summary
public java.util.ListgetBeanList()

        List list = new ArrayList();
        list.add(new TestBean("one", "1"));
        list.add(new TestBean("two", "2"));
        list.add(new TestBean("three", "3"));

        return list;
    
public java.util.ListgetStringList()

        List list = new ArrayList();
        list.add("one");
        list.add("two");
        list.add("three");

        return list;