Examples of StatisticsManager


Examples of org.antlr.works.stats.StatisticsManager

        typeCombo.setModel(typeModel);
    }

    public void dialogWillDisplay() {
        guiManager = new StatisticsManager(StatisticsReporter.TYPE_GUI);
        grammarManager = new StatisticsManager(StatisticsReporter.TYPE_GRAMMAR);
        runtimeManager = new StatisticsManager(StatisticsReporter.TYPE_RUNTIME);

        updateInfo(false);
    }
View Full Code Here

Examples of org.antlr.works.stats.StatisticsManager

        else
            return typeCombo.getSelectedIndex()+1;
    }

    protected void updateInfo(boolean textOnly) {
        StatisticsManager sm = null;
        boolean rangeEnabled = true;

        switch(getTypeIndex()) {
            case TYPE_GUI:
                rangeEnabled = false;
View Full Code Here

Examples of org.antlr.works.stats.StatisticsManager

            new Thread(this).start();
        }

        public boolean submit() {
            for (int i = 0; i < managers.length; i++) {
                StatisticsManager manager = managers[i];

                if(manager == guiManager && !usesAWStats)
                    continue;

                progress.setProgress(i+1);
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

   * @return instance of {@link StatisticsMode.PRODUCTION} {@link StatisticsManager}
   */

  public StatisticsManager getStatisticsManager1() {
    if (this.statisticsManager1 == null) {
      this.statisticsManager1 = new StatisticsManager(StatisticsMode.PRODUCTION, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager1;
  }
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

   *
   * @return instance of {@link StatisticsMode.THROUGHPUT} {@link StatisticsManager}
   */
  public StatisticsManager getStatisticsManager2() {
    if (this.statisticsManager2 == null) {
      this.statisticsManager2 = new StatisticsManager(StatisticsMode.THROUGHPUT, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager2;
  }
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

   *
   * @return instance of {@link StatisticsMode.CORRECTIONS} {@link StatisticsManager}
   */
  public StatisticsManager getStatisticsManager3() {
    if (this.statisticsManager3 == null) {
      this.statisticsManager3 = new StatisticsManager(StatisticsMode.CORRECTIONS, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager3;
  }
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

   *
   * @return instance of {@link StatisticsMode.STORAGE} {@link StatisticsManager}
   */
  public StatisticsManager getStatisticsManager4() {
    if (this.statisticsManager4 == null) {
      this.statisticsManager4 = new StatisticsManager(StatisticsMode.STORAGE, new UserProjectFilter(this.myProjekt.getId()), FacesContext
          .getCurrentInstance().getViewRoot().getLocale());
    }
    return this.statisticsManager4;
  }
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

  /*
   * Statistische Auswertung
   */

  public void StatisticsStatusVolumes() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.STATUS_VOLUMES, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }

  public void StatisticsUsergroups() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.USERGROUPS, this.myFilteredDataSource, FacesContext.getCurrentInstance()
        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }
View Full Code Here

Examples of org.goobi.production.flow.statistics.StatisticsManager

        .getViewRoot().getLocale());
    this.statisticsManager.calculate();
  }

  public void StatisticsRuntimeSteps() {
    this.statisticsManager = new StatisticsManager(StatisticsMode.SIMPLE_RUNTIME_STEPS, this.myFilteredDataSource, FacesContext
        .getCurrentInstance().getViewRoot().getLocale());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.