protected void finish(AstronomyLocationIntentJSON result)
 {
     if (fieldGeneratorName.have_value)
     {
         result.setName(fieldGeneratorName.value);
         fieldGeneratorName.have_value = false;
     }
     else if ((!(result.hasName())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Name\" field was missing.");
     }
     base.finish(result);
 }
        protected override void finish()
        {
            if (!(getLocationIntentJSONKey().Equals("Astronomy")))
            {
                throw new Exception("The key field has a value other than `Astronomy'.");
            }
            AstronomyLocationIntentJSON result = new AstronomyLocationIntentJSON();

            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.extraAstronomyLocationIntentAppendPair(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);
        }
 protected override void handle_result(AstronomyLocationIntentJSON result)
 {
     top.value.Add(result);
 }
        protected override void handle_result(AstronomyLocationIntentJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
 protected abstract void handle_result(AstronomyLocationIntentJSON new_result);