Clover coverage report - Code Coverage for tapestry-contrib release 4.0-alpha-3
Coverage timestamp: Mon May 16 2005 09:12:41 EDT
file stats: LOC: 77   Methods: 5
NCLOC: 30   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
SimpleTablePagingState.java - 0% 0% 0%
coverage
 1   
 // Copyright 2004, 2005 The Apache Software Foundation
 2   
 //
 3   
 // Licensed under the Apache License, Version 2.0 (the "License");
 4   
 // you may not use this file except in compliance with the License.
 5   
 // You may obtain a copy of the License at
 6   
 //
 7   
 //     http://www.apache.org/licenses/LICENSE-2.0
 8   
 //
 9   
 // Unless required by applicable law or agreed to in writing, software
 10   
 // distributed under the License is distributed on an "AS IS" BASIS,
 11   
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12   
 // See the License for the specific language governing permissions and
 13   
 // limitations under the License.
 14   
 
 15   
 package org.apache.tapestry.contrib.table.model.simple;
 16   
 
 17   
 import java.io.Serializable;
 18   
 
 19   
 import org.apache.tapestry.contrib.table.model.ITablePagingState;
 20   
 
 21   
 /**
 22   
  * A minimal implementation of 
 23   
  * {@link org.apache.tapestry.contrib.table.model.ITablePagingState}.
 24   
  * 
 25   
  * @author mindbridge
 26   
  */
 27   
 public class SimpleTablePagingState implements ITablePagingState, Serializable
 28   
 {
 29   
     private final static int DEFAULT_PAGE_SIZE = 10;
 30   
 
 31   
     private int m_nPageSize;
 32   
     private int m_nCurrentPage;
 33   
 
 34  0
     public SimpleTablePagingState()
 35   
     {
 36  0
         m_nPageSize = DEFAULT_PAGE_SIZE;
 37  0
         m_nCurrentPage = 0;
 38   
     }
 39   
 
 40   
     /**
 41   
      * Returns the pageSize.
 42   
      * @return int
 43   
      */
 44  0
     public int getPageSize()
 45   
     {
 46  0
         return m_nPageSize;
 47   
     }
 48   
 
 49   
     /**
 50   
      * Sets the pageSize.
 51   
      * @param pageSize The pageSize to set
 52   
      */
 53  0
     public void setPageSize(int pageSize)
 54   
     {
 55  0
         m_nPageSize = pageSize;
 56   
     }
 57   
 
 58   
     /**
 59   
      * Returns the currentPage.
 60   
      * @return int
 61   
      */
 62  0
     public int getCurrentPage()
 63   
     {
 64  0
         return m_nCurrentPage;
 65   
     }
 66   
 
 67   
     /**
 68   
      * Sets the currentPage.
 69   
      * @param currentPage The currentPage to set
 70   
      */
 71  0
     public void setCurrentPage(int currentPage)
 72   
     {
 73  0
         m_nCurrentPage = currentPage;
 74   
     }
 75   
 
 76   
 }
 77