public function get($ajaxWidgetId)
{
$ajaxWidgetId = (int) $ajaxWidgetId;
if (!isset($this->widgetContexts[$ajaxWidgetId])) {
throw new WidgetContextNotFoundException('No widget context was found for the Ajax Widget Identifier "' . $ajaxWidgetId . '". This only happens if AJAX URIs are called without including the widget on a page.', 1284793775);
}
return $this->widgetContexts[$ajaxWidgetId];
}