Example #1
0
        public void GetLimitValue(string Name, out LimitDefBase Limit)
        {
            LimitDefBase _Limit = null;

            if (LimitExists(Name))
            {
                _Limit = m_Limits[Name];
            }
            ;
            Limit = _Limit;
        }
Example #2
0
 public void AddLimit(LimitDefBase Limit)
 {
     if (LimitExists(Limit.GetName()))
     {
         //?? eindeutiger Namen erforderlich
     }
     else
     {
         m_Limits.Add(Limit.GetName(), Limit);
     }
 }
Example #3
0
 public void ModifyLimit(LimitDefBase Limit)
 {
     if (LimitExists(Limit.GetName()))
     {   //?? Vergleich alter neuer Testschritttype
         m_Limits[Limit.GetName()] = Limit;
     }
     else
     {
         //?? Namen nicht gefunden
     }
 }
Example #4
0
 public void Add(String key, LimitDefBase value)
 {
     Dictionary.Add(key, value);
 }