Package org.springframework.richclient.application

Examples of org.springframework.richclient.application.PageDescriptorRegistry


    Assert.notNull(window, "Application window cannot be null.");
    populate();
  }

  private void populate() {
    PageDescriptorRegistry pageDescriptorRegistry = (PageDescriptorRegistry) ApplicationServicesLocator.services()
        .getService(PageDescriptorRegistry.class);

    PageDescriptor[] pages = pageDescriptorRegistry.getPageDescriptors();
    for (int i = 0; i < pages.length; i++) {
      PageDescriptor page = pages[i];
      addInternal(page.createShowPageCommand(window));
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.richclient.application.PageDescriptorRegistry

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.