001    package railo.runtime.type.ref;
002    
003    import railo.runtime.PageContext;
004    import railo.runtime.PageContextImpl;
005    import railo.runtime.exp.PageException;
006    import railo.runtime.type.Collection;
007    
008    public class SimpleVarRef implements Reference {
009    
010            //private PageContextImpl pc;
011    
012            public SimpleVarRef(PageContextImpl pc, String key) {
013                    //this.pc=pc;
014            }
015            
016            public Object get(PageContext pc) throws PageException {
017                    // TODO Auto-generated method stub
018                    return null;
019            }
020    
021            public Object get(PageContext pc, Object defaultValue) {
022                    // TODO Auto-generated method stub
023                    return null;
024            }
025    
026            public Collection.Key getKey() throws PageException {
027                    // TODO Auto-generated method stub
028                    return null;
029            }
030            public String getKeyAsString() throws PageException {
031                    // TODO Auto-generated method stub
032                    return null;
033            }
034    
035            public Object getParent() {
036                    // TODO Auto-generated method stub
037                    return null;
038            }
039    
040            public Object remove(PageContext pc) throws PageException {
041                    // TODO Auto-generated method stub
042                    return null;
043            }
044    
045            public Object removeEL(PageContext pc) {
046                    // TODO Auto-generated method stub
047                    return null;
048            }
049    
050            public Object set(PageContext pc, Object value) throws PageException {
051                    // TODO Auto-generated method stub
052                    return null;
053            }
054    
055            public Object setEL(PageContext pc, Object value) {
056                    // TODO Auto-generated method stub
057                    return null;
058            }
059    
060            public Object touch(PageContext pc) throws PageException {
061                    // TODO Auto-generated method stub
062                    return null;
063            }
064    
065            public Object touchEL(PageContext pc) {
066                    // TODO Auto-generated method stub
067                    return null;
068            }
069    
070    }