Back to project page AndroidOperaLink.
The source code is released under:
Apache License
If you think the Android project AndroidOperaLink 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.opera.link.apilib.android.items; //w ww. j a v a 2 s . c o m import java.util.HashMap; import org.json.JSONException; import org.json.JSONObject; public class BookmarkSeparator extends BookmarkFolderEntry { public static final String ITEM_TYPE = "bookmark_separator"; public BookmarkSeparator() { } @Override void loadParameters(JSONObject json) throws JSONException { } @Override public HashMap<String, String> createParamsDict() { return new HashMap<String, String>(); } @Override public String getItemType() { return ITEM_TYPE; } }