protected final void revealInParent() {
//If there is a parent slot defined, fire an event to place this
//presenter within in.
if (parentSlot != null) {
RevealContentEvent revealEvent =
new RevealContentEvent(parentSlot, this);
EventBus.fireEvent(revealEvent);
}
else {
//Otherwise, place this presenter in the root presenter
RevealRootContentEvent.fire(EventBus.get(), this);