# File lib/scrubyt/core/scraping/filters/base_filter.rb, line 84
    def initialize(parent_pattern, example)
      @example_type = BaseFilter.determine_example_type(example)
      @parent_pattern = parent_pattern
      @example = example
      @xpath = nil                #The xpath to evaluate this filter
      @constraints = [] #list of constraints
    end