Package org.springframework.richclient.components

Examples of org.springframework.richclient.components.ShadowBorderFrame


   * has been provided with a {@link MessageSource}, it will be used to
   * retrieve the splash screen's frame title under the key
   * {@value #SPLASH_TITLE_KEY}.
   */
  public final void splash() {
    frame = shadowBorder ? new ShadowBorderFrame() : new JFrame();
    if (isRootFrame())
      JOptionPane.setRootFrame(frame);

    frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
    frame.setUndecorated(true);
View Full Code Here

TOP

Related Classes of org.springframework.richclient.components.ShadowBorderFrame

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.