Ejemplo n.º 1
0
    private void  fromJSONParticipants(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 Participants of SportsOlympicsEventSchedulesAndResultsInstanceJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON> vector_Participants1 = new List <SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON convert_classy = SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Participants1.Add(convert_classy);
        }
        initParticipants();
        for (int num2 = 0; num2 < vector_Participants1.Count; ++num2)
        {
            appendParticipants(vector_Participants1[num2]);
        }
        for (int num1 = 0; num1 < vector_Participants1.Count; ++num1)
        {
        }
    }
Ejemplo n.º 2
0
 public void appendParticipants(SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON to_append)
 {
     if (!flagHasParticipants)
     {
         flagHasParticipants = true;
         storeParticipants.Clear();
     }
     Debug.Assert(flagHasParticipants);
     storeParticipants.Add(to_append);
 }
Ejemplo n.º 3
0
        protected override void finish()
        {
            SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON result = new SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON();

            Debug.Assert(result != null);
            finish(result);
            int extra_count = unknownFieldGenerator.field_names.Count;

            Debug.Assert(extra_count == unknownFieldGenerator.field_values.Count);
            for (int extra_num = 0; extra_num < extra_count; ++extra_num)
            {
                result.extraSportsOlympicsEventSchedulesAndResultsInstanceParticipantAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            handle_result(result);
        }
Ejemplo n.º 4
0
 protected void finish(SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON result)
 {
     if (fieldGeneratorAthletes.have_value)
     {
         result.initAthletes();
         int count = fieldGeneratorAthletes.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendAthletes(fieldGeneratorAthletes.value[num]);
         }
         fieldGeneratorAthletes.value.Clear();
         fieldGeneratorAthletes.have_value = false;
     }
     if (fieldGeneratorOrganization.have_value)
     {
         result.setOrganization(fieldGeneratorOrganization.value);
         fieldGeneratorOrganization.have_value = false;
     }
     else if ((!(result.hasOrganization())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Organization\" field was missing.");
     }
 }
Ejemplo n.º 5
0
 protected override void handle_result(SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON result)
 {
     top.value.Add(result);
 }
Ejemplo n.º 6
0
        protected override void handle_result(SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Ejemplo n.º 7
0
 protected abstract void handle_result(SportsOlympicsEventSchedulesAndResultsInstanceParticipantJSON new_result);