* @throws IllegalStateException if the context for the Page has not be set
*/
public Map<String, String> getMessages() {
if (messages == null) {
if (getContext() != null) {
messages = new MessagesMap(getClass(), PAGE_MESSAGES);
} else {
String msg = "Context not set cannot initialize messages";
throw new IllegalStateException(msg);
}