Package railo.runtime.cfx.customtag

Examples of railo.runtime.cfx.customtag.JavaCFXTagClass


        while(it.hasNext()) {
            CFXTagClass tag=(CFXTagClass) map.get(it.next());
            if(tag instanceof JavaCFXTagClass) {
                row++;
                qry.addRow(1);
                JavaCFXTagClass jtag =(JavaCFXTagClass) tag;
                qry.setAt(KeyConstants._displayname,row,tag.getDisplayType());
                qry.setAt(KeyConstants._sourcename,row,tag.getSourceName());
                qry.setAt(KeyConstants._readonly,row,Caster.toBoolean(tag.isReadOnly()));
                qry.setAt(KeyConstants._isvalid,row,Caster.toBoolean(tag.isValid()));
                qry.setAt(KeyConstants._name,row,jtag.getName());
                qry.setAt(KeyConstants._class,row,jtag.getStrClass());
            }
           
        }
        pageContext.setVariable(getString("admin",action,"returnVariable"),qry);
    }
View Full Code Here


                qry.setAt(KeyConstants._name,row,ctag.getName());
                qry.setAt("procedure_class",row,ctag.getProcedure());
                qry.setAt("keepalive",row,Caster.toBoolean(ctag.getKeepAlive()));
            }
            else if(tag instanceof JavaCFXTagClass) {
                JavaCFXTagClass jtag =(JavaCFXTagClass) tag;
                qry.setAt(KeyConstants._name,row,jtag.getName());
                qry.setAt("procedure_class",row,jtag.getStrClass());
            }
           
        }
        pageContext.setVariable(getString("admin",action,"returnVariable"),qry);
    }
View Full Code Here

          // Java CFX Tags
          if (type.equalsIgnoreCase("java")) {
            String name = cfxTags[i].getAttribute("name");
            String clazz = cfxTags[i].getAttribute("class");
            if (!StringUtil.isEmpty(name) && !StringUtil.isEmpty(clazz)) {
              map.put(name.toLowerCase(), new JavaCFXTagClass(name, clazz));
            }
          }
          // C++ CFX Tags
          else if (type.equalsIgnoreCase("cpp")) {
            String name = cfxTags[i].getAttribute("name");
View Full Code Here

TOP

Related Classes of railo.runtime.cfx.customtag.JavaCFXTagClass

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.