protected void finish(HomeAutomationControlCommandJSON result)
 {
     if (fieldGeneratorOperation.have_value)
     {
         result.setOperation(fieldGeneratorOperation.value);
         fieldGeneratorOperation.have_value = false;
     }
     else if ((!(result.hasOperation())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Operation\" field was missing.");
     }
     if (fieldGeneratorDeviceSpecifier.have_value)
     {
         result.setDeviceSpecifier(fieldGeneratorDeviceSpecifier.value);
         fieldGeneratorDeviceSpecifier.have_value = false;
     }
     else if ((!(result.hasDeviceSpecifier())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"DeviceSpecifier\" field was missing.");
     }
     if (fieldGeneratorControlResult.have_value)
     {
         result.setControlResult(fieldGeneratorControlResult.value);
         fieldGeneratorControlResult.have_value = false;
     }
     base.finish(result);
 }
        protected override void finish()
        {
            if (!(keyGenerator.have_value))
            {
                throw new Exception("The `HomeAutomationControlCommandKind' field is missing.");
            }
            if (!(getCommandResultJSONKey().Equals("HomeAutomationControlCommand")))
            {
                throw new Exception("The key field has a value other than `HomeAutomationControlCommand'.");
            }
            HomeAutomationControlCommandJSON result = createForKey(keyGenerator.value, unknownFieldGenerator.index);

            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.extraHomeAutomationControlCommandAppendPair(unknownFieldGenerator.field_names[extra_num], unknownFieldGenerator.field_values[extra_num]);
            }
            unknownFieldGenerator.field_names.Clear();
            unknownFieldGenerator.field_values.Clear();
            unknownFieldGenerator.index = new Dictionary <string, JSONValue>();
            if (!allow_incomplete)
            {
                string missing_field_error = result.missing_field_error(allow_unpolished);
                if (missing_field_error != null)
                {
                    error(missing_field_error);
                }
            }
            handle_result(result);
        }
Exemplo n.º 3
0
 protected override void handle_result(HomeAutomationControlCommandJSON new_result)
 {
     handle_result((HomeAutomationSetWindSpeedCommandJSON )new_result);
 }
 protected override void handle_result(HomeAutomationControlCommandJSON new_result)
 {
     handle_result((HomeAutomationChangeChannelCommandJSON )new_result);
 }
 protected override void handle_result(HomeAutomationControlCommandJSON result)
 {
     top.value.Add(result);
 }
        protected override void handle_result(HomeAutomationControlCommandJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
 protected abstract void handle_result(HomeAutomationControlCommandJSON new_result);
 protected override void handle_result(HomeAutomationControlCommandJSON new_result)
 {
     handle_result((HomeAutomationSetTemperatureCommandJSON )new_result);
 }
 protected override void handle_result(HomeAutomationControlCommandJSON new_result)
 {
     handle_result((HomeAutomationSetBrightnessCommandJSON )new_result);
 }
 protected override void handle_result(HomeAutomationControlCommandJSON new_result)
 {
     handle_result((HomeAutomationSetVolumeDeltaCommandJSON )new_result);
 }