Package com.aesthete.swingobjects

Examples of com.aesthete.swingobjects.SwingObjectProperties


public class Launcher {

  public static void main(String[] args) {
    try {
      SwingObjectProperties props = new SwingObjectProperties();
      props.setAppPropsFile(Launcher.class.getResource("application.properties").getFile());
      props.setErrorPropsFile(Launcher.class.getResource("error.properties").getFile());
      props.setFramesXmlFile(Launcher.class.getResource("frames.xml").getFile());
      props.setLog4jFile(Launcher.class.getResource("log4j.properties").getFile());
      props.setSwingActionXmlFile(Launcher.class.getResource("swingaction.xml").getFile());

      SwingObjectsInit.initSwingObjects(props);

      SwingUtilities.invokeLater(new Runnable() {
        public void run() {
View Full Code Here

TOP

Related Classes of com.aesthete.swingobjects.SwingObjectProperties

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.