Esempio n. 1
0
 public Generator()
 {
     fieldGeneratorCurrentAction  = new JSONHoldingStringGenerator("field \"CurrentAction\" of the RobotState class");
     fieldGeneratorRecordingVideo = new JSONHoldingBooleanGenerator("field \"RecordingVideo\" of the RobotState class");
     fieldGeneratorKnownRooms     = new KnownRoomsJSON.HoldingGenerator("field \"KnownRooms\" of the RobotState class", false);
     unknownFieldGenerator        = new UnknownFieldGenerator(false);
     set_what("the RobotState class");
     allow_incomplete = false;
     allow_unpolished = false;
 }
Esempio n. 2
0
 public Generator() : base(false)
 {
     fieldGeneratorKnownRooms = new KnownRoomsJSON.HoldingGenerator("field \"KnownRooms\" of the RobotListKnownRoomsCommand class", false);
     unknownFieldGenerator    = new UnknownFieldGenerator(false);
     set_what("the RobotListKnownRoomsCommand class");
 }
Esempio n. 3
0
 public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorKnownRooms = new KnownRoomsJSON.HoldingGenerator("field \"KnownRooms\" of the RobotListKnownRoomsCommand class", ignore_extras);
     unknownFieldGenerator    = new UnknownFieldGenerator(ignore_extras);
     set_what("the RobotListKnownRoomsCommand class");
 }