Package railo.runtime.type.scope

Examples of railo.runtime.type.scope.VariablesImpl


        thistagScope.set(EXECUTION_MODE,"start");     
        thistagScope.set(EXECUTE_BODY,Boolean.TRUE);
        thistagScope.set(KeyConstants._HASENDTAG,Caster.toBoolean(hasBody));
       
   
    ctVariablesScope=new VariablesImpl();
        ctVariablesScope.setEL(KeyConstants._ATTRIBUTES,attributesScope);
        ctVariablesScope.setEL(KeyConstants._CALLER,callerScope);
        ctVariablesScope.setEL(KeyConstants._THISTAG,thistagScope);
       
       
View Full Code Here


        forceWriter=writer;
        
     // Scopes
         server=ScopeContext.getServerScope(this);
         if(hasFamily) {
           variablesRoot=new VariablesImpl();
           variables=variablesRoot;
           request=new RequestImpl();
           _url=new URLImpl();
           _form=new FormImpl();
           urlForm=new UrlFormImpl(_form,_url);
           undefined=
               new UndefinedImpl(this,config.getScopeCascadingType());
          
           hasFamily=false;
         }
         else if(variables==null) {
           variablesRoot=new VariablesImpl();
           variables=variablesRoot;
         }
         request.initialize(this);
        
     if(config.mergeFormAndURL()) {
View Full Code Here

TOP

Related Classes of railo.runtime.type.scope.VariablesImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.