Exemplo n.º 1
0
 protected void finish(SportsStatsTypeAndValueJSON result)
 {
     if (fieldGeneratorType.have_value)
     {
         result.setType(fieldGeneratorType.value);
         fieldGeneratorType.have_value = false;
     }
     else if ((!(result.hasType())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Type\" field was missing.");
     }
     if (fieldGeneratorValue.have_value)
     {
         result.setValue(fieldGeneratorValue.value);
         fieldGeneratorValue.have_value = false;
     }
     else if ((!(result.hasValue())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Value\" field was missing.");
     }
     if (fieldGeneratorValueNumeric.have_value)
     {
         result.setValueNumericText(fieldGeneratorValueNumeric.value);
         fieldGeneratorValueNumeric.have_value = false;
     }
 }
Exemplo n.º 2
0
    private void  fromJSONStatisticsTypeAndValue(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 StatisticsTypeAndValue of SportsStatsQueryDataJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <SportsStatsTypeAndValueJSON> vector_StatisticsTypeAndValue1 = new List <SportsStatsTypeAndValueJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            SportsStatsTypeAndValueJSON convert_classy = SportsStatsTypeAndValueJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_StatisticsTypeAndValue1.Add(convert_classy);
        }
        initStatisticsTypeAndValue();
        for (int num1 = 0; num1 < vector_StatisticsTypeAndValue1.Count; ++num1)
        {
            appendStatisticsTypeAndValue(vector_StatisticsTypeAndValue1[num1]);
        }
        for (int num1 = 0; num1 < vector_StatisticsTypeAndValue1.Count; ++num1)
        {
        }
    }
Exemplo n.º 3
0
 public void appendStatisticsTypeAndValue(SportsStatsTypeAndValueJSON to_append)
 {
     if (!flagHasStatisticsTypeAndValue)
     {
         flagHasStatisticsTypeAndValue = true;
         storeStatisticsTypeAndValue.Clear();
     }
     Debug.Assert(flagHasStatisticsTypeAndValue);
     storeStatisticsTypeAndValue.Add(to_append);
 }
Exemplo n.º 4
0
        protected override void finish()
        {
            SportsStatsTypeAndValueJSON result = new SportsStatsTypeAndValueJSON();

            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.extraSportsStatsTypeAndValueAppendPair(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);
        }
Exemplo n.º 5
0
 protected override void handle_result(SportsStatsTypeAndValueJSON result)
 {
     top.value.Add(result);
 }
Exemplo n.º 6
0
        protected override void handle_result(SportsStatsTypeAndValueJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Exemplo n.º 7
0
 protected abstract void handle_result(SportsStatsTypeAndValueJSON new_result);