001    package railo.runtime;
002    
003    import railo.runtime.type.Objects;
004    import railo.runtime.type.scope.Variables;
005    
006    public interface ComponentScope extends Variables,Objects {
007    
008    
009        /**
010         * Returns the value of component.
011         * @return value component
012         */
013        public Component getComponent();
014    }