Ejemplo n.º 1
0
 public static void StartChangeCollecting(string Description)
 {
     if (CollectChanges)
     {
         ARCING = true;
         return;
     }
     CollectChanges                   = true;
     TempChangeCollection             = new ChangeCollection();
     TempChangeCollection.Description = Description;
 }
Ejemplo n.º 2
0
 public static void EndChangeCollecting()
 {
     if (ARCING)
     {
         ARCING = false;
         return;
     }
     CollectChanges = false;
     if (TempChangeCollection.Changes.Count > 0)
     {
         AddChange(TempChangeCollection);
     }
     TempChangeCollection = null;
 }
Ejemplo n.º 3
0
 public static void EndChangeCollecting()
 {
     if (ARCING)
     {
         ARCING = false;
         return;
     }
     CollectChanges = false;
     if (TempChangeCollection.Changes.Count > 0)
     {
         AddChange(TempChangeCollection);
     }
     TempChangeCollection = null;
 }
Ejemplo n.º 4
0
        public static void StartChangeCollecting(string Description)
        {
            if (CollectChanges)
            {
                ARCING = true;
                return;
            } 
            CollectChanges = true;
            TempChangeCollection = new ChangeCollection();
            TempChangeCollection.Description = Description;

        }