Statistics
| Revision:

svn-gvsig-desktop / tags / v1_0_2_Build_897 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / AfterRowEditEvent.java @ 10444

History | View | Annotate | Download (532 Bytes)

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

    
3

    
4
public class AfterRowEditEvent extends EditionEvent {
5

    
6
        long numRow;
7
        int changeType;
8
        public AfterRowEditEvent(IEditableSource source, long numRow, int changeType,int sourceType)
9
        {
10
                super(source, EditionEvent.ROW_EDITION, sourceType);
11
                this.numRow = numRow;
12
                this.changeType = changeType;
13
        }
14
        /**
15
         * @return Returns the changeType.
16
         */
17
        public int getChangeType() {
18
                return changeType;
19
        }
20
        /**
21
         * @return Returns the numRow.
22
         */
23
        public long getNumRow() {
24
                return numRow;
25
        }
26

    
27
}