Package railo.runtime.ext.tag

Examples of railo.runtime.ext.tag.AppendixTag


            while(it.hasNext()){
                tlt=(TagLibTag) tags.get(it.next());
                if(tlt.getTagClassName().equals(className)) {
                    // custm tag
                  if(tag instanceof AppendixTag) {
                        AppendixTag atag=(AppendixTag)tag;
                        if(atag.getAppendix()!=null && !(tag instanceof Module)) {
                            return tlt.getFullName().toUpperCase()+atag.getAppendix().toUpperCase();
                        }
                    }
                  // built in cfc based custom tag
                  if(tag instanceof CFTagCore) {
                    if(((CFTagCore)tag).getName().equals(tlt.getAttribute("__name").getDefaultValue()))
View Full Code Here

TOP

Related Classes of railo.runtime.ext.tag.AppendixTag

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.