Statistics
| Revision:

gvsig-projects-pool / org.gvsig.vcsgis / trunk / org.gvsig.vcsgis / org.gvsig.vcsgis.swing / org.gvsig.vcsgis.swing.api / src / main / java / org / gvsig / vcsgis / swing / VCSGisSwingServices.java @ 2822

History | View | Annotate | Download (956 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.vcsgis.swing;
7

    
8
import javax.swing.ComboBoxModel;
9
import javax.swing.ListModel;
10
import javax.swing.tree.TreeModel;
11
import org.gvsig.fmap.dal.feature.FeatureStore;
12
import org.gvsig.tools.util.LabeledValue;
13
import org.gvsig.vcsgis.lib.workspace.VCSGisWorkspace;
14

    
15
/**
16
 *
17
 * @author fdiaz
18
 */
19
public interface VCSGisSwingServices {
20
    
21
    public TreeModel getFeatureStoresTreeModel();
22

    
23
    public ListModel getFeatureStoresListModel();
24

    
25
    public void addTableToProject(VCSGisWorkspace ws, FeatureStore store);
26

    
27
    public ComboBoxModel<LabeledValue> getViewDocumentsComboBoxModel();
28

    
29
    public void addLayerToView(FeatureStore store, LabeledValue view);
30

    
31
    public void addLayerToView(FeatureStore store, LabeledValue view, String name);
32

    
33
    
34

    
35
    
36
}