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(RAPPORT_STRATEGY type)
 {
     _rapportStrategyType = type;
 }
 public void setRapportActType(RAPPORT_STRATEGY type)
 {
     _rapportStrategyType = type;
 }