コード例 #1
0
    private void  fromJSONEvents(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 Events of SportsOlympicsEventSchedulesAndResultsArgumentEventJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field Events of SportsOlympicsEventSchedulesAndResultsArgumentEventJSON has too few elements.");
        }
        List <SportsOlympicsEventJSON> vector_Events1 = new List <SportsOlympicsEventJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            SportsOlympicsEventJSON convert_classy = SportsOlympicsEventJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Events1.Add(convert_classy);
        }
        Debug.Assert(vector_Events1.Count >= 1);
        initEvents();
        for (int num1 = 0; num1 < vector_Events1.Count; ++num1)
        {
            appendEvents(vector_Events1[num1]);
        }
        for (int num1 = 0; num1 < vector_Events1.Count; ++num1)
        {
        }
    }
コード例 #2
0
    private void  fromJSONEvent(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        SportsOlympicsEventJSON convert_classy = SportsOlympicsEventJSON.from_json(json_value, ignore_extras, true);

        setEvent(convert_classy);
    }
コード例 #3
0
 public void setEvent(SportsOlympicsEventJSON new_value)
 {
     if (flagHasEvent)
     {
     }
     flagHasEvent = true;
     storeEvent   = new_value;
 }
コード例 #4
0
 public void appendEvents(SportsOlympicsEventJSON to_append)
 {
     if (!flagHasEvents)
     {
         flagHasEvents = true;
         storeEvents.Clear();
     }
     Debug.Assert(flagHasEvents);
     storeEvents.Add(to_append);
 }
コード例 #5
0
 public void appendEvents(string chars)
 {
     SportsOlympicsEventJSON.TypeValueKnownValues known     = SportsOlympicsEventJSON.stringToValue(chars);
     SportsOlympicsEventJSON.TypeValue            new_value = new SportsOlympicsEventJSON.TypeValue();
     if (known == SportsOlympicsEventJSON.TypeValueKnownValues.Value__none)
     {
         new_value.in_known_list = false;
         new_value.string_value  = chars;
     }
     else
     {
         new_value.in_known_list = true;
         new_value.list_value    = known;
     }
     appendEvents(new_value);
 }