Example #1
0
    private void  fromJSONChoices(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field Choices of WhichContactChoicesJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 2)
        {
            throw new Exception("The value for field Choices of WhichContactChoicesJSON has too few elements.");
        }
        List <TypeChoicesJSON> vector_Choices1 = new List <TypeChoicesJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            TypeChoicesJSON convert_classy = TypeChoicesJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Choices1.Add(convert_classy);
        }
        Debug.Assert(vector_Choices1.Count >= 2);
        initChoices();
        for (int num3 = 0; num3 < vector_Choices1.Count; ++num3)
        {
            appendChoices(vector_Choices1[num3]);
        }
        for (int num1 = 0; num1 < vector_Choices1.Count; ++num1)
        {
        }
    }
Example #2
0
 public void appendChoices(TypeChoicesJSON to_append)
 {
     if (!flagHasChoices)
     {
         flagHasChoices = true;
         storeChoices.Clear();
     }
     Debug.Assert(flagHasChoices);
     storeChoices.Add(to_append);
 }
Example #3
0
 protected void finish(TypeChoicesJSON result)
 {
     if (fieldGeneratorContacts.have_value)
     {
         result.initContacts();
         int count = fieldGeneratorContacts.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendContacts(fieldGeneratorContacts.value[num]);
         }
         fieldGeneratorContacts.value.Clear();
         fieldGeneratorContacts.have_value = false;
     }
     else if ((!(result.hasContacts())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Contacts\" field was missing.");
     }
     if (fieldGeneratorToUserWrittenName.have_value)
     {
         result.setToUserWrittenName(fieldGeneratorToUserWrittenName.value);
         fieldGeneratorToUserWrittenName.have_value = false;
     }
     else if ((!(result.hasToUserWrittenName())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"ToUserWrittenName\" field was missing.");
     }
     if (fieldGeneratorToUserSpokenName.have_value)
     {
         result.setToUserSpokenName(fieldGeneratorToUserSpokenName.value);
         fieldGeneratorToUserSpokenName.have_value = false;
     }
     else if ((!(result.hasToUserSpokenName())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"ToUserSpokenName\" field was missing.");
     }
     if (fieldGeneratorFromUserNames.have_value)
     {
         result.initFromUserNames();
         int count = fieldGeneratorFromUserNames.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendFromUserNames(fieldGeneratorFromUserNames.value[num]);
         }
         fieldGeneratorFromUserNames.value.Clear();
         fieldGeneratorFromUserNames.have_value = false;
     }
     else if ((!(result.hasFromUserNames())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"FromUserNames\" field was missing.");
     }
 }
Example #4
0
            protected override void finish()
            {
                TypeChoicesJSON result = new TypeChoicesJSON();

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