private void  fromJSONChannel(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        HomeAutomationTVChannelJSON convert_classy = HomeAutomationTVChannelJSON.from_json(json_value, ignore_extras, true);

        setChannel(convert_classy);
    }
 public void setChannel(HomeAutomationTVChannelJSON new_value)
 {
     if (flagHasChannel)
     {
     }
     flagHasChannel = true;
     storeChannel   = new_value;
 }
コード例 #3
0
 protected void finish(HomeAutomationTVChannelJSON result)
 {
     if (fieldGeneratorChannelDelta.have_value)
     {
         result.setChannelDelta(fieldGeneratorChannelDelta.value);
         fieldGeneratorChannelDelta.have_value = false;
     }
     base.finish(result);
 }
コード例 #4
0
        protected override void finish()
        {
            HomeAutomationTVChannelJSON result = new HomeAutomationTVChannelJSON();

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