Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.library / org.gvsig.raster.tools / org.gvsig.raster.tools.swing / org.gvsig.raster.tools.swing.api / src / main / java / org / gvsig / raster / tools / swing / api / viewclip / ViewClipPanel.java @ 43803

History | View | Annotate | Download (842 Bytes)

1
package org.gvsig.raster.tools.swing.api.viewclip;
2

    
3
import org.gvsig.fmap.mapcontrol.MapControl;
4
import org.gvsig.raster.lib.buffer.api.exceptions.BufferException;
5
import org.gvsig.raster.swing.buffer.save.SaveBufferDialog;
6
import org.gvsig.raster.tools.lib.api.exceptions.RasterToolCreatingPanelException;
7
import org.gvsig.tools.swing.api.Component;
8

    
9

    
10
/**
11
 * @author fdiaz
12
 *
13
 */
14
public interface ViewClipPanel extends Component {
15

    
16
    public static final String VIEW_CLIP_TOOL_NAME = "view-clip-tool";
17

    
18
    /**
19
     * @param saveBufferDialog
20
     * @throws BufferException
21
     */
22
    public void fetch(SaveBufferDialog saveBufferDialog) throws BufferException;
23

    
24
    /**
25
     * @param mapControl
26
     * @throws RasterToolCreatingPanelException
27
     */
28
    public void set(MapControl mapControl) throws RasterToolCreatingPanelException;
29

    
30

    
31
}