public Tweet()
 {
     hashtag = Hashtag.Instance;
     mention = Mention.Instance;
     txtAbbreviation = TxtAbbreviation.Instance;
     type = "tweet";
 }
Beispiel #2
0
        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();
        }
Beispiel #4
0
 public SMS()
 {
     txtAbbreviation = TxtAbbreviation.Instance;
     this.type = "sms";
 }