Revision 10627 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/IFeatureIterator.java

View differences:

IFeatureIterator.java
2 2
 * Created on 31-mar-2005
3 3
 *
4 4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 * 
5
 *
6 6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 * 
7
 *
8 8
 * This program is free software; you can redistribute it and/or
9 9
 * modify it under the terms of the GNU General Public License
10 10
 * as published by the Free Software Foundation; either version 2
11 11
 * of the License, or (at your option) any later version.
12
 *  
12
 *
13 13
 * This program is distributed in the hope that it will be useful,
14 14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 16
 * GNU General Public License for more details.
17
 * 
17
 *
18 18
 * You should have received a copy of the GNU General Public License
19 19
 * along with this program; if not, write to the Free Software
20 20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21
 *  
21
 *
22 22
 * For more information, contact:
23 23
 *
24 24
 *  Generalitat Valenciana
......
30 30
 *      +34 963862235
31 31
 *   gvsig@gva.es
32 32
 *      www.gvsig.gva.es
33
 * 
33
 *
34 34
 *    or
35
 * 
35
 *
36 36
 *   IVER T.I. S.A
37 37
 *   Salamanca 50
38 38
 *   46005 Valencia
39 39
 *   Spain
40
 * 
40
 *
41 41
 *   +34 963163400
42 42
 *   dac@iver.es
43 43
 */
44 44
package com.iver.cit.gvsig.fmap.drivers;
45 45

  
46
import com.iver.cit.gvsig.fmap.DriverException;
46
import com.hardcode.gdbms.driver.exceptions.ReadDriverException;
47
import com.iver.cit.gvsig.exceptions.expansionfile.ExpansionFileReadException;
47 48
import com.iver.cit.gvsig.fmap.core.IFeature;
48 49

  
49 50
/**
......
53 54
 * Window - Preferences - Java - Code Generation - Code and Comments
54 55
 */
55 56
public interface IFeatureIterator {
56
    boolean hasNext() throws DriverException;
57
    IFeature next() throws DriverException;
57
    boolean hasNext() throws ReadDriverException, ExpansionFileReadException;
58
    IFeature next() throws ReadDriverException;
58 59
    /**
59 60
     * Use it when you finish to use the iterator
60 61
     * (Specially when Cancel the iteration).
62
     * @throws ReadDriverException TODO
61 63
     */
62
    void closeIterator() throws DriverException;
64
    void closeIterator() throws ReadDriverException;
63 65

  
64 66
}

Also available in: Unified diff