Skip to content

Commit a223f18

Browse files
Reformating
git-svn-id: https://svn.jboss.org/repos/hibernate/validator/trunk@15694 1b8cb986-b30d-0410-93ca-fae66ebed9b2
1 parent 4edde01 commit a223f18

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

validation-api/src/main/java/javax/validation/Constraint.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ public interface Constraint<A extends Annotation> {
3030
* Validator parameters for a given constraint definition
3131
* Annotations parameters are passed as key/value into parameters
3232
* <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
3435
*
3536
* @param constraintAnnotation parameters for a given constraint definition
3637
*/

validation-api/src/main/java/javax/validation/ConstraintViolation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
* well as the message describing the violation.
2525
*
2626
* @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
2829
*/
2930
public interface ConstraintViolation<T> {
3031

validation-api/src/main/java/javax/validation/Validation.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,14 @@ public static GenericBuilderFactory defineBootstrapState() {
131131
* Used by applications targeting a specific provider programmatically.
132132
* <p/>
133133
* <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();
137138
* </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.
140142
*
141143
* @param builderType the <code>ValidatorFactoryBuilder</code> sub interface
142144
* uniquely defining the targeted provider.

validation-api/src/main/java/javax/validation/spi/ValidationProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ public interface ValidationProvider {
3535
*
3636
* @param builderClass targeted builder class.
3737
*
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
4040
*/
4141
boolean isSuitable(Class<? extends ValidatorFactoryBuilder<?>> builderClass);
4242

0 commit comments

Comments
 (0)