Package fig.basic

Examples of fig.basic.StatFig


  private StatFig getFigHard(String name) {
    int i = names.indexOf(name);
    if (i == -1) {
      i = names.size();
      names.add(name);
      values.add(new StatFig());
    }
    return values.get(i);
  }
View Full Code Here


  }

  public void add(String name, boolean value) { add(name, value ? 1 : 0); }
  public void add(String name, double value) { add(name, null, value); }
  public void add(String name, Object key, double value) {
    StatFig fig = new StatFig();
    fig.add(key, value);
    add(name, fig);
  }
View Full Code Here

TOP

Related Classes of fig.basic.StatFig

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.