Package net.paoding.rose.web.portal

Examples of net.paoding.rose.web.portal.Window


        // 定义窗口任务
        WindowTask task = new WindowTask(window, request, response);

        // 注册到相关变量中
        Window windowInView = new WindowForView(window);
        synchronized (windows) {
            this.windows.add(windowInView);
        }
        // for render
        this.invocation.addModel(name, windowInView);
View Full Code Here


*/
public class MergeWindowAttributesToModelInterceptor extends ControllerInterceptorAdapter {

    @Override
    public Object after(Invocation inv, Object instruction) throws Exception {
        Window window = PortalUtils.getWindow(inv);
        if (window != null) {
            inv.getModel().merge(window.getAttributes());
        }
        return instruction;
    }
View Full Code Here

TOP

Related Classes of net.paoding.rose.web.portal.Window

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.