Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / IEditionListener.java @ 10627

History | View | Annotate | Download (382 Bytes)

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

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

    
5
public interface IEditionListener {
6

    
7
        void processEvent(EditionEvent e);
8

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

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

    
16
}