Back to project page Twitter-News.
The source code is released under:
Apache License
If you think the Android project Twitter-News 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.kaplandroid.twitternews.model; /*from ww w . j a v a 2 s . com*/ /** * * @author KAPLANDROID * */ public class SourceForDB { private int sourceID; private String sourceName; public SourceForDB(int sourceID, String sourceName) { this.sourceID = sourceID; this.sourceName = sourceName; } public int getSourceID() { return sourceID; } public void setSourceID(int sourceID) { this.sourceID = sourceID; } public String getSourceName() { return sourceName; } public void setSourceName(String sourceName) { this.sourceName = sourceName; } @Override public String toString() { return sourceName; } }