Esempio n. 1
0
    private void  fromJSONWaitingForDataProviders(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 WaitingForDataProviders of FlightSearchProgressDetailsJSON is not an array.");
        }
        int count1 = json_array1.componentCount();

        if (count1 < 1)
        {
            throw new Exception("The value for field WaitingForDataProviders of FlightSearchProgressDetailsJSON has too few elements.");
        }
        List <FlightDataProviderJSON> vector_WaitingForDataProviders1 = new List <FlightDataProviderJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            FlightDataProviderJSON convert_classy = FlightDataProviderJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_WaitingForDataProviders1.Add(convert_classy);
        }
        Debug.Assert(vector_WaitingForDataProviders1.Count >= 1);
        initWaitingForDataProviders();
        for (int num1 = 0; num1 < vector_WaitingForDataProviders1.Count; ++num1)
        {
            appendWaitingForDataProviders(vector_WaitingForDataProviders1[num1]);
        }
        for (int num1 = 0; num1 < vector_WaitingForDataProviders1.Count; ++num1)
        {
        }
    }
Esempio n. 2
0
 public void appendWaitingForDataProviders(FlightDataProviderJSON to_append)
 {
     if (!flagHasWaitingForDataProviders)
     {
         flagHasWaitingForDataProviders = true;
         storeWaitingForDataProviders.Clear();
     }
     Debug.Assert(flagHasWaitingForDataProviders);
     storeWaitingForDataProviders.Add(to_append);
 }
 protected void finish(FlightDataProviderJSON result)
 {
     if (fieldGeneratorName.have_value)
     {
         result.setName(fieldGeneratorName.value);
         fieldGeneratorName.have_value = false;
     }
     else if ((!(result.hasName())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Name\" field was missing.");
     }
 }
        protected override void finish()
        {
            FlightDataProviderJSON result = new FlightDataProviderJSON();

            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.extraFlightDataProviderAppendPair(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);
        }
 protected override void handle_result(FlightDataProviderJSON result)
 {
     top.value.Add(result);
 }
        protected override void handle_result(FlightDataProviderJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
 protected abstract void handle_result(FlightDataProviderJSON new_result);