blob: 86214aa73077fb68da6021b44f1e61ca6972579f [file] [log] [blame]
// Copyright 2004, 2005 The Apache Software Foundation
//
// 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 org.apache.tapestry.contrib.table.model.simple;
import java.io.Serializable;
import org.apache.tapestry.contrib.table.model.ITablePagingState;
import org.apache.tapestry.contrib.table.model.ITableSortingState;
/**
* A container holding all of the table model states.
*
* @author mindbridge
*/
public class SimpleTableState implements Serializable
{
private static final long serialVersionUID = 1L;
private ITablePagingState m_objPagingState;
private ITableSortingState m_objSortingState;
public SimpleTableState()
{
this(new SimpleTablePagingState(), new SimpleTableSortingState());
}
public SimpleTableState(ITablePagingState objPagingState,
ITableSortingState objSortingState)
{
m_objPagingState = objPagingState;
m_objSortingState = objSortingState;
}
public SimpleTableState(int nPageSize, int nCurrentPage,
String strSortColumn, boolean bSortOrder)
{
this(new SimpleTablePagingState(nPageSize, nCurrentPage),
new SimpleTableSortingState(strSortColumn, bSortOrder));
}
/**
* Returns the pagingState.
*
* @return ITablePagingState
*/
public ITablePagingState getPagingState()
{
return m_objPagingState;
}
/**
* Returns the sortingState.
*
* @return ITableSortingState
*/
public ITableSortingState getSortingState()
{
return m_objSortingState;
}
}