Statistics
| Revision:

svn-gvsig-desktop / tags / v1_0_2_Build_910 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / IEditionListener.java @ 11275

History | View | Annotate | Download (439 Bytes)

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

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

    
6
public interface IEditionListener {
7

    
8
        void processEvent(EditionEvent e);
9

    
10
        void beforeRowEditEvent(IRow feat,BeforeRowEditEvent e);
11

    
12
        void afterRowEditEvent(IRow feat, AfterRowEditEvent e);
13
        
14
        void beforeFieldEditEvent(BeforeFieldEditEvent e);
15
        void afterFieldEditEvent(AfterFieldEditEvent e);
16

    
17
}