Revision 6745 trunk/extensions/extGeoProcessing/src/com/iver/cit/gvsig/geoprocess/core/gui/OverlayPanelIF.java

View differences:

OverlayPanelIF.java
45 45
*
46 46
* $Id$
47 47
* $Log$
48
* Revision 1.2  2006-07-21 09:10:34  azabala
48
* Revision 1.3  2006-08-11 16:12:27  azabala
49
* *** empty log message ***
50
*
51
* Revision 1.2  2006/07/21 09:10:34  azabala
49 52
* fixed bug 608: user doesnt enter any result file to the geoprocess panel
50 53
*
51 54
* Revision 1.1  2006/05/24 21:13:09  azabala
......
67 70
import java.io.File;
68 71
import java.io.FileNotFoundException;
69 72

  
73
import com.iver.cit.gvsig.fmap.layers.FLayers;
70 74
import com.iver.cit.gvsig.fmap.layers.FLyrVect;
75
import com.iver.utiles.swing.threads.IMonitorableTask;
71 76

  
72 77
/**
73 78
 * Models  funtionality of GeoProcessingBufferPanel
......
79 84
public interface OverlayPanelIF {
80 85
	public FLyrVect getInputLayer();
81 86
	public FLyrVect getSecondLayer();
87
	public FLayers  getFLayers();
88
	
89
	
82 90
	public boolean onlyFirstLayerSelected();
83 91
	public boolean onlySecondLayerSelected();
92
	
93
	
84 94
	public void openResultFileDialog();
95
	
85 96
	public void firstLayerSelectionChecked(boolean checked);
86 97
	public void secondLayerSelectionChecked(boolean checked);
98
	
99
	
87 100
	public File getOutputFile() throws FileNotFoundException;
101
	
102
	public void error(String error, String errorDescription);
103
	public boolean askForOverwriteOutputFile(File file);
104
	IMonitorableTask askForSpatialIndexCreation(FLyrVect layer);
88 105
}
89 106

  

Also available in: Unified diff