Back to project page TumblifeForAndroid.
The source code is released under:
GNU General Public License
If you think the Android project TumblifeForAndroid 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 jp.mitukiii.tumblife.tumblr; /*from w w w . j av a2 s.c o m*/ import java.util.HashMap; import android.content.Context; import android.os.Handler; import jp.mitukiii.tumblife.model.TLPost; import jp.mitukiii.tumblife.model.TLTumblelog; public interface TLDashboardInterface { public void init(TLDashboardDelegate delegate, Context context, Handler handler); public void reinit(TLDashboardDelegate delegate, Context context, Handler handler); public void start(); public void deserialize(); public void serialize(); public String getTitle(); public TLTumblelog getTumblelog(); public TLPost postCurrent(); public TLPost postCurrent(boolean showLastPost); public TLPost postNext(); public TLPost postBack(); public TLPost postPin(TLPost post); public TLPost moveTo(int which); public int getPinPostsCount(); public boolean hasPinPosts(); public boolean isPinPost(TLPost post); public void addQueues(); public void like(TLPost post); public void likeAll(Handler progressHandler); public void reblog(TLPost post, String comment); public void reblogAll(Handler progressHandler); public void writeRegular(String text, String body, HashMap<String, String> options); public void stop(); public void restart(); public void destroy(); public void deleteFiles(); public boolean isPrepared(); public boolean isLogged(); public boolean isRunned(); public boolean isStopped(); public boolean isDestroyed(); }