Example #1
0
 public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorDirection    = new FieldHoldingGeneratorDirection("field \"Direction\" of the RobotMoveCommandIntent class");
     fieldGeneratorDistance     = new JSONHoldingNumberTextGenerator("field \"Distance\" of the RobotMoveCommandIntent class");
     fieldGeneratorDistanceUnit = new FieldHoldingGeneratorDistanceUnit("field \"DistanceUnit\" of the RobotMoveCommandIntent class");
     unknownFieldGenerator      = new UnknownFieldGenerator(ignore_extras);
     set_what("the RobotMoveCommandIntent class");
 }
Example #2
0
 public Generator() : base(false)
 {
     fieldGeneratorDirection    = new FieldHoldingGeneratorDirection("field \"Direction\" of the RobotMoveCommand class");
     fieldGeneratorDistance     = new JSONHoldingNumberTextGenerator("field \"Distance\" of the RobotMoveCommand class");
     fieldGeneratorDistanceUnit = new FieldHoldingGeneratorDistanceUnit("field \"DistanceUnit\" of the RobotMoveCommand class");
     unknownFieldGenerator      = new UnknownFieldGenerator(false);
     set_what("the RobotMoveCommand class");
 }
 public Generator()
 {
     fieldGeneratorShipName       = new FieldHoldingGeneratorShipName("field \"ShipName\" of the BattleshipShipType class");
     fieldGeneratorDirection      = new FieldHoldingGeneratorDirection("field \"Direction\" of the BattleshipShipType class");
     fieldGeneratorLength         = new FieldHoldingGeneratorLength("field \"Length\" of the BattleshipShipType class");
     fieldGeneratorShipCoordinate = new BattleshipCoordinateJSON.HoldingGenerator("field \"ShipCoordinate\" of the BattleshipShipType class", false);
     unknownFieldGenerator        = new UnknownFieldGenerator(false);
     set_what("the BattleshipShipType class");
     allow_incomplete = false;
     allow_unpolished = false;
 }
Example #4
0
 public Generator() : base(false)
 {
     fieldGeneratorDirection = new FieldHoldingGeneratorDirection("field \"Direction\" of the RobotTurnCommand class");
     unknownFieldGenerator   = new UnknownFieldGenerator(false);
     set_what("the RobotTurnCommand class");
 }
Example #5
0
 public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorDirection = new FieldHoldingGeneratorDirection("field \"Direction\" of the RobotTurnCommand class");
     unknownFieldGenerator   = new UnknownFieldGenerator(ignore_extras);
     set_what("the RobotTurnCommand class");
 }