Beispiel #1
0
        private void  fromJSONAlarms(JSONValue json_value, bool ignore_extras)
        {
            Debug.Assert(json_value != null);
            JSONArrayValue json_array1 = json_value.array_value();

            if (json_array1 == null)
            {
                throw new Exception("The value for field Alarms of TypeNativeDataJSON is not an array.");
            }
            int count1 = json_array1.componentCount();

            if (count1 < 1)
            {
                throw new Exception("The value for field Alarms of TypeNativeDataJSON has too few elements.");
            }
            List <AlarmJSON> vector_Alarms1 = new List <AlarmJSON>(count1);

            for (int num1 = 0; num1 < count1; ++num1)
            {
                AlarmJSON convert_classy = AlarmJSON.from_json(json_array1.component(num1), ignore_extras, true);
                vector_Alarms1.Add(convert_classy);
            }
            Debug.Assert(vector_Alarms1.Count >= 1);
            initAlarms();
            for (int num1 = 0; num1 < vector_Alarms1.Count; ++num1)
            {
                appendAlarms(vector_Alarms1[num1]);
            }
            for (int num1 = 0; num1 < vector_Alarms1.Count; ++num1)
            {
            }
        }
Beispiel #2
0
 public void appendAlarms(AlarmJSON to_append)
 {
     if (!flagHasAlarms)
     {
         flagHasAlarms = true;
         storeAlarms.Clear();
     }
     Debug.Assert(flagHasAlarms);
     storeAlarms.Add(to_append);
 }