Package org.springframework.richclient.application.mdi.contextmenu

Examples of org.springframework.richclient.application.mdi.contextmenu.DefaultDesktopCommandGroupFactory


    this.desktopCommandGroupFactory = desktopCommandGroupFactory;
  }
 
  public DesktopCommandGroupFactory getDesktopCommandGroupFactory() {
    if(desktopCommandGroupFactory == null) {
      desktopCommandGroupFactory = new DefaultDesktopCommandGroupFactory();
    }
   
    return desktopCommandGroupFactory;
  }
View Full Code Here


        if (JdkVersion.isAtLeastJava16()) {
            return new TabbedSwingDockingApplicationPage(window, descriptor);
        } else if (JdkVersion.isAtLeastJava15()) {
            return new SwingDockingApplicationPage(window, descriptor);
        } else {
            return new DesktopApplicationPage(window, descriptor, JDesktopPane.OUTLINE_DRAG_MODE, new DefaultDesktopCommandGroupFactory());
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.richclient.application.mdi.contextmenu.DefaultDesktopCommandGroupFactory

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.