コード例 #1
0
  public synchronized void clear() {
    super.clear();

    executionError.set(0);
    fatalError.set(0);
    if (flowStatistics != null) {
      flowStatistics.clear();
    }
  }
コード例 #2
0
 /** Enable statistics logs (this is a dynamic parameter) */
 public synchronized void setEnabled(boolean b) {
   super.setEnabled(b);
   flowStatistics.setEnabled(enabled);
 }