Observer.java 238 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 package com.huaheng.wms.facedete; import android.graphics.Bitmap; /** * 作者:created by meixi * 邮箱:13164716840@163.com * 日期:2018/8/29 16 */ public interface Observer { void update(int intparam, Bitmap param); }