Package railo.runtime

Examples of railo.runtime.InterfacePage.newInstance()


    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;
  }
   
    private static ComponentImpl initComponent(PageContext pc,Page page,String callPath,boolean isRealPath) throws PageException {
      if(!(page instanceof ComponentPage)){
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.