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