/** Detect the flag -addJREIU to turn on the generation of the JREIU. */
 protected void processFlag(String flag, PublisherInfo publisherInfo) {
   super.processFlag(flag, publisherInfo);
   if (flag.equalsIgnoreCase("-addJREIU")) // $NON-NLS-1$
   {
     addJRE = true;
   }
 }
  /**
   * Support for the download stats properties. See
   * https://bugs.eclipse.org/bugs/show_bug.cgi?id=310132
   */
  protected void processParameter(String arg, String parameter, PublisherInfo pinfo)
      throws URISyntaxException {
    super.processParameter(arg, parameter, pinfo);

    if (arg.equalsIgnoreCase("-p2.statsURI")) // $NON-NLS-1$
    statsURI = parameter;

    if (arg.equalsIgnoreCase("-p2.statsTrackedBundles")) // $NON-NLS-1$
    statsTrackedBundles = parameter;
  }