Esempio n. 1
0
 public override void Operation()
 {
     Implementor.OperationImpl();
 }
Esempio n. 2
0
 public void SetImplementor(Implementor implementor)
 {
     this.implementor = implementor;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BridgePattern.Abstraction"/> class.
 /// </summary>
 /// <param name="implementor">The implementor instance to use.</param>
 public Abstraction(Implementor implementor)
 {
     _implementor = implementor;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="BridgePattern.Abstraction"/> class.
 /// </summary>
 /// <param name="implementor">The implementor instance to use.</param>
 public RedefinedAbstraction(Implementor implementor)
     : base(implementor)
 {
 }
Esempio n. 5
0
 protected Abstraction(Implementor implementor)
 {
     this.Implementor = implementor;
 }