mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
27.10.2010 03fe0954e42abf00746b8efa4c79ee74cf514427
opends/src/quicksetup/org/opends/quicksetup/ui/GuiApplication.java
@@ -71,6 +71,8 @@
  /** The QuickSetupDialog in control. */
  private QuickSetupDialog qs;
  private String[] args = {};
  /**
   * Constructs an instance of an application.  Subclasses
   * of this application must have a default constructor.
@@ -633,4 +635,23 @@
  public void setQuickSetupDialog(QuickSetupDialog dialog) {
    this.qs = dialog;
  }
  /**
   * Sets the arguments passed in the command-line to launch the application.
   * @param args the arguments passed in the command-line to launch the
   * application.
   */
  public void setUserArguments(String[] args)
  {
    this.args = args;
  }
  /**
   * Returns the arguments passed in the command-line to launch the application.
   * @return the arguments passed in the command-line to launch the application.
   */
  public String[] getUserArguments()
  {
    return args;
  }
}