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