Esempio n. 1
0
 protected void finish(HomeAutomationSetWindSpeedDeltaCommandJSON result)
 {
     if (fieldGeneratorWindSpeedDelta.have_value)
     {
         result.setWindSpeedDeltaText(fieldGeneratorWindSpeedDelta.value);
         fieldGeneratorWindSpeedDelta.have_value = false;
     }
     else if ((!(result.hasWindSpeedDelta())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"WindSpeedDelta\" field was missing.");
     }
     base.finish(result);
 }
Esempio n. 2
0
        protected override void finish()
        {
            if (!(getHomeAutomationControlCommandJSONKey().Equals("HomeAutomationSetWindSpeedDeltaCommand")))
            {
                throw new Exception("The key field has a value other than `HomeAutomationSetWindSpeedDeltaCommand'.");
            }
            HomeAutomationSetWindSpeedDeltaCommandJSON result = new HomeAutomationSetWindSpeedDeltaCommandJSON();

            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.extraHomeAutomationSetWindSpeedDeltaCommandAppendPair(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);
        }
Esempio n. 3
0
 protected override void handle_result(HomeAutomationSetWindSpeedDeltaCommandJSON result)
 {
     top.value.Add(result);
 }
Esempio n. 4
0
        protected override void handle_result(HomeAutomationSetWindSpeedDeltaCommandJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Esempio n. 5
0
 protected abstract void handle_result(HomeAutomationSetWindSpeedDeltaCommandJSON new_result);