Ejemplo n.º 1
0
 public CommunicativeAct(CommunicativeAct rhs)
 {
     _commActType = rhs._commActType;
     _rapportStrategyType = rhs._rapportStrategyType;
 }
Ejemplo n.º 2
0
 public CommunicativeAct(COMMUNICATIVE_ACT actType, RAPPORT_STRATEGY rapportType)
 {
     _commActType = actType;
     _rapportStrategyType = rapportType;
 }
Ejemplo n.º 3
0
 public CommunicativeAct()
 {
     _commActType = COMMUNICATIVE_ACT.NO_COMM;
     _rapportStrategyType = RAPPORT_STRATEGY.NONE;
 }
Ejemplo n.º 4
0
 public CommunicativeAct(RAPPORT_STRATEGY type)
 {
     _rapportStrategyType = type;
 }
Ejemplo n.º 5
0
 public void setRapportActType(RAPPORT_STRATEGY type)
 {
     _rapportStrategyType = type;
 }