Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.swing / org.gvsig.fmap.dal.swing.api / src / main / java / org / gvsig / fmap / dal / swing / featuretype / FeatureAttributeSelectionPanel.java @ 44713

History | View | Annotate | Download (732 Bytes)

1
package org.gvsig.fmap.dal.swing.featuretype;
2

    
3
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
4
import org.gvsig.fmap.dal.feature.FeatureStore;
5
import org.gvsig.tools.swing.api.Component;
6

    
7
/**
8
 *
9
 * @author jjdelcerro
10
 */
11
public interface FeatureAttributeSelectionPanel extends Component {
12

    
13
  public static final int DEFAULT_WIDTH = 500;
14
  public static final int DEFAULT_HEIGHT = 400;
15

    
16
  public FeatureAttributeDescriptor getSelectedAttributeDescriptor();
17

    
18
  /**
19
   * Return a TreePath<FeatureAttributeTreeModel.Node> for the selected
20
   * attribute.
21
   *
22
   * @return
23
   */
24
  public FeatureAttributeDescriptor[] getSelectedPath();
25

    
26
  public FeatureStore getSelectedStore();
27
  
28
  public String getSelectedName();
29
  
30
}