Package railo.runtime.functions.displayFormatting

Source Code of railo.runtime.functions.displayFormatting.AjaxLink

package railo.runtime.functions.displayFormatting;

import railo.runtime.PageContext;
import railo.runtime.exp.FunctionNotSupported;
import railo.runtime.exp.PageException;
import railo.runtime.ext.function.Function;

/**
* Implements the CFML Function AjaxLink
*/
public final class AjaxLink implements Function {
 
  public static String call(PageContext pc , String url) throws PageException {
    throw new FunctionNotSupported("AjaxLink");
  }
}
TOP

Related Classes of railo.runtime.functions.displayFormatting.AjaxLink

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.