Exemplo n.º 1
0
 protected void finish(GeneralizedThingInformationNuggetJSON result)
 {
     if (fieldGeneratorWhatInformation.have_value)
     {
         result.setWhatInformation(fieldGeneratorWhatInformation.value);
         fieldGeneratorWhatInformation.have_value = false;
     }
     else if ((!(result.hasWhatInformation())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"WhatInformation\" field was missing.");
     }
     if (fieldGeneratorGeneralizedThing.have_value)
     {
         result.setGeneralizedThing(fieldGeneratorGeneralizedThing.value);
         fieldGeneratorGeneralizedThing.have_value = false;
     }
     else if ((!(result.hasGeneralizedThing())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"GeneralizedThing\" field was missing.");
     }
     if (fieldGeneratorDerivation.have_value)
     {
         result.setDerivation(fieldGeneratorDerivation.value);
         fieldGeneratorDerivation.have_value = false;
     }
     else if ((!(result.hasDerivation())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Derivation\" field was missing.");
     }
     base.finish(result);
 }
Exemplo n.º 2
0
        protected override void finish()
        {
            if (!(keyGenerator.have_value))
            {
                throw new Exception("The `GeneralizedThingNuggetKind' field is missing.");
            }
            if (!(getInformationNuggetJSONKey().Equals("GeneralizedThing")))
            {
                throw new Exception("The key field has a value other than `GeneralizedThing'.");
            }
            GeneralizedThingInformationNuggetJSON result = createForKey(keyGenerator.value, unknownFieldGenerator.index);

            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.extraGeneralizedThingInformationNuggetAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            if (!allow_incomplete)
            {
                string missing_field_error = result.missing_field_error(allow_unpolished);
                if (missing_field_error != null)
                {
                    error(missing_field_error);
                }
            }
            handle_result(result);
        }
Exemplo n.º 3
0
 protected override void handle_result(GeneralizedThingInformationNuggetJSON result)
 {
     top.value.Add(result);
 }
Exemplo n.º 4
0
        protected override void handle_result(GeneralizedThingInformationNuggetJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Exemplo n.º 5
0
 protected abstract void handle_result(GeneralizedThingInformationNuggetJSON new_result);
Exemplo n.º 6
0
 protected override void handle_result(GeneralizedThingInformationNuggetJSON new_result)
 {
     handle_result((UnknownInformationJSON )new_result);
 }