Package com.confluenity.jaylen.forms

Examples of com.confluenity.jaylen.forms.Splash


  public Application() throws IOException {

    final Properties properties = new Properties();
    properties.load(this.getClass().getResourceAsStream("/app.properties"));

    Splash splash = new Splash(MessageFormat.format("{0} {1}", properties.getProperty("application.name"), properties.getProperty("application.version")));

    this.springContext = new ClassPathXmlApplicationContext("spring/jaylen.xml");

    ((ClassPathXmlApplicationContext)this.springContext).setDisplayName(properties.getProperty("application.name"));
    ((ClassPathXmlApplicationContext)this.springContext).setBeanName("springContext");

    ((AbstractApplicationContext)this.springContext).registerShutdownHook();

    splash.dispose();
  }
View Full Code Here

TOP

Related Classes of com.confluenity.jaylen.forms.Splash

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.