package questions; public class YesNoQuestion extends Question { public YesNoQuestion( String text ) { super( text ); } public void askTheUser() { System.out.println( theText ); System.out.println( "YES or NO ...?" ); } }