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

org.hotrod.runtime.dynamicsql.EvaluationFeedback Maven / Gradle / Ivy

package org.hotrod.runtime.dynamicsql;

public class EvaluationFeedback {

  private boolean contentRendered;

  public EvaluationFeedback(final boolean contentRendered) {
    this.contentRendered = contentRendered;
  }

  public void markProcessed() {
    this.contentRendered = true;
  }

  public boolean wasContentRendered() {
    return contentRendered;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy