Package com.volantis.mcs.protocols.widgets.renderers

Examples of com.volantis.mcs.protocols.widgets.renderers.MapRenderer


    public XDIMEResult callOpenOnProtocol(XDIMEContextInternal context, XDIMEAttributes attributes)
        throws XDIMEException {

        try {
            MapRenderer mapRenderer = null;
           
            // First get the widget module, which is a part of protocol
            // responsible for rendering widgets. Thec ask for renderer.
            WidgetModule widgetModule =  getWidgetModule(context);       
            if (null != widgetModule){
                mapRenderer = widgetModule.getMapRenderer();
            }
      
            if (null != mapRenderer){
                mapRenderer.renderMapView(getProtocol(context),
                        (WidgetAttributes)protocolAttributes);            
            }
        } catch (ProtocolException e) {
            logger.error("rendering-error", getTagName(), e);
   
View Full Code Here

TOP

Related Classes of com.volantis.mcs.protocols.widgets.renderers.MapRenderer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.