Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / impl / commands / DefaultCommandNotification.java @ 24496

History | View | Annotate | Download (517 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.feature.impl.commands;
2 19399 vcaballero
3 24496 jmvivo
import org.gvsig.fmap.dal.feature.Command;
4
import org.gvsig.fmap.dal.feature.CommandNotification;
5 23754 jjdelcerro
6 24248 jjdelcerro
public class DefaultCommandNotification implements CommandNotification {
7 21045 jmvivo
        private Command command;
8 19399 vcaballero
        private String type;
9 24248 jjdelcerro
10
        public DefaultCommandNotification(Command command, String type) {
11 19399 vcaballero
                this.command=command;
12
                this.type=type;
13
        }
14
15 24248 jjdelcerro
        public Command getCommand() {
16
                return this.command;
17
        }
18
19
        public String getType() {
20
                return this.type;
21
        }
22 19399 vcaballero
}