Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / DataParameterDescriptor.java @ 24250

History | View | Annotate | Download (450 Bytes)

1
package org.gvsig.fmap.data;
2

    
3
public interface DataParameterDescriptor {
4
        public static final int SINGLE = 1;
5
        public static final int CHOICE = 2;
6
        public static final int RANGE = 3;
7

    
8
        public String getName();
9

    
10
        public String getDescription();
11

    
12
        public int getDataType();
13

    
14
        public Object getDefaultValue();
15

    
16
        public int getAvailableValuesType();
17

    
18
        public Object[] getAvailableValues();
19

    
20
        public Object getMinValue();
21

    
22
        public Object getMaxValue();
23
}