public CommunicativeAct(CommunicativeAct rhs)
 {
     _commActType = rhs._commActType;
     _rapportStrategyType = rhs._rapportStrategyType;
 }
 public CommunicativeAct(COMMUNICATIVE_ACT actType, RAPPORT_STRATEGY rapportType)
 {
     _commActType = actType;
     _rapportStrategyType = rapportType;
 }
 public CommunicativeAct()
 {
     _commActType = COMMUNICATIVE_ACT.NO_COMM;
     _rapportStrategyType = RAPPORT_STRATEGY.NONE;
 }
 public CommunicativeAct(COMMUNICATIVE_ACT type)
 {
     _commActType = type;
 }
 public void setCommActType(COMMUNICATIVE_ACT type)
 {
     _commActType = type;
 }