001    package railo.runtime.type.scope;
002    
003    
004    public interface Variables extends Scope {
005    
006        /** 
007         * sets if scope is binded to a closure
008         * @param bind 
009         */
010        public void setBind(boolean bind);
011        
012    
013        /** 
014         * @return returns if scope is binded to a closure 
015         */
016        public abstract boolean isBind();
017        
018            //public void registerUDF(Collection.Key key, UserDefinedFunction udf);
019            //public void registerUDF(String key, UserDefinedFunction udf);
020    }