blob: 9dd005d8c471cfb24c0e17cdd237c5f76ca5c6f3 [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.spring.common.web;
import java.util.Arrays;
import wicket.extensions.markup.html.repeater.data.sort.SortableDataProvider;
import wicket.extensions.markup.html.repeater.data.table.DataTable;
import wicket.extensions.markup.html.repeater.data.table.IColumn;
import wicket.extensions.markup.html.repeater.data.table.PropertyColumn;
import wicket.model.Model;
/**
* Base class for the contact display page.
*
* @author Igor Vaynberg (ivaynberg)
*
*/
public abstract class ContactsDisplayPage extends BasePage {
public ContactsDisplayPage() {
IColumn[] cols = new IColumn[4];
cols[0] = new PropertyColumn(new Model("first name"), "firstName",
"firstName");
cols[1] = new PropertyColumn(new Model("last name"), "lastName",
"lastName");
cols[2] = new PropertyColumn(new Model("home phone"), "homePhone");
cols[3] = new PropertyColumn(new Model("cell phone"), "cellPhone");
add(new DataTable("contacts", Arrays.asList(cols), getDataProvider(), 5));
}
protected abstract SortableDataProvider getDataProvider();
}