Well you could rather just have an interface like for instance called MenuOption with a method on it.



public interface MenuOption {
public void execute();
}


Then you would create...