File tree 4 files changed +13
-9
lines changed
validation-api/src/main/java/javax/validation 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ public interface Constraint<A extends Annotation> {
30
30
* Validator parameters for a given constraint definition
31
31
* Annotations parameters are passed as key/value into parameters
32
32
* <p/>
33
- * This method is guaranteed to be called before any of the other Constraint implementation methods
33
+ * This method is guaranteed to be called before any of the other Constraint
34
+ * implementation methods
34
35
*
35
36
* @param constraintAnnotation parameters for a given constraint definition
36
37
*/
Original file line number Diff line number Diff line change 24
24
* well as the message describing the violation.
25
25
*
26
26
* @author Emmanuel Bernard
27
- * @todo the rational behind rootBean and propertyPath is to keep the context available to the user
27
+ * @todo the rational behind rootBean and propertyPath is to keep the context
28
+ * available to the user
28
29
*/
29
30
public interface ConstraintViolation <T > {
30
31
Original file line number Diff line number Diff line change @@ -131,12 +131,14 @@ public static GenericBuilderFactory defineBootstrapState() {
131
131
* Used by applications targeting a specific provider programmatically.
132
132
* <p/>
133
133
* <pre>
134
- * ACMEValidatorFactoryBuilder builder = Validation.builderType(ACMEValidatorFactoryBuilder.class)
135
- * .providerResolver( new MyResolverStrategy() )
136
- * .build();
134
+ * ACMEValidatorFactoryBuilder builder =
135
+ * Validation.builderType(ACMEValidatorFactoryBuilder.class)
136
+ * .providerResolver( new MyResolverStrategy() )
137
+ * .build();
137
138
* </pre>,
138
- * where <code>ACMEValidatorFactoryBuilder</code> is the <code>ValidatorFactoryBuilder</code>
139
- * sub interface uniquely identifying the ACME Bean Validation provider.
139
+ * where <code>ACMEValidatorFactoryBuilder</code> is the
140
+ * <code>ValidatorFactoryBuilder</code> sub interface uniquely identifying the
141
+ * ACME Bean Validation provider.
140
142
*
141
143
* @param builderType the <code>ValidatorFactoryBuilder</code> sub interface
142
144
* uniquely defining the targeted provider.
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ public interface ValidationProvider {
35
35
*
36
36
* @param builderClass targeted builder class.
37
37
*
38
- * @return <code>true</code> if <code>builderClass</code> is the Bean Validation Provider sub
39
- * interface for ValidatorFactoryBuilder
38
+ * @return <code>true</code> if <code>builderClass</code> is the Bean Validation Provider
39
+ * sub- interface for ValidatorFactoryBuilder
40
40
*/
41
41
boolean isSuitable (Class <? extends ValidatorFactoryBuilder <?>> builderClass );
42
42
You can’t perform that action at this time.
0 commit comments