public Tweet() { hashtag = Hashtag.Instance; mention = Mention.Instance; txtAbbreviation = TxtAbbreviation.Instance; type = "tweet"; }
public SMS(string id, string messageTxt, string sender) { this.messageTxt = messageTxt; this.sender = sender; txtAbbreviation = TxtAbbreviation.Instance; this.type = "sms"; this.id = id; // process the message body and check it for any abbreviations this.processAbbreviations(); }
public Tweet(string id, string messageTxt, string sender) { hashtag = Hashtag.Instance; mention = Mention.Instance; type = "tweet"; this.messageTxt = messageTxt; this.sender = sender; this.id = id; txtAbbreviation = TxtAbbreviation.Instance; this.processAbbreviations(); this.processHashtags(); this.processMentions(); }
public SMS() { txtAbbreviation = TxtAbbreviation.Instance; this.type = "sms"; }