Back to project page hoot.
The source code is released under:
Apache License
If you think the Android project hoot 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.twotoasters.android.hoot; /*from w w w . ja v a2s .c om*/ import java.io.InputStream; public abstract class HootGlobalDeserializer { public HootGlobalDeserializer() { this(false); } public HootGlobalDeserializer(boolean isStreamDeserializer) { mIsStreamDeserializer = isStreamDeserializer; } public <T> T deserialize(InputStream is, Class<T> clazz) { return null; } public <T> T deserialize(String string, Class<T> clazz) { return null; } <T> T performDeserialize(InputStream is, Class<T> clazz) { return deserialize(is, clazz); } <T> T performDeserialize(String string, Class<T> clazz) { return deserialize(string, clazz); } boolean isStreamDeserializer() { return mIsStreamDeserializer; } private boolean mIsStreamDeserializer; }