/*
 * @(#)RowIteratorForTag.java
 *
 * Copyright 2001-2002 by Oracle Corporation,
 * 500 Oracle Parkway, Redwood Shores, California, 94065, U.S.A.
 * All rights reserved.
 *
 * This software is the confidential and proprietary information
 * of Oracle Corporation.
 */

package oracle.jbo.html.jsp.datatags;

import oracle.jbo.Row;

interface RowIteratorForTag
{
   boolean hasNext();

   void next();
   
   Row getRow();

   void restoreState();
}
