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; //from w ww . j a va 2s .c o m /** * Represent a bookmark. */ public class BookmarkItem { private String mTitle; private String mUrl; /** * Constructor. * @param title The bookmark title. * @param url The bookmark url. */ public BookmarkItem(String title, String url) { mTitle = title; mUrl = url; } /** * Get the bookmark title. * @return The bookmark title. */ public String getTitle() { return mTitle; } /** * Get the bookmark url. * @return The bookmark url. */ public String getUrl() { return mUrl; } }