Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / AfterRowEditEvent.java @ 11086

History | View | Annotate | Download (532 Bytes)

1 4832 fjp
package com.iver.cit.gvsig.fmap.edition;
2
3
4
public class AfterRowEditEvent extends EditionEvent {
5
6
        long numRow;
7
        int changeType;
8 5184 caballero
        public AfterRowEditEvent(IEditableSource source, long numRow, int changeType,int sourceType)
9 4832 fjp
        {
10 5184 caballero
                super(source, EditionEvent.ROW_EDITION, sourceType);
11 4832 fjp
                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
}