Exemple #1
0
    private void  fromJSONValue(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 Value of ContactListJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <OneContactJSON> vector_Value1 = new List <OneContactJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            OneContactJSON convert_classy = OneContactJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Value1.Add(convert_classy);
        }
        initValue();
        for (int num1 = 0; num1 < vector_Value1.Count; ++num1)
        {
            appendValue(vector_Value1[num1]);
        }
        for (int num1 = 0; num1 < vector_Value1.Count; ++num1)
        {
        }
    }
Exemple #2
0
        private void  fromJSONContacts(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 Contacts of TypeChoicesJSON is not an array.");
            }
            int count1 = json_array1.componentCount();

            if (count1 < 1)
            {
                throw new Exception("The value for field Contacts of TypeChoicesJSON has too few elements.");
            }
            List <OneContactJSON> vector_Contacts1 = new List <OneContactJSON>(count1);

            for (int num1 = 0; num1 < count1; ++num1)
            {
                OneContactJSON convert_classy = OneContactJSON.from_json(json_array1.component(num1), ignore_extras, true);
                vector_Contacts1.Add(convert_classy);
            }
            Debug.Assert(vector_Contacts1.Count >= 1);
            initContacts();
            for (int num1 = 0; num1 < vector_Contacts1.Count; ++num1)
            {
                appendContacts(vector_Contacts1[num1]);
            }
            for (int num1 = 0; num1 < vector_Contacts1.Count; ++num1)
            {
            }
        }
Exemple #3
0
    private void  fromJSONContact(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        OneContactJSON convert_classy = OneContactJSON.from_json(json_value, ignore_extras, true);

        setContact(convert_classy);
    }
Exemple #4
0
 public void setContact(OneContactJSON new_value)
 {
     if (flagHasContact)
     {
     }
     flagHasContact = true;
     storeContact   = new_value;
 }
Exemple #5
0
 public void appendValue(OneContactJSON to_append)
 {
     if (!flagHasValue)
     {
         flagHasValue = true;
         storeValue.Clear();
     }
     Debug.Assert(flagHasValue);
     storeValue.Add(to_append);
 }
Exemple #6
0
 public void appendContacts(OneContactJSON to_append)
 {
     if (!flagHasContacts)
     {
         flagHasContacts = true;
         storeContacts.Clear();
     }
     Debug.Assert(flagHasContacts);
     storeContacts.Add(to_append);
 }
Exemple #7
0
 public void appendFoundMatches(OneContactJSON to_append)
 {
     if (!flagHasFoundMatches)
     {
         flagHasFoundMatches = true;
         storeFoundMatches.Clear();
     }
     Debug.Assert(flagHasFoundMatches);
     storeFoundMatches.Add(to_append);
 }