Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / core / IRow.java @ 4191

History | View | Annotate | Download (461 Bytes)

1
package com.iver.cit.gvsig.fmap.core;
2

    
3
import com.hardcode.gdbms.engine.values.Value;
4

    
5
/**
6
 * @author fjp
7
 *
8
 * Simple Row. IFeature extends it. Useful for edition, for example.
9
 * You can have a EditionAdapter backed by an ExpansionFile and work
10
 * always with IRow.
11
 */
12
public interface IRow {
13

    
14
        public String getID();
15

    
16
        public Value getAttribute(int fieldIndex);
17

    
18
        public Value[] getAttributes();
19

    
20
        public IRow cloneRow();
21
        
22
        public void setID(String ID);
23

    
24
}