Example #1
0
 protected void finish(UserContactsFindRequestJSON result)
 {
     if (fieldGeneratorKeyFieldName.have_value)
     {
         result.setKeyFieldName(fieldGeneratorKeyFieldName.value);
         fieldGeneratorKeyFieldName.have_value = false;
     }
     else if ((!(result.hasKeyFieldName())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"KeyFieldName\" field was missing.");
     }
     if (fieldGeneratorMatchValue.have_value)
     {
         result.setMatchValue(fieldGeneratorMatchValue.value);
         fieldGeneratorMatchValue.have_value = false;
     }
     if (fieldGeneratorFindNotMatched.have_value)
     {
         result.setFindNotMatched(fieldGeneratorFindNotMatched.value);
         fieldGeneratorFindNotMatched.have_value = false;
     }
     else if ((!(result.hasFindNotMatched())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"FindNotMatched\" field was missing.");
     }
     base.finish(result);
 }
Example #2
0
        protected override void finish()
        {
            if (!(getUserContactsRequestJSONKey().Equals("Find")))
            {
                throw new Exception("The key field has a value other than `Find'.");
            }
            UserContactsFindRequestJSON result = new UserContactsFindRequestJSON();

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