protected void finish(DisambiguateLocationCommandJSON result)
 {
     if (fieldGeneratorAmbiguousLocations.have_value)
     {
         result.initAmbiguousLocations();
         int count = fieldGeneratorAmbiguousLocations.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendAmbiguousLocations(fieldGeneratorAmbiguousLocations.value[num]);
         }
         fieldGeneratorAmbiguousLocations.value.Clear();
         fieldGeneratorAmbiguousLocations.have_value = false;
     }
     if (fieldGeneratorActionOnSelection.have_value)
     {
         result.setActionOnSelection(fieldGeneratorActionOnSelection.value);
         fieldGeneratorActionOnSelection.have_value = false;
     }
     base.finish(result);
 }
        protected override void finish()
        {
            if (!(getCommandResultJSONKey().Equals("DisambiguateLocationCommand")))
            {
                throw new Exception("The key field has a value other than `DisambiguateLocationCommand'.");
            }
            DisambiguateLocationCommandJSON result = new DisambiguateLocationCommandJSON();

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