]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/Condition.java
fix localhost problem
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / Condition.java
1 package org.argeo.slc;
2
3 /** Binary check on an arbitrary object. */
4 public interface Condition<T> {
5 /**
6 * Checks the condition.
7 *
8 * @return true, if the condition is verified, false if not.
9 */
10 public Boolean check(T obj);
11 }