Пример #1
0
 protected void finish(TypeValueJSON result)
 {
     if (fieldGeneratorMinimum.have_value)
     {
         result.setMinimumText(fieldGeneratorMinimum.value);
         fieldGeneratorMinimum.have_value = false;
     }
     else if ((!(result.hasMinimum())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Minimum\" field was missing.");
     }
     if (fieldGeneratorMaximum.have_value)
     {
         result.setMaximumText(fieldGeneratorMaximum.value);
         fieldGeneratorMaximum.have_value = false;
     }
     else if ((!(result.hasMaximum())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Maximum\" field was missing.");
     }
     if (fieldGeneratorStep.have_value)
     {
         result.setStepText(fieldGeneratorStep.value);
         fieldGeneratorStep.have_value = false;
     }
     else if ((!(result.hasStep())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Step\" field was missing.");
     }
 }
Пример #2
0
    private void  fromJSONValue(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 Value of RadioControlOtherAMBandsJSON is not an array.");
        }
        int count1 = json_array1.componentCount();
        List <TypeValueJSON> vector_Value1 = new List <TypeValueJSON>(count1);

        for (int num1 = 0; num1 < count1; ++num1)
        {
            TypeValueJSON convert_classy = TypeValueJSON.from_json(json_array1.component(num1), ignore_extras, true);
            vector_Value1.Add(convert_classy);
        }
        initValue();
        for (int num1 = 0; num1 < vector_Value1.Count; ++num1)
        {
            appendValue(vector_Value1[num1]);
        }
        for (int num1 = 0; num1 < vector_Value1.Count; ++num1)
        {
        }
    }
Пример #3
0
 public void appendValue(TypeValueJSON to_append)
 {
     if (!flagHasValue)
     {
         flagHasValue = true;
         storeValue.Clear();
     }
     Debug.Assert(flagHasValue);
     storeValue.Add(to_append);
 }
Пример #4
0
            protected override void finish()
            {
                TypeValueJSON result = new TypeValueJSON();

                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.extraTypeValueAppendPair(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);
            }
Пример #5
0
 protected void finish(TypeValueJSON result)
 {
     if (fieldGeneratorTag.have_value)
     {
         result.setTag(fieldGeneratorTag.value);
         fieldGeneratorTag.have_value = false;
     }
     else if ((!(result.hasTag())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Tag\" field was missing.");
     }
     if (fieldGeneratorRecognitionPattern.have_value)
     {
         result.setRecognitionPattern(fieldGeneratorRecognitionPattern.value);
         fieldGeneratorRecognitionPattern.have_value = false;
     }
     else if ((!(result.hasRecognitionPattern())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"RecognitionPattern\" field was missing.");
     }
     if (fieldGeneratorSpokenOutputForm.have_value)
     {
         result.setSpokenOutputForm(fieldGeneratorSpokenOutputForm.value);
         fieldGeneratorSpokenOutputForm.have_value = false;
     }
     else if ((!(result.hasSpokenOutputForm())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"SpokenOutputForm\" field was missing.");
     }
     if (fieldGeneratorWrittenOutputForm.have_value)
     {
         result.setWrittenOutputForm(fieldGeneratorWrittenOutputForm.value);
         fieldGeneratorWrittenOutputForm.have_value = false;
     }
     else if ((!(result.hasWrittenOutputForm())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"WrittenOutputForm\" field was missing.");
     }
 }
Пример #6
0
 protected override void handle_result(TypeValueJSON result)
 {
     top.value.Add(result);
 }
Пример #7
0
 protected override void handle_result(TypeValueJSON result)
 {
     //@@@            Debug.Assert(!have_value);
     have_value = true;
     value      = result;
 }
Пример #8
0
 protected abstract void handle_result(TypeValueJSON new_result);