Can't find getModel in the View class?
I have a variable of type View and would like to access the getModel method. Where I can find it in 2.0? The code in 1.x was something like: .. code-block:: java IWindow window; MapContext mapa = ((View) window).getModel().getMapContext() The code in 2.0 is: .. code-block:: java IWindow window; MapContext mapa = ((IView) window).getViewDocument().getMapContext();