Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / libraries / libFMap / src / com / iver / cit / gvsig / fmap / edition / commands / CommandListener.java @ 20100

History | View | Annotate | Download (414 Bytes)

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

    
3
/**
4
 * <p>Interface for adding support to an editable object to be repainted or refreshed, as consequence of
5
 * a command of edition operation executed.</p>
6
 */
7
public interface CommandListener {
8
        /**
9
         * <p>Updates visible graphical components.</p>
10
         */
11
        public void commandRepaint();
12
        
13
        /**
14
         * <p>Updates information.</p>
15
         */
16
        public void commandRefresh();
17
}