Exemplo n.º 1
0
 protected void finish(TimezoneLookupInformationNuggetJSON result)
 {
     if (fieldGeneratorMapLocation.have_value)
     {
         result.setMapLocation(fieldGeneratorMapLocation.value);
         fieldGeneratorMapLocation.have_value = false;
     }
     else if ((!(result.hasMapLocation())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"MapLocation\" field was missing.");
     }
     if (fieldGeneratorDateAndTime.have_value)
     {
         result.setDateAndTime(fieldGeneratorDateAndTime.value);
         fieldGeneratorDateAndTime.have_value = false;
     }
     else if ((!(result.hasDateAndTime())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"DateAndTime\" field was missing.");
     }
     if (fieldGeneratorOlsonCode.have_value)
     {
         result.setOlsonCode(fieldGeneratorOlsonCode.value);
         fieldGeneratorOlsonCode.have_value = false;
     }
     else if ((!(result.hasOlsonCode())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"OlsonCode\" field was missing.");
     }
     if (fieldGeneratorAbbreviatedCurrentRule.have_value)
     {
         result.setAbbreviatedCurrentRule(fieldGeneratorAbbreviatedCurrentRule.value);
         fieldGeneratorAbbreviatedCurrentRule.have_value = false;
     }
     else if ((!(result.hasAbbreviatedCurrentRule())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"AbbreviatedCurrentRule\" field was missing.");
     }
     if (fieldGeneratorOffset.have_value)
     {
         result.setOffsetText(fieldGeneratorOffset.value);
         fieldGeneratorOffset.have_value = false;
     }
     else if ((!(result.hasOffset())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Offset\" field was missing.");
     }
     if (fieldGeneratorUnits.have_value)
     {
         result.setUnits(fieldGeneratorUnits.value);
         fieldGeneratorUnits.have_value = false;
     }
     else if ((!(result.hasUnits())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Units\" field was missing.");
     }
     base.finish(result);
 }
Exemplo n.º 2
0
        protected override void finish()
        {
            if (!(getDateAndTimeInformationNuggetJSONKey().Equals("TimezoneLookup")))
            {
                throw new Exception("The key field has a value other than `TimezoneLookup'.");
            }
            TimezoneLookupInformationNuggetJSON result = new TimezoneLookupInformationNuggetJSON();

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