Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / feature / Command.java @ 23754

History | View | Annotate | Download (371 Bytes)

1
package org.gvsig.fmap.data.feature;
2

    
3

    
4
public interface Command {
5
        public final static String DELETE = "delete_Command";
6
        public final static String INSERT = "insert_Command";
7
        public final static String UPDATE = "update_Command";
8

    
9

    
10
    public String getType();
11

    
12
        public String getDescription();
13

    
14
        public String getDate();
15

    
16
        public String getTime();
17

    
18
}