Back to project page sharemore.
The source code is released under:
GNU General Public License
If you think the Android project sharemore 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.moarub.kipptapi; //from w w w. j a v a 2 s. co m public class KipptClipItem { private boolean fReadLater; private boolean fStarred; private String fUrl; private String fTitle; private String fListResourceUri; private String fNotes; public KipptClipItem(boolean fReadLater, boolean fStarred, String fUrl, String fTitle, String fListResourceUri, String fNotes) { super(); this.fReadLater = fReadLater; this.fStarred = fStarred; this.fUrl = fUrl; this.fTitle = fTitle; this.fListResourceUri = fListResourceUri; this.fNotes = fNotes; } public boolean getfReadLater() { return fReadLater; } public boolean getfStarred() { return fStarred; } public String getfUrl() { return fUrl; } public String getfTitle() { return fTitle; } public String getfListResourceUri() { return fListResourceUri; } public String getfNotes() { return fNotes; } }