package questions; public abstract class Question { protected String theText; public Question() { theText = ""; } public Question( String text ) { theText = text; } public abstract void askTheUser(); }