Exemple #1
0
  public NodalBCL getBCLByName(String name) {

    int rank = 0;

    while (rank < this.nodalBcl.size()) {

      NodalBCL bcl = this.nodalBcl.get(rank);
      if (bcl.getId().equals(name)) {
        return bcl;
      } else {
        rank++;
      }
    }

    return null;
  }