------------------Show Code ( lines)------------------
package com.todomvc.client;
1

The P in the MVP Model.

public interface Presenter<V extends View<?>> {

    void bindView(V view);

}