Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / FMapEvent.java @ 1082

History | View | Annotate | Download (248 Bytes)

1
package com.iver.cit.gvsig.fmap;
2

    
3
/**
4
 * Evento sobre el mapa.
5
 */
6
public class FMapEvent {
7
        private int eventType;
8
        
9
        public int getEventType() {
10
                return eventType;
11
        }
12
        public void setEventType(int eventType) {
13
                this.eventType = eventType;
14
        }
15
}