All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.greenpepper.document.ExampleFilter Maven / Gradle / Ivy

The newest version!
package com.greenpepper.document;

import com.greenpepper.Example;

/**
 * 

ExampleFilter interface.

* * @author oaouattara * @version $Id: $Id */ public interface ExampleFilter { /** *

canFilter.

* * @param example a {@link com.greenpepper.Example} object. * @return a boolean. */ boolean canFilter( Example example ); /** *

filter.

* * @param example a {@link com.greenpepper.Example} object. * @return a {@link com.greenpepper.Example} object. */ Example filter( Example example ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy