KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > bsf > smartValueObject > VersionableFilter


1 package org.bsf.smartValueObject;
2
3 /**
4  * Filter objects based on their version state.
5  *
6  * @see org.bsf.smartValueObject.VersionableFilters
7  * @see org.bsf.smartValueObject.Versionable
8  */

9 public interface VersionableFilter {
10     /**
11      * Tests wether or not the specified object implementing
12      * <tt>Versionable</tt> is accepted.
13      * @param v object to test.
14      * @return
15      */

16     boolean accept(Versionable v);
17 }
18
Popular Tags