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 4832 fjp
package com.iver.cit.gvsig.fmap.edition;
2
3 5197 caballero
import com.iver.cit.gvsig.fmap.core.IRow;
4 6335 fjp
import com.iver.cit.gvsig.fmap.drivers.FieldDescription;
5 5197 caballero
6 4832 fjp
public interface IEditionListener {
7 5197 caballero
8 4832 fjp
        void processEvent(EditionEvent e);
9 5197 caballero
10
        void beforeRowEditEvent(IRow feat,BeforeRowEditEvent e);
11
12 6689 caballero
        void afterRowEditEvent(IRow feat, AfterRowEditEvent e);
13 6335 fjp
14
        void beforeFieldEditEvent(BeforeFieldEditEvent e);
15
        void afterFieldEditEvent(AfterFieldEditEvent e);
16 4832 fjp
17
}