Revision 31496 branches/v2_0_0_prep/extensions/extRasterTools-SE/src/org/gvsig/rastertools/roi/ui/ROIsTablePanel.java

View differences:

ROIsTablePanel.java
59 59

  
60 60
import org.gvsig.andami.PluginServices;
61 61
import org.gvsig.andami.ui.mdiManager.IWindow;
62
import org.gvsig.app.project.documents.view.gui.BaseView;
62
import org.gvsig.app.project.documents.view.gui.AbstractViewPanel;
63 63
import org.gvsig.app.project.documents.view.toolListeners.StatusBarListener;
64 64
import org.gvsig.fmap.dal.exception.DataException;
65 65
import org.gvsig.fmap.dal.feature.EditableFeature;
......
131 131

  
132 132
	private MapControl mapControl = null;
133 133

  
134
	private BaseView view = null;
134
	private AbstractViewPanel view = null;
135 135

  
136 136
	private GraphicLayer graphicLayer = null;
137 137

  
......
267 267
		if (view == null) {
268 268
			IWindow[] list = PluginServices.getMDIManager().getAllWindows();
269 269
			for (int i = 0; i < list.length; i++) {
270
				if (list[i] instanceof BaseView)
271
					view = (BaseView) list[i];
270
				if (list[i] instanceof AbstractViewPanel)
271
					view = (AbstractViewPanel) list[i];
272 272
			}
273 273
			if (view == null)
274 274
				return;
......
536 536
		return curImage;
537 537
	}
538 538

  
539
	public BaseView getView() {
539
	public AbstractViewPanel getView() {
540 540
		return view;
541 541
	}
542 542

  

Also available in: Unified diff