Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / feature / FeatureExtraColumn.java @ 44778

History | View | Annotate | Download (505 Bytes)

1 44753 omartinez
package org.gvsig.fmap.dal.feature;
2
3
import java.util.List;
4
5
/**
6
 *
7
 * @author osc
8
 */
9
public interface FeatureExtraColumn {
10
11 44764 jjdelcerro
  public boolean isEmpty();
12
13
  public List<EditableFeatureAttributeDescriptor> getColumns();
14 44753 omartinez
15
  public EditableFeatureAttributeDescriptor get(String name);
16
17 44778 omartinez
  public EditableFeatureAttributeDescriptor get(int index);
18
19 44753 omartinez
  public EditableFeatureAttributeDescriptor add(String name);
20
21
  public void merge(FeatureExtraColumn other);
22 44778 omartinez
23
  public int getIndexOf(String name);
24 44753 omartinez
}