Пример #1
0
    private void  fromJSONExcludes(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        JSONArrayValue json_array1 = json_value.array_value();

        if (json_array1 == null)
        {
            throw new Exception("The value for field Excludes of FlightTravelLocationFilterJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field Excludes of FlightTravelLocationFilterJSON has too few elements.");
        }
        List <FlightTravelLocationJSON> vector_Excludes1 = new List <FlightTravelLocationJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            FlightTravelLocationJSON convert_classy = FlightTravelLocationJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Excludes1.Add(convert_classy);
        }
        Debug.Assert(vector_Excludes1.Count >= 1);
        initExcludes();
        for (int num2 = 0; num2 < vector_Excludes1.Count; ++num2)
        {
            appendExcludes(vector_Excludes1[num2]);
        }
        for (int num1 = 0; num1 < vector_Excludes1.Count; ++num1)
        {
        }
    }
Пример #2
0
    private void  fromJSONFlightTravelLocationForClient(JSONValue json_value, bool ignore_extras)
    {
        Debug.Assert(json_value != null);
        FlightTravelLocationJSON convert_classy = FlightTravelLocationJSON.from_json(json_value, ignore_extras, true);

        setFlightTravelLocationForClient(convert_classy);
    }
Пример #3
0
 public void setArrivalAirport(FlightTravelLocationJSON new_value)
 {
     if (flagHasArrivalAirport)
     {
     }
     flagHasArrivalAirport = true;
     storeArrivalAirport   = new_value;
 }
Пример #4
0
 public void setFlightTravelLocationForClient(FlightTravelLocationJSON new_value)
 {
     if (flagHasFlightTravelLocationForClient)
     {
     }
     flagHasFlightTravelLocationForClient = true;
     storeFlightTravelLocationForClient   = new_value;
 }
 public void setChangeToAirport(FlightTravelLocationJSON new_value)
 {
     if (flagHasChangeToAirport)
     {
     }
     flagHasChangeToAirport = true;
     storeChangeToAirport   = new_value;
 }
Пример #6
0
 public void setDepartureAirport(FlightTravelLocationJSON new_value)
 {
     if (flagHasDepartureAirport)
     {
     }
     flagHasDepartureAirport = true;
     storeDepartureAirport   = new_value;
 }
Пример #7
0
 public void appendExcludes(FlightTravelLocationJSON to_append)
 {
     if (!flagHasExcludes)
     {
         flagHasExcludes = true;
         storeExcludes.Clear();
     }
     Debug.Assert(flagHasExcludes);
     storeExcludes.Add(to_append);
 }
Пример #8
0
        protected override void finish()
        {
            FlightTravelLocationJSON result = new FlightTravelLocationJSON();

            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.extraFlightTravelLocationAppendPair(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);
        }
Пример #9
0
 protected void finish(FlightTravelLocationJSON result)
 {
     if (fieldGeneratorLocation.have_value)
     {
         result.setLocation(fieldGeneratorLocation.value);
         fieldGeneratorLocation.have_value = false;
     }
     else if ((!(result.hasLocation())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Location\" field was missing.");
     }
     if (fieldGeneratorAirportIATACodes.have_value)
     {
         result.initAirportIATACodes();
         int count = fieldGeneratorAirportIATACodes.value.Count;
         for (int num = 0; num < count; ++num)
         {
             result.appendAirportIATACodes(fieldGeneratorAirportIATACodes.value[num]);
         }
         fieldGeneratorAirportIATACodes.value.Clear();
         fieldGeneratorAirportIATACodes.have_value = false;
     }
 }
Пример #10
0
 protected override void handle_result(FlightTravelLocationJSON result)
 {
     top.value.Add(result);
 }
Пример #11
0
        protected override void handle_result(FlightTravelLocationJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
Пример #12
0
 protected abstract void handle_result(FlightTravelLocationJSON new_result);