Studio studio = new Studio();
studio.setName( "Abbey Road" );
studio.setCity( "London" );
Label label = new Label();
label.setStudio( studio );
label.setName( "EMY" );
Artist artist = new Artist();
artist.setName( "The Beatles" );
artist.setLabel( label );