Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / write / MemoryCommandStack.java @ 214

History | View | Annotate | Download (835 Bytes)

1
/* Generated by Together */
2

    
3
package com.iver.cit.gvsig.fmap.write;
4

    
5
/**
6
 * Clase que se encarga de mantener la pila de EditingCommand's que se van ejecutando en un fichero temporal. 
7
 */
8
public class MemoryCommandStack implements CommandList {
9
    /**
10
     * No hace nada 
11
     */
12
    public void open(){ }
13

    
14
    /**
15
     * No hace nada 
16
     */
17
    public void close(){ }
18

    
19
    /**
20
     * No hace nada
21
     */
22
    public void compact(){ }
23

    
24
    /**
25
     * EditingCommands de la pila
26
     */
27
    private EditingCommand[] editingCommands;
28

    
29
        /**
30
         * @see com.iver.cit.gvsig.fmap.write.CommandList#doCommand(com.iver.cit.gvsig.fmap.write.EditingCommand)
31
         */
32
        public void doCommand(EditingCommand c) {
33
        }
34

    
35
        /**
36
         * @see com.iver.cit.gvsig.fmap.write.CommandList#undoCommand()
37
         */
38
        public EditingCommand undoCommand() {
39
                return null;
40
        }
41
}