I see that presenter can initialize/define the view as
@VaadinPresenter(viewName = "string name of the view")
public class MyPresenter extends Presenter<MyView> {
...
}
and access the view with getView().
I could not find any examples for defining the model similar way. Maybe I am wrong, but Presenter should be the glue between the Model and View. So, I was thinking that Presenter would have the similar pattern for the Model.
I appreciate if you can share any examples and ideas.