Statistics
| Revision:

svn-gvsig-desktop / tags / v1_0_2_Build_910 / libraries / libDriverManager / src / com / hardcode / driverManager / DriverEvent.java @ 11275

History | View | Annotate | Download (296 Bytes)

1
package com.hardcode.driverManager;
2

    
3
public class DriverEvent {
4
        public final static int DRIVER_EVENT_LOADING_START = 0;
5

    
6
        public final static int DRIVER_EVENT_LOADING_END = 1;
7
        
8
        private int type;
9

    
10
        public DriverEvent(int _type) {
11
                type = _type;
12
        }
13

    
14
        public int getType() {
15
                return type;
16
        }
17
}