/* * Copyright 2004-2007 the Seasar Foundation and the Others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package examples.teeda.web.foreach; import java.io.Serializable; import java.util.ArrayList; import java.util.List; public class Foreach2Page { private String foo; private String bar; private List aaaItems; private BarItem[] barItems; private String data; private String[] hogeItems; private String hoge; public void initialize() { if (aaaItems == null) { aaaItems = new ArrayList(); aaaItems.add(createItem("a1", "b1", new String[] { "d1", "d2", null, null })); aaaItems.add(createItem("a2", null, new String[] { "d1", "d2", "d3", null })); aaaItems.add(createItem("a3", "b3", new String[] { "d1", "d2", "d3", "d4" })); aaaItems.add(createItem("a4", "b4", new String[] { "d1", "d2", "", "" })); aaaItems.add(createItem("a5", "b5", new String[] { null, "d2", "", "" })); } } public List getAaaItems() { return aaaItems; } private FooItem createItem(String foo, String bar, String[] dataItems) { final FooItem item = new FooItem(); item.setFoo(foo); item.setBar(bar); BarItem[] bitems = new BarItem[dataItems.length]; for (int i = 0; i < dataItems.length; i++) { String string = dataItems[i]; BarItem b = new BarItem(); b.setData(string); bitems[i] = b; } item.setBarItems(bitems); item.setHogeItems(dataItems); return item; } public void setAaaItems(List fooItems) { this.aaaItems = fooItems; } public String getBar() { return bar; } public void setBar(String bar) { this.bar = bar; } public String getFoo() { return foo; } public void setFoo(String foo) { this.foo = foo; } public static class FooItem { private String foo; private String bar; private BarItem[] barItems; private String[] hogeItems; public String getBar() { return bar; } public void setBar(String bar) { this.bar = bar; } public String getFoo() { return foo; } public void setFoo(String foo) { this.foo = foo; } public BarItem[] getBarItems() { return barItems; } public void setBarItems(BarItem[] barItems) { this.barItems = barItems; } public String[] getHogeItems() { return hogeItems; } public void setHogeItems(String[] aHogeItems) { hogeItems = aHogeItems; } } public static class BarItem implements Serializable { private String data; public String getData() { return data; } public void setData(String data) { this.data = data; } } public String getData() { return data; } public void setData(String aData) { data = aData; } public BarItem[] getBarItems() { return barItems; } public void setBarItems(BarItem[] aBarItems) { barItems = aBarItems; } public String getHoge() { return hoge; } public void setHoge(String aHoge) { hoge = aHoge; } public String[] getHogeItems() { return hogeItems; } public void setHogeItems(String[] aHogeItems) { hogeItems = aHogeItems; } }