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.impl / src / main / java / org / gvsig / fmap / dal / swing / impl / featuretype / FeatureTypeAttributePanel.java @ 44085

History | View | Annotate | Download (550 Bytes)

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

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

    
7
/**
8
 *
9
 * @author jjdelcerro
10
 */
11
public interface FeatureTypeAttributePanel extends Component {
12
    
13
    public EditableFeatureAttributeDescriptor fetch(EditableFeatureAttributeDescriptor descriptor);
14
    
15
    public void put(FeatureAttributeDescriptor descriptor);
16
    
17
    public void setEditable(boolean editable);
18

    
19
}