예제 #1
0
    private void  fromJSONMatchedItem(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        ClientMatchJSON convert_classy = ClientMatchJSON.from_json(json_value, ignore_extras, true);

        setMatchedItem(convert_classy);
    }
    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 ClientMatchesJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <ClientMatchJSON> vector_Value1 = new List <ClientMatchJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            ClientMatchJSON convert_classy = ClientMatchJSON.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)
        {
        }
    }
예제 #3
0
 public void setMatchedItem(ClientMatchJSON new_value)
 {
     if (flagHasMatchedItem)
     {
     }
     flagHasMatchedItem = true;
     storeMatchedItem   = new_value;
 }
 public void appendValue(ClientMatchJSON to_append)
 {
     if (!flagHasValue)
     {
         flagHasValue = true;
         storeValue.Clear();
     }
     Debug.Assert(flagHasValue);
     storeValue.Add(to_append);
 }
    public static ClientListMatchJSON from_ClientMatchJSON_json(ClientMatchJSON ancestor, bool ignore_extras)
    {
        Debug.Assert(ancestor != null);
        ClientListMatchJSON result;

        {
            HoldingGenerator handler = new HoldingGenerator("Type ClientListMatch", ignore_extras);
            ancestor.write_as_json(handler);
            result = handler.value;
        }
        return(result);
    }
 protected override void handle_result(ClientMatchJSON new_result)
 {
     handle_result((ClientListMatchJSON )new_result);
 }