View Javadoc

1   package cz.cuni.amis.pogamut.emohawk.agent.module.sensomotoric;
2   
3   /**
4    * Used for players emoticon tracking - we have here also the time the emoticon was set.
5    * @author knight
6    */
7   public class EmoticonInfo {
8       /** The emoticon */
9       Emoticon emoticon;
10      /** Emoticon set time */
11      long emoticonSetTime;
12  
13      public Emoticon getEmoticon() {
14          return emoticon;
15      }
16  
17      public long getEmoticonSetTime() {
18          return emoticonSetTime;
19      }
20  
21      public EmoticonInfo(Emoticon emoticon, long emoticonSetTime) {
22          this.emoticon = emoticon;
23          this.emoticonSetTime = emoticonSetTime;
24      }
25  }