/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package summer2014; /** * * @author jcmt */ public class Summer2014 { /** * @param args the command line arguments */ public static void main(String[] args) { Concert symphony = new Concert(); Concert band = new Concert(5,7,2014, "Beethoven", 5000); Performer georgeStrait = new Performer(5000.00f, "George Strait"); System.out.printf(" Concert date is %d and %d\n", band.getDay(), symphony.getDay()); System.out.printf(" Performers are %s and %s and %s\n", band.getPerformer().getPerformerName(), symphony.getPerformer().getPerformerName(), georgeStrait.getPerformerName()); } }