Exemple #1
0
 protected void finish(CallWhichContactAmbiguousCommandJSON result)
 {
     if (fieldGeneratorChoices.have_value)
     {
         result.setChoices(fieldGeneratorChoices.value);
         fieldGeneratorChoices.have_value = false;
     }
     else if ((!(result.hasChoices())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Choices\" field was missing.");
     }
     if (fieldGeneratorUserSpecifiedName.have_value)
     {
         result.setUserSpecifiedName(fieldGeneratorUserSpecifiedName.value);
         fieldGeneratorUserSpecifiedName.have_value = false;
     }
     else if ((!(result.hasUserSpecifiedName())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"UserSpecifiedName\" field was missing.");
     }
     base.finish(result);
 }
Exemple #2
0
        protected override void finish()
        {
            if (!(getDisambiguateCommandJSONKey().Equals("CallWhichContactAmbiguous")))
            {
                throw new Exception("The key field has a value other than `CallWhichContactAmbiguous'.");
            }
            CallWhichContactAmbiguousCommandJSON result = new CallWhichContactAmbiguousCommandJSON();

            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.extraCallWhichContactAmbiguousCommandAppendPair(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);
        }
Exemple #3
0
 protected override void handle_result(CallWhichContactAmbiguousCommandJSON result)
 {
     top.value.Add(result);
 }
Exemple #4
0
        protected override void handle_result(CallWhichContactAmbiguousCommandJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Exemple #5
0
 protected abstract void handle_result(CallWhichContactAmbiguousCommandJSON new_result);