Example #1
0
 public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorNativeData = new MusicChartsCommandNativeDataJSON.HoldingGenerator("field \"NativeData\" of the MusicChartsCommand class", ignore_extras);
     unknownFieldGenerator    = new UnknownFieldGenerator(ignore_extras);
     set_what("the MusicChartsCommand class");
 }
Example #2
0
 public Generator() : base(false)
 {
     fieldGeneratorNativeData = new MusicChartsCommandNativeDataJSON.HoldingGenerator("field \"NativeData\" of the MusicChartsCommand class", false);
     unknownFieldGenerator    = new UnknownFieldGenerator(false);
     set_what("the MusicChartsCommand class");
 }
Example #3
0
 public void setNativeData(MusicCommandNativeDataJSON new_value)
 {
     MusicChartsCommandNativeDataJSON.HoldingGenerator convert_handler = new MusicChartsCommandNativeDataJSON.HoldingGenerator("Type MusicChartsCommandNativeDataJSON");
     new_value.write_as_json(convert_handler);
     setNativeData(convert_handler.value);
 }