public class Call911 { public static void main(String[] args) { CellPhone cell = new CellPhone(); cell.emergency(); } } class Phone { final void dial911() { System.out.println("Dial 911"); } } class CellPhone extends Phone { void emergency() { dial911(); } }