Exemplo n.º 1
0
 public ParameterChange(Placeable target, Placeable launcher, DelegateSetter delegateSetter, T paramNewValue) : base(target, launcher)
 {
     this.delegateSetter = delegateSetter;
     this.paramNewValue  = paramNewValue;
 }
Exemplo n.º 2
0
 public ParameterChange(ParameterChange <T> other) : base(other)
 {
     this.delegateSetter = other.delegateSetter;
     this.paramNewValue  = other.paramNewValue;
 }
Exemplo n.º 3
0
 public ParameterChange(Placeable cible, Placeable lanceur, DelegateSetter delegateSetter, T paramNewValue) : base(cible, lanceur)
 {
     this.delegateSetter = delegateSetter;
     this.paramNewValue  = paramNewValue;
 }