blob: 32d9d15e44c6378c6d88bccc3826977c6b3816fd [file] [log] [blame]
/*
* $Id$
* $Revision$
* $Date$
*
* ====================================================================
* 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 wicket.examples.displaytag;
import java.util.List;
import wicket.PageParameters;
import wicket.examples.displaytag.utils.ListObject;
import wicket.examples.displaytag.utils.TableWithAlternatingRowStyle;
import wicket.examples.displaytag.utils.TestList;
import wicket.markup.html.basic.Label;
import wicket.markup.html.list.ListItem;
/**
* Show how cell values are generated at runtime
*
* @author Juergen Donnerstag
*/
public class ExampleImpObjects extends Displaytag
{
/**
* Constructor.
*
* @param parameters Page parameters
*/
public ExampleImpObjects(final PageParameters parameters)
{
// Test data
List data = new TestList(10, false);
// Add table of existing comments
add(new TableWithAlternatingRowStyle("rows", data)
{
// Row number
private int i=1;
public void populateItem(final ListItem listItem)
{
final ListObject value = (ListObject) listItem.getModelObject();
listItem.add(new Label("id", Integer.toString(value.getId())));
listItem.add(new Label("name", value.getName()));
listItem.add(new Label("rowNumber", String.valueOf(i++)));
//listItem.add(new Label("rowNumber", String.valueOf(listItem.getIndex())));
listItem.add(new Label("money", value.getDescription()));
}
});
}
}