Package org.springframework.richclient.application.support

Examples of org.springframework.richclient.application.support.MultiViewPageDescriptor


    public void openWindow( String pageDescriptorId ) {
        ApplicationWindow newWindow = initWindow(createNewWindow());
        if ( pageDescriptorId == null ) {
          ApplicationPageFactory pageFactory
            = (ApplicationPageFactory)services().getService(ApplicationPageFactory.class);
          newWindow.showPage(pageFactory.createApplicationPage(newWindow, new MultiViewPageDescriptor()));
        }
        else {
          newWindow.showPage(pageDescriptorId);
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.richclient.application.support.MultiViewPageDescriptor

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.