Package railo.runtime

Examples of railo.runtime.InterfaceImpl


      
    return rtn;
    }
 
    public static InterfaceImpl loadInterface(PageContext pc,Page page, PageSource ps,String callPath, boolean isRealPath, Map interfaceUDFs) throws PageException  {
      InterfaceImpl rtn=null;
        if(pc.getConfig().debug()) {
            DebugEntryTemplate debugEntry=pc.getDebugger().getEntry(pc,ps);
            pc.addPageSource(ps,true);
           
            int currTime=pc.getExecutionTime();
View Full Code Here


    private static InterfaceImpl initInterface(PageContext pc,Page page,String callPath,boolean isRealPath, Map interfaceUDFs) throws PageException {
      if(!(page instanceof InterfacePage))
      throw new ApplicationException("invalid interface definition ["+callPath+"]");
    InterfacePage ip=(InterfacePage)page;
    InterfaceImpl i = ip.newInstance(callPath,isRealPath,interfaceUDFs);
    return i;
  }
View Full Code Here

      return cfc.getMetaData(pc);
    }
    // TODO better solution
    catch(ApplicationException ae){
      try{
        InterfaceImpl inter = ComponentLoader.loadInterface(pc,((PageContextImpl)pc).getCurrentPageSource(null), Caster.toString(obj), new HashMap());
        return inter.getMetaData(pc);
      }
      catch(PageException pe){
        throw ae;
      }
    }
View Full Code Here

TOP

Related Classes of railo.runtime.InterfaceImpl

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.