Example #1
0
 public Repeat_BothEndCondition(Repeat_BothEndCondition ec)
 {
     rEnd = new Repeat_rEndCondition(ec.rEnd);
     tEnd = new Repeat_tEndCondition(ec.tEnd);
     tEnd.Type = TimeLimitType.TotalTime;
 }
Example #2
0
 public Repeat_rEndCondition(Repeat_rEndCondition re)
 {
     numRepeats = re.numRepeats;
 }
Example #3
0
 public Repeat_BothEndCondition()
 {
     rEnd = new Repeat_rEndCondition();
     tEnd = new Repeat_tEndCondition();
     tEnd.Type = TimeLimitType.TotalTime;
 }