Esempio n. 1
0
 protected void finish(UserContactsCommandJSON result)
 {
     if (fieldGeneratorStartingContactCount.have_value)
     {
         result.setStartingContactCount(fieldGeneratorStartingContactCount.value);
         fieldGeneratorStartingContactCount.have_value = false;
     }
     else if ((!(result.hasStartingContactCount())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"StartingContactCount\" field was missing.");
     }
     if (fieldGeneratorEndingContactCount.have_value)
     {
         result.setEndingContactCount(fieldGeneratorEndingContactCount.value);
         fieldGeneratorEndingContactCount.have_value = false;
     }
     else if ((!(result.hasEndingContactCount())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"EndingContactCount\" field was missing.");
     }
     if (fieldGeneratorFoundMatches.have_value)
     {
         result.initFoundMatches();
         int count = fieldGeneratorFoundMatches.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendFoundMatches(fieldGeneratorFoundMatches.value[num]);
         }
         fieldGeneratorFoundMatches.value.Clear();
         fieldGeneratorFoundMatches.have_value = false;
     }
     base.finish(result);
 }
Esempio n. 2
0
        protected override void finish()
        {
            if (!(getCommandResultJSONKey().Equals("UserContactsCommand")))
            {
                throw new Exception("The key field has a value other than `UserContactsCommand'.");
            }
            UserContactsCommandJSON result = new UserContactsCommandJSON();

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