Beispiel #1
0
 protected void finish(RockPaperScissorsStartGameCommandJSON result)
 {
     if (fieldGeneratorNativeData.have_value)
     {
         result.setNativeData(fieldGeneratorNativeData.value);
         fieldGeneratorNativeData.have_value = false;
     }
     else if ((!(result.hasNativeData())) && !allow_incomplete)
     {
         error("When parsing the object for %what%, the \"NativeData\" field was missing.");
     }
     base.finish(result);
 }
Beispiel #2
0
        protected override void finish()
        {
            if (!(getRockPaperScissorsCommandJSONKey().Equals("RockPaperScissorsStartGameCommand")))
            {
                throw new Exception("The key field has a value other than `RockPaperScissorsStartGameCommand'.");
            }
            RockPaperScissorsStartGameCommandJSON result = new RockPaperScissorsStartGameCommandJSON();

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