DefaultTableIterator.java

  1. /*
  2.  *
  3.  * The DbUnit Database Testing Framework
  4.  * Copyright (C)2002-2004, DbUnit.org
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  *
  20.  */
  21. package org.dbunit.dataset;

  22. import org.slf4j.Logger;
  23. import org.slf4j.LoggerFactory;

  24. /**
  25.  * @author Manuel Laflamme
  26.  * @since Apr 5, 2003
  27.  * @version $Revision$
  28.  */
  29. public class DefaultTableIterator implements ITableIterator
  30. {
  31.     private Logger logger = LoggerFactory.getLogger(DefaultTableIterator.class);
  32.    
  33.     private final ITable[] _tables;
  34.     private int _index = -1;

  35.     public DefaultTableIterator(ITable[] tables)
  36.     {
  37.         _tables = tables;
  38.     }

  39.     public DefaultTableIterator(ITable[] tables, boolean reversed)
  40.     {
  41.         if (reversed)
  42.         {
  43.             ITable[] reverseTables = new ITable[tables.length];
  44.             for (int i = 0; i < tables.length; i++)
  45.             {
  46.                 reverseTables[tables.length - 1 - i] = tables[i];
  47.             }
  48.             tables = reverseTables;
  49.         }

  50.         _tables = tables;
  51.     }

  52.     ////////////////////////////////////////////////////////////////////////////
  53.     // ITableIterator interface

  54.     public boolean next() throws DataSetException
  55.     {
  56.         _index++;
  57.         return _index < _tables.length;
  58.     }

  59.     public ITableMetaData getTableMetaData() throws DataSetException
  60.     {
  61.         logger.debug("getTableMetaData() - start");
  62.        
  63.         return getTable().getTableMetaData();
  64.     }

  65.     public ITable getTable() throws DataSetException
  66.     {
  67.         logger.debug("getTable() - start");

  68.         return _tables[_index];
  69.     }
  70. }