001 package railo.runtime.type.scope; 002 003 public interface BindScope { 004 005 /** 006 * sets if scope is binded to a other variable for using outside of a udf 007 * @param bind 008 */ 009 public void setBind(boolean bind); 010 011 /** 012 * @return returns if scope is binded to a other variable for using outside of a udf 013 */ 014 public boolean isBind(); 015 }