Exemplo n.º 1
0
 public Window(iWindowImp w)
 {
     windowImp = w;
 }
Exemplo n.º 2
0
 //This is one of the refined abstraction classes. Note that it can make use of windowImp since it inherits it from its superclass. Note also that since MacWindow and WindowsWindow implement iWindowImp, their specific drawLine() and drawText() methods will be called, depending on what's passed into the constructor (see the main method)
 public TransientWindow(iWindowImp w) : base(w)
 {
 }
Exemplo n.º 3
0
 public IconWindow(iWindowImp w) : base(w)
 {
 }