Statistics
| Revision:

svn-gvsig-desktop / tags / J2ME_compat_v1_2_Build_1209 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / AfterFieldEditEvent.java @ 19509

History | View | Annotate | Download (688 Bytes)

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

    
3
import com.iver.cit.gvsig.fmap.drivers.FieldDescription;
4

    
5
public class AfterFieldEditEvent extends EditionEvent {
6

    
7
        FieldDescription fieldChanged;
8
        int changeType;
9
        public AfterFieldEditEvent(IEditableSource source, FieldDescription field, int changeType)
10
        {
11
                super(source, EditionEvent.FIELD_EDITION, EditionEvent.ALPHANUMERIC);
12
                this.fieldChanged = field;
13
                this.changeType = changeType;
14
        }
15
        /**
16
         * @return Returns the changeType.
17
         */
18
        public int getChangeType() {
19
                return changeType;
20
        }
21
        /**
22
         * @return Returns the changed field.
23
         */
24
        public FieldDescription getFieldChanged() {
25
                return fieldChanged;
26
        }
27

    
28
}