Back to project page BCC.
The source code is released under:
MIT License
If you think the Android project BCC 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 com.sdsu.bcc.file; import android.app.Activity; public interface FileDataStoreOperations<T>{ public boolean saveData(T pObjData) throws Exception; public T getData() throws Exception; public void setActivity(Activity activity); }