If you think the Android project MyTwitter-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package org.fukata.android.mytw.database.dto;
//fromwww.java2s.comimport java.util.Date;
import org.fukata.android.mytw.database.schema.TweetSchema;
publicclass TweetDto {
publicint id;
public String statusId;
public String status;
public String username;
public String userId;
public String source;
public String inReplyToStatusId;
public Date createdAt;
public TweetSchema.TweetType tweetType;
public String custom;
@Override
public String toString() {
return"TweetDto [id=" + id + ", statusId=" + statusId + ", status="
+ status + ", username=" + username + ", userId=" + userId
+ ", source=" + source + ", inReplyToStatusId=" + inReplyToStatusId
+ ", createdAt=" + createdAt + ", tweetType=" + tweetType
+ ", custom=" + custom + "]";
}
}