Back to project page dw2020.
The source code is released under:
Apache License
If you think the Android project dw2020 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 net.darkwire.example.service; //w ww . ja va 2s . c o m import com.octo.android.robospice.request.retrofit.RetrofitSpiceRequest; /** * Created by fsiu on 4/24/14. */ public abstract class FiveHundredPxSpiceRequest<T,V> extends RetrofitSpiceRequest<T,V> implements CacheableSpiceRequest{ public FiveHundredPxSpiceRequest(Class<T> originalClazz, Class<V> retrofittedClazz) { super(originalClazz, retrofittedClazz); } }