Statistics
| Revision:

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

History | View | Annotate | Download (382 Bytes)

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