Package com.draagon.meta.web.view

Examples of com.draagon.meta.web.view.WebView


      HtmlViewHelper.drawLink(page, link, val, getLinkClass(params), params);
    else
    {
      String viewRef = (String) getAttribute( "viewRef" );

      WebView mv = (WebView) getMetaField(o).getView( viewRef );

      String linkClass = getLinkClass(params);

      JspWriter out = page.getOut();

      // if ( text == null ) text = " ";

      if ( link != null )
      {
        out.print("<a" );
        if ( linkClass != null ) out.print( " class=\"" + linkClass + "\"" );
        out.print(" href=\"" + link + "\">");
      }

      mv.doView( page, o, mode, params );
      // out.print( text );

      if ( link != null ) out.print("</a>");
    }
  }
View Full Code Here

TOP

Related Classes of com.draagon.meta.web.view.WebView

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.