Back to project page AndroidUploader.
The source code is released under:
Apache License
If you think the Android project AndroidUploader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package z.hol.uploader; //from ww w . ja v a2s . com import z.hol.uploader.bridge.Bridge; /** * ?? * Created by holmes on 10/15/14. */ public interface Uploader { /** * ???????? * @param bridge */ void setBridge(Bridge bridge); /** * ????????? * @return */ Bridge getBridge(); /** * ?? */ void uploader(); /** * ???? */ void cancel(); /** * ????id * @return */ int getId(); /** * ??????id. * ???????id, ??id??????????????? * @param id */ void setId(int id); }