Package com.aesthete.swingobjects.fw.common.scope

Examples of com.aesthete.swingobjects.fw.common.scope.RequestScopeObject


    public static void processAction(String action){
      processAction(action,ReqScopeConstants.Request);
    }

    public static void processAction(String action,ReqScopeConstants scope){
        RequestScopeObject scopeObj=null;
        try{
            scopeObj=RequestScope.getObjectFromScope(scope);
             initCompBeforeAction(scopeObj.getCompMap());
            ActionProcessor processor=new ActionProcessor();
            processor.execute(action, scope);
        }catch(SwingObjectsException e){
            CommonUI.showErrorDialogForComponent(scopeObj.getActionPerformOnComp(), e);
            CommonUI.setDefaultsComponents(scopeObj.getCompMap().values().iterator());
        }
    }
View Full Code Here

TOP

Related Classes of com.aesthete.swingobjects.fw.common.scope.RequestScopeObject

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.