Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / commands / Command.java @ 10627

History | View | Annotate | Download (372 Bytes)

1

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

    
4
import com.iver.cit.gvsig.exceptions.commands.EditionCommandException;
5

    
6

    
7
public interface Command {
8

    
9
        void undo() throws EditionCommandException;
10
    void redo() throws EditionCommandException;
11
    String getType();
12
        String getDescription();
13
        void setDescription(String descrip);
14
        String getDate();
15
        String getTime();
16
}