public class Ticket { public static final float REG_CHILD_PRICE = 7.99f; public static final float REG_ADULT_PRICE = 10.99f; public static final float REG_SENIOR_PRICE = 8.50f; public char theatreID; // ID of the theatre to which it is valid public Ticket(char id) { theatreID = id; } }