Beispiel #1
0
 public void updateController(ModuleSEPStation station)
 {
     if (station == null)
     {
         controllerAutoTransmit = false;
     }
     else
     {
         controllerAutoTransmit = station.autoTransmit;
     }
 }
        public void setController(ModuleSEPStation m)
        {
            controller = m;

            if (handler == null)
            {
                return;
            }

            handler.updateController(controller);
        }