package com.onaro.util.jfc.tables.filter.matcher; import java.util.*; public class NotFilterMatcher implements FilterMatcher { protected FilterMatcher x; public NotFilterMatcher(FilterMatcher x) { this.x = x; } public boolean isAccepted(Object value) { return !x.isAccepted(value); } /** * Returns an empty list since nothing is matched in a not operation * @param value the filtered value * @return an empty list */ public List getAcceptedRange(Object value) { return Collections.emptyList(); } }