Revision 12148 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/edition/BeforeRowEditEvent.java

View differences:

BeforeRowEditEvent.java
4 4

  
5 5
public class BeforeRowEditEvent extends EditionEvent {
6 6

  
7
	long numRow;
7
	String newFID;
8 8
	int changeType;
9 9
	Cancellable cancel;
10
	public BeforeRowEditEvent(IEditableSource source, long numRow, int changeType, Cancellable cancel,int sourceType)
10
	public BeforeRowEditEvent(IEditableSource source, String newFID, int changeType, Cancellable cancel,int sourceType)
11 11
	{
12 12
		super(source, EditionEvent.ROW_EDITION, sourceType);
13
		this.numRow = numRow;
13
		this.newFID = newFID;
14 14
		this.changeType = changeType;
15 15
		this.cancel = cancel;
16 16
	}
......
29 29
	/**
30 30
	 * @return Returns the numRow.
31 31
	 */
32
	public long getNumRow() {
33
		return numRow;
32
	public String getFID() {
33
		return newFID;
34 34
	}
35 35

  
36 36
}

Also available in: Unified diff