Package org.araneaframework

Examples of org.araneaframework.OutputData


      return getWidgetFullIdFromContext(null, pageContext);
    }
 
  public static String getWidgetFullIdFromContext(String widgetId, PageContext pageContext) throws JspException {
    //Get widget id and view model from context
    OutputData output =
      (OutputData) pageContext.getRequest().getAttribute(
          StandardServletServiceAdapterComponent.OUTPUT_DATA_REQUEST_ATTRIBUTE);
   
    //Widget name given
    if (widgetId != null)
      return NameUtil.getFullName(output.getScope().toString(), widgetId);
    //Current widget
    else
      return output.getScope().toString();
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.OutputData

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.