public Generator() : base(false)
 {
     fieldGeneratorAlbumsLabel = new JSONHoldingStringGenerator("field \"AlbumsLabel\" of the MusicArtist class");
     fieldGeneratorAlbums      = new MusicAlbumBaseJSON.HoldingArrayGenerator("field \"Albums\" of the MusicArtist class", false);
     fieldGeneratorTracksLabel = new JSONHoldingStringGenerator("field \"TracksLabel\" of the MusicArtist class");
     fieldGeneratorTracks      = new MusicTrackBaseJSON.HoldingArrayGenerator("field \"Tracks\" of the MusicArtist class", false);
     set_what("the MusicArtist class");
 }
 public Generator(bool ignore_extras) : base(ignore_extras)
 {
     fieldGeneratorAlbumsLabel = new JSONHoldingStringGenerator("field \"AlbumsLabel\" of the MusicArtist class");
     fieldGeneratorAlbums      = new MusicAlbumBaseJSON.HoldingArrayGenerator("field \"Albums\" of the MusicArtist class", ignore_extras);
     fieldGeneratorTracksLabel = new JSONHoldingStringGenerator("field \"TracksLabel\" of the MusicArtist class");
     fieldGeneratorTracks      = new MusicTrackBaseJSON.HoldingArrayGenerator("field \"Tracks\" of the MusicArtist class", ignore_extras);
     set_what("the MusicArtist class");
 }