public JTweet(Tweet tw) {
this(tw.getId(), tw.getText(), tw.getCreatedAt());
// if tweet was retrieved via Status object
if (tw instanceof Twitter4JTweet) {
Twitter4JTweet myTw = (Twitter4JTweet) tw;
inReplyTwitterId = myTw.getInReplyToStatusId();
urlEntries = myTw.getUrlEntries();
}
// most tweets have location == null. See user.location
if (tw.getGeoLocation() != null)
setGeoLocation(tw.getGeoLocation().getLatitude(),