Interface FilteredRows

All Known Implementing Classes:
ConjunctiveFilteredRows, FilteredRecordsAsFilteredRows

public interface FilteredRows
Interface for anything that can decide which rows match and which rows don't match based on some particular criteria.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(Project project, RowVisitor visitor)
    Go through the rows of the given project, determine which match and which don't, and call visitor.visit() on those that match, and possibly their context and dependent rows.
  • Method Details

    • accept

      void accept(Project project, RowVisitor visitor)
      Go through the rows of the given project, determine which match and which don't, and call visitor.visit() on those that match, and possibly their context and dependent rows.
      Parameters:
      project -
      visitor -