protected ElementRenderer getElementRenderer(XDIMEContextInternal context)
throws ProtocolException {
// First get the ticker module, which is a part of protocol
// responsible for rendering ticker widgets
GalleryModule galleryModule = getGalleryModule(context);
// No renderer if no module
if (null == galleryModule){
return null;
}
// Get renderer for this particular widget
return galleryModule.getElementRenderer(protocolAttributes);
}