Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.xml2db / org.gvsig.xml2db.lib / org.gvsig.xml2db.lib.api / src / main / java / org / gvsig / xml2db / lib / api / xmlinfo / XMLTableInfo.java @ 47338

History | View | Annotate | Download (587 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.xml2db.lib.api.xmlinfo;
7

    
8
import org.gvsig.fmap.dal.feature.EditableFeatureType;
9
import org.gvsig.tools.util.GetItemWithSizeIsEmptyAndIterator;
10

    
11
/**
12
 *
13
 * @author jjdelcerro
14
 */
15
public interface XMLTableInfo extends GetItemWithSizeIsEmptyAndIterator<XMLAttributeInfo>, Iterable<XMLAttributeInfo> {
16

    
17
    public String getName();
18

    
19
    public EditableFeatureType getFeatureType();
20
    
21
}