Initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.ubt.jimu.discover.contract;
|
||||
|
||||
import com.ubtech.presenter.BasePresenter;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface CourseContract$Presenter extends BasePresenter {
|
||||
void d(long j);
|
||||
|
||||
void o();
|
||||
}
|
@@ -0,0 +1,26 @@
|
||||
package com.ubt.jimu.discover.contract;
|
||||
|
||||
import com.ubt.jimu.base.download.DownloadTask;
|
||||
import com.ubt.jimu.base.entities.Course;
|
||||
import com.ubt.jimu.base.entities.Robot;
|
||||
import com.ubtech.view.BaseView;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface CourseContract$View extends BaseView<CourseContract$Presenter> {
|
||||
String I();
|
||||
|
||||
void a(DownloadTask downloadTask);
|
||||
|
||||
void a(Robot robot);
|
||||
|
||||
String d0();
|
||||
|
||||
void onDownloadFail();
|
||||
|
||||
void onProgress(int i, int i2, int i3);
|
||||
|
||||
void onStartDownload();
|
||||
|
||||
void showCourseList(List<Course> list);
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
package com.ubt.jimu.discover.contract;
|
||||
|
||||
import com.ubt.jimu.base.entities.Story;
|
||||
import com.ubtech.presenter.BasePresenter;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface StoryContract$Presenter extends BasePresenter {
|
||||
void a(Story story);
|
||||
}
|
@@ -0,0 +1,21 @@
|
||||
package com.ubt.jimu.discover.contract;
|
||||
|
||||
import com.ubt.jimu.base.download.DownloadTask;
|
||||
import com.ubt.jimu.base.entities.Story;
|
||||
import com.ubtech.view.BaseView;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface StoryContract$View extends BaseView<StoryContract$Presenter> {
|
||||
void a0();
|
||||
|
||||
void o(List<Story> list);
|
||||
|
||||
void onDownloadFail();
|
||||
|
||||
void onDownloadStart();
|
||||
|
||||
void onProgressChange(int i);
|
||||
|
||||
void showCurrentTask(DownloadTask downloadTask);
|
||||
}
|
Reference in New Issue
Block a user