1 15 package tutorial.components; 16 17 import net.sf.tapestry.html.BasePage; 18 19 23 public class Home extends BasePage { 24 public Object [] getArraySource() { 25 return new Object [] { 26 new Object [] { "This is", "a test", "of the array viewer" }, 27 new Object [] { "There should be nothing in the next two columns", null, null }, 28 new Object [] { new Integer (1234), Boolean.TRUE, this } 29 }; 30 } 31 } 32 | Popular Tags |