Added missing Support annotations

This commit is contained in:
Lukas Eder 2012-12-26 16:23:04 +01:00
parent 8557234b1d
commit 70e4ff1aa8

View File

@ -46,10 +46,12 @@ public interface BetweenAndStep<T> {
/**
* Create a condition to check this field against some bounds
*/
@Support
Condition and(T value);
/**
* Create a condition to check this field against some bounds
*/
@Support
Condition and(Field<T> field);
}