Statistics
| Revision:

root / branches / FMap_CAD / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / Command.java @ 3513

History | View | Annotate | Download (270 Bytes)

1

    
2
package com.iver.cit.gvsig.fmap.edition;
3

    
4
import java.io.IOException;
5

    
6
import com.iver.cit.gvsig.fmap.drivers.DriverIOException;
7

    
8
public interface Command {
9
    void undo() throws DriverIOException, IOException;
10
    void redo() throws DriverIOException, IOException;
11
}