java/sql-dk/src/info/globalcode/sql/dk/batch/Batch.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Dec 2013 16:45:04 +0100
branchv_0
changeset 89 98d18e9a357b
parent 29 d66858b4b563
child 144 d273d7c6dc0c
permissions -rw-r--r--
InfoLister (configuration listings) will use TabularPrefetchingFormatter as default
franta-hg@29
     1
/**
franta-hg@29
     2
 * SQL-DK
franta-hg@29
     3
 * Copyright © 2013 František Kučera (frantovo.cz)
franta-hg@29
     4
 *
franta-hg@29
     5
 * This program is free software: you can redistribute it and/or modify
franta-hg@29
     6
 * it under the terms of the GNU General Public License as published by
franta-hg@29
     7
 * the Free Software Foundation, either version 3 of the License, or
franta-hg@29
     8
 * (at your option) any later version.
franta-hg@29
     9
 *
franta-hg@29
    10
 * This program is distributed in the hope that it will be useful,
franta-hg@29
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
franta-hg@29
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
franta-hg@29
    13
 * GNU General Public License for more details.
franta-hg@29
    14
 *
franta-hg@29
    15
 * You should have received a copy of the GNU General Public License
franta-hg@29
    16
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
franta-hg@29
    17
 */
franta-hg@29
    18
package info.globalcode.sql.dk.batch;
franta-hg@29
    19
franta-hg@29
    20
import info.globalcode.sql.dk.SQLCommand;
franta-hg@29
    21
import java.util.Iterator;
franta-hg@29
    22
franta-hg@29
    23
/**
franta-hg@29
    24
 *
franta-hg@29
    25
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@29
    26
 */
franta-hg@29
    27
public class Batch implements Iterator<SQLCommand> {
franta-hg@29
    28
franta-hg@29
    29
	@Override
franta-hg@29
    30
	public boolean hasNext() {
franta-hg@29
    31
		/** TODO: implement iterator */
franta-hg@29
    32
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@29
    33
	}
franta-hg@29
    34
franta-hg@29
    35
	@Override
franta-hg@29
    36
	public SQLCommand next() {
franta-hg@29
    37
		/** TODO: implement iterator */
franta-hg@29
    38
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@29
    39
	}
franta-hg@29
    40
franta-hg@29
    41
	@Override
franta-hg@29
    42
	public void remove() {
franta-hg@29
    43
		/** TODO: implement iterator */
franta-hg@29
    44
		throw new UnsupportedOperationException("Not supported yet.");
franta-hg@29
    45
	}
franta-hg@29
    46
}