示例#1
0
 public Generator() : base(false)
 {
     fieldGeneratorImageURL        = new JSONHoldingStringGenerator("field \"ImageURL\" of the BlackjackDoubledownInformationNugget class");
     fieldGeneratorBankroll        = new JSONHoldingNumberTextGenerator("field \"Bankroll\" of the BlackjackDoubledownInformationNugget class");
     fieldGeneratorPlayerHand      = new BlackjackHandJSON.HoldingGenerator("field \"PlayerHand\" of the BlackjackDoubledownInformationNugget class", false);
     fieldGeneratorPlayerHandTotal = new FieldHoldingGeneratorPlayerHandTotal("field \"PlayerHandTotal\" of the BlackjackDoubledownInformationNugget class");
     fieldGeneratorDealerHand      = new BlackjackHandJSON.HoldingGenerator("field \"DealerHand\" of the BlackjackDoubledownInformationNugget class", false);
     fieldGeneratorDealerHandTotal = new FieldHoldingGeneratorDealerHandTotal("field \"DealerHandTotal\" of the BlackjackDoubledownInformationNugget class");
     unknownFieldGenerator         = new UnknownFieldGenerator(false);
     set_what("the BlackjackDoubledownInformationNugget class");
 }
 public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorImageURL        = new JSONHoldingStringGenerator("field \"ImageURL\" of the BlackjackStandInformationNugget class");
     fieldGeneratorBankroll        = new JSONHoldingNumberTextGenerator("field \"Bankroll\" of the BlackjackStandInformationNugget class");
     fieldGeneratorPlayerHand      = new BlackjackHandJSON.HoldingGenerator("field \"PlayerHand\" of the BlackjackStandInformationNugget class", ignore_extras);
     fieldGeneratorPlayerHandTotal = new FieldHoldingGeneratorPlayerHandTotal("field \"PlayerHandTotal\" of the BlackjackStandInformationNugget class");
     fieldGeneratorDealerHand      = new BlackjackHandJSON.HoldingGenerator("field \"DealerHand\" of the BlackjackStandInformationNugget class", ignore_extras);
     fieldGeneratorDealerHandTotal = new FieldHoldingGeneratorDealerHandTotal("field \"DealerHandTotal\" of the BlackjackStandInformationNugget class");
     unknownFieldGenerator         = new UnknownFieldGenerator(ignore_extras);
     set_what("the BlackjackStandInformationNugget class");
 }