Back to project page ClinicalTrialTracker.
The source code is released under:
Apache License
If you think the Android project ClinicalTrialTracker 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.yuanwei.android.rss.domain; /* w w w . jav a2s .c om*/ public class FeedMessage { private String url; private boolean newChannel; private String newTrials; public String getUrl() { return url; } public void setUrl(String uri) { this.url = uri; } public boolean isNewChannel() { return newChannel; } public void setNewChannel(boolean newChannel) { this.newChannel = newChannel; } /* public boolean isNewTrials() { return newTrials; } */ public void setNewTrials(String newTrials) { this.newTrials = newTrials; } public String getTag() { // TODO Auto-generated method stub return newTrials; } }