Пример #1
0
    private void  fromJSONGames(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        SportsOlympicsGamesJSON convert_classy = SportsOlympicsGamesJSON.from_json(json_value, ignore_extras, true);

        setGames(convert_classy);
    }
Пример #2
0
    private void  fromJSONGames(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 Games of SportsOlympicsBasicAttributeInformationNuggetJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <SportsOlympicsGamesJSON> vector_Games1 = new List <SportsOlympicsGamesJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            SportsOlympicsGamesJSON convert_classy = SportsOlympicsGamesJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Games1.Add(convert_classy);
        }
        initGames();
        for (int num2 = 0; num2 < vector_Games1.Count; ++num2)
        {
            appendGames(vector_Games1[num2]);
        }
        for (int num1 = 0; num1 < vector_Games1.Count; ++num1)
        {
        }
    }
Пример #3
0
 public void setGames(SportsOlympicsGamesJSON new_value)
 {
     if (flagHasGames)
     {
     }
     flagHasGames = true;
     storeGames   = new_value;
 }
Пример #4
0
 public void appendGames(SportsOlympicsGamesJSON to_append)
 {
     if (!flagHasGames)
     {
         flagHasGames = true;
         storeGames.Clear();
     }
     Debug.Assert(flagHasGames);
     storeGames.Add(to_append);
 }
Пример #5
0
 protected void finish(SportsOlympicsGamesJSON result)
 {
     if (fieldGeneratorCode.have_value)
     {
         result.setCode(fieldGeneratorCode.value);
         fieldGeneratorCode.have_value = false;
     }
     else if ((!(result.hasCode())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Code\" field was missing.");
     }
     if (fieldGeneratorYear.have_value)
     {
         result.setYear(fieldGeneratorYear.value);
         fieldGeneratorYear.have_value = false;
     }
     else if ((!(result.hasYear())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Year\" field was missing.");
     }
     if (fieldGeneratorHostCity.have_value)
     {
         result.setHostCity(fieldGeneratorHostCity.value);
         fieldGeneratorHostCity.have_value = false;
     }
     if (fieldGeneratorHostCountry.have_value)
     {
         result.setHostCountry(fieldGeneratorHostCountry.value);
         fieldGeneratorHostCountry.have_value = false;
     }
     if (fieldGeneratorSeason.have_value)
     {
         result.setSeason(fieldGeneratorSeason.value);
         fieldGeneratorSeason.have_value = false;
     }
     else if ((!(result.hasSeason())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Season\" field was missing.");
     }
     if (fieldGeneratorOpeningCeremonyDate.have_value)
     {
         result.setOpeningCeremonyDate(fieldGeneratorOpeningCeremonyDate.value);
         fieldGeneratorOpeningCeremonyDate.have_value = false;
     }
     if (fieldGeneratorClosingCeremonyDate.have_value)
     {
         result.setClosingCeremonyDate(fieldGeneratorClosingCeremonyDate.value);
         fieldGeneratorClosingCeremonyDate.have_value = false;
     }
     if (fieldGeneratorStatus.have_value)
     {
         result.setStatus(fieldGeneratorStatus.value);
         fieldGeneratorStatus.have_value = false;
     }
 }
Пример #6
0
        protected override void finish()
        {
            SportsOlympicsGamesJSON result = new SportsOlympicsGamesJSON();

            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.extraSportsOlympicsGamesAppendPair(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);
        }
Пример #7
0
 protected override void handle_result(SportsOlympicsGamesJSON result)
 {
     top.value.Add(result);
 }
Пример #8
0
        protected override void handle_result(SportsOlympicsGamesJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Пример #9
0
 protected abstract void handle_result(SportsOlympicsGamesJSON new_result);