Exemplo n.º 1
0
 protected void finish(FlightTravelLocationFilterJSON result)
 {
     if (fieldGeneratorIncludes.have_value)
     {
         result.initIncludes();
         int count = fieldGeneratorIncludes.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendIncludes(fieldGeneratorIncludes.value[num]);
         }
         fieldGeneratorIncludes.value.Clear();
         fieldGeneratorIncludes.have_value = false;
     }
     if (fieldGeneratorExcludes.have_value)
     {
         result.initExcludes();
         int count = fieldGeneratorExcludes.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendExcludes(fieldGeneratorExcludes.value[num]);
         }
         fieldGeneratorExcludes.value.Clear();
         fieldGeneratorExcludes.have_value = false;
     }
     if (fieldGeneratorDefaultForOthers.have_value)
     {
         result.setDefaultForOthers(fieldGeneratorDefaultForOthers.value);
         fieldGeneratorDefaultForOthers.have_value = false;
     }
 }
    private void  fromJSONDestinationLocationFilter(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        FlightTravelLocationFilterJSON convert_classy = FlightTravelLocationFilterJSON.from_json(json_value, ignore_extras, true);

        setDestinationLocationFilter(convert_classy);
    }
 public void setDestinationLocationFilter(FlightTravelLocationFilterJSON new_value)
 {
     if (flagHasDestinationLocationFilter)
     {
     }
     flagHasDestinationLocationFilter = true;
     storeDestinationLocationFilter   = new_value;
 }
Exemplo n.º 4
0
        protected override void finish()
        {
            FlightTravelLocationFilterJSON result = new FlightTravelLocationFilterJSON();

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