Package com.opengamma.integration.tool

Examples of com.opengamma.integration.tool.GUIFeedback


   *
   * @param args the arguments, unused
   */
  public static void main(final String[] args) { // CSIGNORE
    s_logger.info("Updating example database");
    try (GUIFeedback feedback = new GUIFeedback("Updating simulated historical time series database")) {
      if (!new SimulatedHistoricalDataUpdater(feedback).initAndRun(args, TOOLCONTEXT_EXAMPLE_PROPERTIES, null, ToolContext.class)) {
        feedback.done("Could not update the time-series database - check that the server has been started");
      } else {
        System.exit(0);
      }
    } catch (final Exception ex) {
      GUIFeedback.shout(ex.getClass().getSimpleName() + " - " + ex.getMessage());
View Full Code Here

TOP

Related Classes of com.opengamma.integration.tool.GUIFeedback

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.