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 ComponentPro getComponent();
014    
015        //public void setComponent(ComponentImpl c);
016        //public void getInner(PageContext pc, Collection.Key key, Object defaultValue);
017    
018    }