1 package com.loribel.commons.abstraction;
2
3 /***
4 * Filter for object.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_ObjectFilter
9 {
10 /***
11 * Define what object is accepted by this filter.
12 *
13 * @param a_item Object - the object to be tested
14 *
15 * @return boolean
16 */
17 boolean accept(
18 Object a_item);
19
20 }