create ShowTodoItemDetailStrategy

This commit is contained in:
liuyuqing 2018-05-12 13:38:56 +08:00
parent ab115b72d4
commit 5e1f894e6d
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package org.cutem.cutecalendar.presenter;
import org.jetbrains.annotations.NotNull;
public class ShowTodoItemDetailStrategy {
private Presenter mPresenter;
public void attachPresenter(@NotNull Presenter presenter) {
mPresenter = presenter;
}
}