package com.tejia.lijin.app.contract;
|
|
|
import org.json.JSONObject;
|
|
|
/**
|
* 京东专题 Fragment
|
*/
|
public class JdSpecialFgContract {
|
/**
|
* activity 要实现的方法
|
*/
|
public interface JdSpecialView {
|
void onSearchSuccess(JSONObject obj);//成功
|
|
void onSearchFail(String errorInfo);//失败
|
}
|
|
|
/**
|
* 搜索回调接口
|
*/
|
public interface JdSpecialFgCallBack {
|
void onSuccess(JSONObject obj);
|
|
void onFail(String errorInfo);
|
}
|
}
|