All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.carrotsearch.ant.tasks.junit4.BalancersList Maven / Gradle / Ivy

The newest version!
package com.carrotsearch.ant.tasks.junit4;

import java.util.List;

/**
 * A nested list of {@link SuiteBalancer}s.
 */
public class BalancersList {  
  private List balancers;

  public BalancersList(List balancers) {
    this.balancers = balancers;
  }

  /**
   * Adds a balancer to the balancers list.
   */
  public void addConfigured(SuiteBalancer balancer) {
    balancers.add(balancer);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy