Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / IEditionListener.java @ 4835

History | View | Annotate | Download (217 Bytes)

1 4832 fjp
package com.iver.cit.gvsig.fmap.edition;
2
3
public interface IEditionListener {
4
5
        void processEvent(EditionEvent e);
6
7
        void beforeRowEditEvent(BeforeRowEditEvent e);
8
9
        void afterRowEditEvent(AfterRowEditEvent e);
10
11
}