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

com.github.cukedoctor.spi.SummaryRenderer Maven / Gradle / Ivy

The newest version!
package com.github.cukedoctor.spi;

import com.github.cukedoctor.api.CukedoctorDocumentBuilder;
import com.github.cukedoctor.api.model.Feature;
import com.github.cukedoctor.renderer.BaseRenderer;
import java.util.List;

/** Created by pestano on 24/02/16. */
public interface SummaryRenderer extends BaseRenderer {

  /**
   * @param features the features to render
   * @return the rendered {@link String}
   * @deprecated Use renderSummary(List<Feature>, CukedoctorDocumentBuilder) instead
   */
  @Deprecated
  String renderSummary(List features);

  default String renderSummary(List features, CukedoctorDocumentBuilder documentBuilder) {
    setDocumentBuilder(documentBuilder);
    return renderSummary(features);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy