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 / XMLInfo.java @ 47336

History | View | Annotate | Download (831 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 java.nio.charset.Charset;
9
import java.util.Locale;
10
import org.cresques.cts.IProjection;
11
import org.gvsig.tools.util.GetItemByKeyWithSizeAndGetKeys;
12
import org.gvsig.tools.util.IsEmpty;
13

    
14
/**
15
 *
16
 * @author jjdelcerro
17
 */
18
public interface XMLInfo extends GetItemByKeyWithSizeAndGetKeys<String, XMLTableInfo>, IsEmpty, Iterable<XMLTableInfo> {
19

    
20
    public IProjection getSrid();
21

    
22
    public void setSrid(IProjection srid);
23
    
24
    public Charset getCharset();
25
    
26
    public String getRepositoryID();
27
    
28
    public void setRepositoryID(String id);
29
    
30
    public Locale getLocale();
31
    
32
    
33
}