Пример #1
0
 /**
  * Overrider method allows.
  *
  * @author manbaum
  * @since Oct 17, 2014
  * @param value
  * @return
  * @see com.dnw.matcher.IFilterService#allows(java.lang.Object)
  */
 @Override
 public boolean allows(T value) {
   return !list.matches(value);
 }
Пример #2
0
 /**
  * Method clear.
  *
  * @author manbaum
  * @since Oct 17, 2014
  */
 public void clear() {
   list.clear();
 }
Пример #3
0
 /**
  * Method removeMatcher.
  *
  * @author manbaum
  * @since Oct 17, 2014
  * @param i
  */
 public void removeMatcher(int i) {
   list.removeMatcher(i);
 }
Пример #4
0
 /**
  * Method removeMatcher.
  *
  * @author manbaum
  * @since Oct 17, 2014
  * @param m
  */
 public void removeMatcher(IMatcher<T> m) {
   list.removeMatcher(m);
 }
Пример #5
0
 /**
  * Method addMatcher.
  *
  * @author manbaum
  * @since Oct 17, 2014
  * @param i
  * @param m
  */
 public void addMatcher(int i, IMatcher<T> m) {
   list.addMatcher(i, m);
 }
Пример #6
0
 /**
  * Method addMatcher.
  *
  * @author manbaum
  * @since Oct 17, 2014
  * @param m
  */
 public void addMatcher(IMatcher<T> m) {
   list.addMatcher(m);
 }