Package railo.runtime.component

Examples of railo.runtime.component.InterfaceCollection


        _data=MapFactory.getConcurrentMap();
      }
     
      // implements
      if(!StringUtil.isEmpty(properties.implement)) {
        interfaceCollection=new InterfaceCollection((PageContextImpl)pageContext,getPageSource(),properties.implement);
      }
     
      // scope
      if(useShadow=pageContext.getConfig().useComponentShadow()) {
          if(base==null) scope=new ComponentScopeShadow(this,MapFactory.getConcurrentMap());
View Full Code Here


        Struct ex=null;
        if(comp.base!=null) ex=getMetaData(access,pc,comp.base,true);
        if(ex!=null)sct.set(KeyConstants._extends,ex);
       
        // implements
        InterfaceCollection ic = comp.interfaceCollection;
        if(ic!=null){
          Set<String> set = ListUtil.listToSet(comp.properties.implement, ",",true);
            InterfaceImpl[] interfaces = comp.interfaceCollection.getInterfaces();
            if(!ArrayUtil.isEmpty(interfaces)){
              Struct imp=new StructImpl();
View Full Code Here

TOP

Related Classes of railo.runtime.component.InterfaceCollection

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.