Back to project page EBrowser.
The source code is released under:
GNU General Public License
If you think the Android project EBrowser 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 org.zirco.model.items; // w w w .j a va2s. c o m public class WeaveBookmarkItem { private String mTitle; private String mUrl; private boolean mIsFolder; private String mWeaveId; public WeaveBookmarkItem(String title, String url, String weaveId, boolean isFolder) { mTitle = title; mUrl = url; mWeaveId = weaveId; mIsFolder = isFolder; } public String getTitle() { return mTitle; } public String getUrl() { return mUrl; } public String getWeaveId() { return mWeaveId; } public boolean isFolder() { return mIsFolder; } }