Package railo.transformer.library.tag

Examples of railo.transformer.library.tag.TagLib


  public static Struct call(PageContext pc , String nameSpace, String strTagName) throws PageException {
    TagLib[] tlds;
    tlds = ((ConfigImpl)pc.getConfig()).getTLDs();

   
    TagLib tld=null;
    TagLibTag tag=null;
    for(int i=0;i<tlds.length;i++) {
        tld=tlds[i];
      if(tld.getNameSpaceAndSeparator().equalsIgnoreCase(nameSpace)) {
          tag = tld.getTag(strTagName.toLowerCase());
          if(tag!=null)break;
      }
     
    }
    if(tag == null) throw new ExpressionException("tag ["+nameSpace+strTagName+"] is not a built in tag");
View Full Code Here

TOP

Related Classes of railo.transformer.library.tag.TagLib

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.