Exemplo n.º 1
0
 /// <summary>
 /// Installs an interface to be used when displaying
 /// </summary>
 /// <param name="tillDisplay">The interface to use from now on</param>
 public void SetDisplayInterface(ITillDisplay tillDisplay)
 {
     if (tillDisplay == null)
     {
         throw new NullReferenceException("Display is null");
     }
     this.Display = tillDisplay;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Installs an interface to be used when displaying
 /// </summary>
 /// <param name="tillDisplay">The interface to use from now on</param>
 public void SetDisplayInterface(ITillDisplay tillDisplay)
 {
     // throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public void SetDisplayInterface(ITillDisplay a)
 {
 }