FZ模板

作者: 3c2cf1f7612e | 来源:发表于2017-10-31 17:00 被阅读2次

public class ABC {

DownloadKeyInfoRenJiao downloadKeyInfo;

Activity context;

ABC(Activity context) {

}

public static interface Listebner {

boolean before();

void after();

void success();

void fail();

}

public void initChecke() {

}

public void checker(Listebner listebner) {

initChecke();

if (!listebner.before()) {

listebner.success();

return;

}

if (ConfigureRenJiao.isneedPay) {

listebner.success();

return;

}

if (downloadKeyInfo == null) {

doNet();

return;

}

boolean isO = UtilsRenJiao.isOutTime(downloadKeyInfo);

listebner.success();

listebner.fail();

}

相关文章

网友评论

      本文标题:FZ模板

      本文链接:https://www.haomeiwen.com/subject/udxduxtx.html