final String title = portletExecutionManager.getPortletTitle(portletWindowId, this.request, this.response);
return CharacterDataEventImpl.create(title);
}
case PORTLET_NEW_ITEM_COUNT: {
final PortletNewItemCountPlaceholderEvent newItemCountPlaceholderEvent = (PortletNewItemCountPlaceholderEvent)event;
final IPortletWindowId portletWindowId = newItemCountPlaceholderEvent.getPortletWindowId();
final int newItemCount = portletExecutionManager.getPortletNewItemCount(portletWindowId, this.request, this.response);
return CharacterDataEventImpl.create(String.valueOf(newItemCount));
}