예제 #1
0
 protected void finish(MortgageCalculatorInputVariablePrincipalJSON result)
 {
     if (fieldGeneratorPrincipal.have_value)
     {
         result.setPrincipal(fieldGeneratorPrincipal.value);
         fieldGeneratorPrincipal.have_value = false;
     }
     else if ((!(result.hasPrincipal())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"Principal\" field was missing.");
     }
     if (fieldGeneratorAmbiguityWithHomeValue.have_value)
     {
         result.setAmbiguityWithHomeValue(fieldGeneratorAmbiguityWithHomeValue.value);
         fieldGeneratorAmbiguityWithHomeValue.have_value = false;
     }
     base.finish(result);
 }
예제 #2
0
        protected override void finish()
        {
            if (!(getMortgageCalculatorInputVariableJSONKey().Equals("Principal")))
            {
                throw new Exception("The key field has a value other than `Principal'.");
            }
            MortgageCalculatorInputVariablePrincipalJSON result = new MortgageCalculatorInputVariablePrincipalJSON();

            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.extraMortgageCalculatorInputVariablePrincipalAppendPair(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);
        }
예제 #3
0
 protected override void handle_result(MortgageCalculatorInputVariablePrincipalJSON result)
 {
     top.value.Add(result);
 }
예제 #4
0
        protected override void handle_result(MortgageCalculatorInputVariablePrincipalJSON result)
        {
//@@@            Debug.Assert(!have_value);
            have_value = true;
            value      = result;
        }
예제 #5
0
 protected abstract void handle_result(MortgageCalculatorInputVariablePrincipalJSON new_result);