Exemplo n.º 1
0
        protected override void finish()
        {
            UserAppParsingItemJSON result = new UserAppParsingItemJSON();

            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.extraUserAppParsingItemAppendPair(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.º 2
0
 protected void finish(UserAppParsingItemJSON result)
 {
     if (fieldGeneratorIndex.have_value)
     {
         result.setIndex(fieldGeneratorIndex.value);
         fieldGeneratorIndex.have_value = false;
     }
     else if ((!(result.hasIndex())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Index\" field was missing.");
     }
     if (fieldGeneratorPlatform.have_value)
     {
         result.setPlatform(fieldGeneratorPlatform.value);
         fieldGeneratorPlatform.have_value = false;
     }
     else if ((!(result.hasPlatform())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Platform\" field was missing.");
     }
     if (fieldGeneratorAppID.have_value)
     {
         result.setAppID(fieldGeneratorAppID.value);
         fieldGeneratorAppID.have_value = false;
     }
     else if ((!(result.hasAppID())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"AppID\" field was missing.");
     }
     if (fieldGeneratorAliasMatched.have_value)
     {
         result.setAliasMatched(fieldGeneratorAliasMatched.value);
         fieldGeneratorAliasMatched.have_value = false;
     }
     else if ((!(result.hasAliasMatched())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"AliasMatched\" field was missing.");
     }
     if (fieldGeneratorPopularityMeasure.have_value)
     {
         result.setPopularityMeasureText(fieldGeneratorPopularityMeasure.value);
         fieldGeneratorPopularityMeasure.have_value = false;
     }
 }
Exemplo n.º 3
0
 protected abstract void handle_result(UserAppParsingItemJSON new_result);
Exemplo n.º 4
0
 protected override void handle_result(UserAppParsingItemJSON result)
 {
     top.value.Add(result);
 }
Exemplo n.º 5
0
        protected override void handle_result(UserAppParsingItemJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }