package questions; public class FreeTextQuestion extends Question { public FreeTextQuestion( String text ) { super( text ); } public void askTheUser() { System.out.println( theText ); System.out.println( "Well...? What�s the answer...?" ); } }