Back to project page base_app.
The source code is released under:
GNU General Public License
If you think the Android project base_app 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.bengui.baseapp.utils; public interface JSONParcelableObject<T> { abstract public String getJSON(); abstract public T parseJSON(String json); }