Example #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 UserAppsJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <AppSpecJSON> vector_Value1 = new List <AppSpecJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            AppSpecJSON convert_classy = AppSpecJSON.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)
        {
        }
    }
        private void  fromJSONRequestedApp(JSONValue json_value, bool ignore_extras)
        {
            Debug.Assert(json_value != null);
            AppSpecJSON convert_classy = AppSpecJSON.from_json(json_value, ignore_extras, true);

            setRequestedApp(convert_classy);
        }
 public void setRequestedApp(AppSpecJSON new_value)
 {
     if (flagHasRequestedApp)
     {
     }
     flagHasRequestedApp = true;
     storeRequestedApp   = new_value;
 }
Example #4
0
 public void appendValue(AppSpecJSON to_append)
 {
     if (!flagHasValue)
     {
         flagHasValue = true;
         storeValue.Clear();
     }
     Debug.Assert(flagHasValue);
     storeValue.Add(to_append);
 }