001 package railo.runtime.type; 002 003 import railo.runtime.PageContext; 004 import railo.runtime.exp.PageException; 005 006 public interface UDFPlus extends UDF { 007 public Object getDefaultValue(PageContext pc, int index, Object defaultValue) throws PageException; 008 public int getIndex(); 009 }