Back to project page ReadabilitySDK.
The source code is released under:
MIT License
If you think the Android project ReadabilitySDK 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.idemidov.readability.data; //from w w w.ja va2s . co m /** * Created by Ilya on 01/03/14. */ public class Article { private String id; private String direction; private String nextPageHref; private String author; private String url; private String leadImageUrl; private String title; private String excerpt; private String domain; private int wordCount; private String content; private String datePublished; private String dek; private boolean processed; private int contentSize; private String shortUrl; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getDirection() { return direction; } public void setDirection(String direction) { this.direction = direction; } public String getNextPageHref() { return nextPageHref; } public void setNextPageHref(String nextPageHref) { this.nextPageHref = nextPageHref; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getLeadImageUrl() { return leadImageUrl; } public void setLeadImageUrl(String leadImageUrl) { this.leadImageUrl = leadImageUrl; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getExcerpt() { return excerpt; } public void setExcerpt(String excerpt) { this.excerpt = excerpt; } public String getDomain() { return domain; } public void setDomain(String domain) { this.domain = domain; } public int getWordCount() { return wordCount; } public void setWordCount(int wordCount) { this.wordCount = wordCount; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getDatePublished() { return datePublished; } public void setDatePublished(String datePublished) { this.datePublished = datePublished; } public String getDek() { return dek; } public void setDek(String dek) { this.dek = dek; } public boolean isProcessed() { return processed; } public void setProcessed(boolean processed) { this.processed = processed; } public int getContentSize() { return contentSize; } public void setContentSize(int contentSize) { this.contentSize = contentSize; } public String getShortUrl() { return shortUrl; } public void setShortUrl(String shortUrl) { this.shortUrl = shortUrl; } }