Skip to content

Commit

Permalink
HV-518 - Fix typos and normalize author tags
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpollet committed Dec 8, 2011
1 parent 418de89 commit 9adb69d
Show file tree
Hide file tree
Showing 82 changed files with 86 additions and 86 deletions.
Expand Up @@ -41,7 +41,7 @@
* Each {@link ConstraintCheckError} occurred will be reported using the
* {@link javax.annotation.processing.Messager} API.
*
* @author Gunnar Morling.
* @author Gunnar Morling
*/
final class ConstraintAnnotationVisitor extends ElementKindVisitor6<Void, List<AnnotationMirror>> {

Expand Down
Expand Up @@ -49,7 +49,7 @@
* </ul>
* </p>
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class GroupSequenceProviderCheck extends AbstractConstraintCheck {

Expand Down
Expand Up @@ -61,7 +61,7 @@
* whether a given annotation is allowed to be declared at a given element.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ConstraintHelper {

Expand Down Expand Up @@ -94,7 +94,7 @@ public enum ConstraintCheckResult {
* The type of an annotation with respect to the BV API.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public enum AnnotationType {

Expand Down
Expand Up @@ -38,7 +38,7 @@
* Test cases for {@link ConstraintValidationProcessor} testing the checking of constraint
* annotation type declarations.
*
* @author Gunnar Morling.
* @author Gunnar Morling
*/
public class AnnotationTypeValidationTest extends ConstraintValidationProcessorTestBase {

Expand Down
Expand Up @@ -75,8 +75,8 @@
/**
* Miscellaneous tests for {@link ConstraintValidationProcessor}.
*
* @author Gunnar Morling.
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Gunnar Morling
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ConstraintValidationProcessorTest extends ConstraintValidationProcessorTestBase {

Expand Down
Expand Up @@ -23,7 +23,7 @@
import static org.hibernate.validator.ap.testmodel.groupsequenceprovider.GroupSequenceProviderDefinition.Baz;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface BazDefaultGroupSequenceProvider extends DefaultGroupSequenceProvider<Baz> {

Expand Down
Expand Up @@ -23,7 +23,7 @@
import static org.hibernate.validator.ap.testmodel.groupsequenceprovider.GroupSequenceProviderDefinition.FooBarBaz;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class FooBarBazDefaultGroupSequenceProvider implements DefaultGroupSequenceProvider<FooBarBaz> {

Expand Down
Expand Up @@ -23,7 +23,7 @@
import static org.hibernate.validator.ap.testmodel.groupsequenceprovider.GroupSequenceProviderDefinition.FooBar;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public abstract class FooBarDefaultGroupSequenceProvider implements DefaultGroupSequenceProvider<FooBar> {

Expand Down
Expand Up @@ -23,7 +23,7 @@
import static org.hibernate.validator.ap.testmodel.groupsequenceprovider.GroupSequenceProviderDefinition.Foo;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class FooDefaultGroupSequenceProvider implements DefaultGroupSequenceProvider<Foo> {

Expand Down
Expand Up @@ -21,7 +21,7 @@
import org.hibernate.validator.group.GroupSequenceProvider;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class GroupSequenceProviderDefinition {

Expand Down
Expand Up @@ -23,7 +23,7 @@
import static org.hibernate.validator.ap.testmodel.groupsequenceprovider.GroupSequenceProviderDefinition.Qux;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class QuxDefaultGroupSequenceProvider implements DefaultGroupSequenceProvider<Qux> {

Expand Down
Expand Up @@ -23,7 +23,7 @@
import static org.hibernate.validator.ap.testmodel.groupsequenceprovider.GroupSequenceProviderDefinition.Sample;

/**
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class SampleDefaultGroupSequenceProvider implements DefaultGroupSequenceProvider<Sample> {

Expand Down
Expand Up @@ -30,7 +30,7 @@
*
* @author Gunnar Morling
* @author Hardy Ferentschik
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class Car {

Expand Down
Expand Up @@ -27,7 +27,7 @@
*
* @author Emmanuel Bernard
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Hardy Ferentschik
*/
public interface HibernateValidatorConfiguration extends Configuration<HibernateValidatorConfiguration> {
Expand Down
Expand Up @@ -28,7 +28,7 @@
* provided by {@link ValidatorContext}.
*
* @author Emmanuel Bernard
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface HibernateValidatorContext extends ValidatorContext {

Expand Down
Expand Up @@ -23,7 +23,7 @@
* Provides Hibernate Validator extensions to {@link ValidatorFactory}.
*
* @author Emmanuel Bernard
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface HibernateValidatorFactory extends ValidatorFactory {

Expand Down
Expand Up @@ -26,7 +26,7 @@
*
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.om)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ConstraintMapping {

Expand Down
Expand Up @@ -21,7 +21,7 @@
* element as to be validated in a cascaded way.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface Cascadable<C extends Cascadable<C>> {
/**
Expand Down
Expand Up @@ -23,7 +23,7 @@
* constraints on the underlying element.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface Constrainable<C extends Constrainable<C>> {
/**
Expand Down
Expand Up @@ -20,7 +20,7 @@
* Facet of a constraint mapping creational context which allows to the select the bean
* method to which the next operations shall apply.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public interface MethodTarget {
Expand Down
Expand Up @@ -22,7 +22,7 @@
* navigate to other constraint targets.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface ParameterConstraintMappingContext
extends TypeTarget, ParameterTarget, ReturnValueTarget, MethodTarget, Constrainable<ParameterConstraintMappingContext>, Cascadable<ParameterConstraintMappingContext> {
Expand Down
Expand Up @@ -20,7 +20,7 @@
* Facet of a constraint mapping creational context which allows to the select a method
* parameter to which the next operations shall apply.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public interface ParameterTarget {
Expand Down
Expand Up @@ -22,7 +22,7 @@
* navigate to other constraint targets.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface PropertyConstraintMappingContext
extends Constrainable<PropertyConstraintMappingContext>, TypeTarget, PropertyTarget, MethodTarget, Cascadable<PropertyConstraintMappingContext> {
Expand Down
Expand Up @@ -22,7 +22,7 @@
* Facet of a constraint mapping creational context which allows to the select the bean
* property to which the next operations shall apply.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public interface PropertyTarget {
Expand Down
Expand Up @@ -22,7 +22,7 @@
* navigate to other constraint targets.
*
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public interface ReturnValueConstraintMappingContext
extends TypeTarget, ParameterTarget, MethodTarget, Constrainable<ReturnValueConstraintMappingContext>, Cascadable<ReturnValueConstraintMappingContext> {
Expand Down
Expand Up @@ -20,7 +20,7 @@
* Facet of a constraint mapping creational context which allows to the select the current method's
* return value as target for the next operations.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public interface ReturnValueTarget {
Expand Down
Expand Up @@ -25,7 +25,7 @@
*
* @param <C> The type represented by this creational context.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public interface TypeConstraintMappingContext<C>
Expand Down
Expand Up @@ -20,7 +20,7 @@
* Facet of a constraint mapping creational context which allows to the select the bean
* type to which the next operations shall apply.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public interface TypeTarget {
Expand Down
Expand Up @@ -34,7 +34,7 @@
*
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.om)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ConstraintMappingContext {
private final Map<Class<?>, Set<ConfiguredConstraint<?, BeanConstraintLocation>>> constraintConfig;
Expand Down
Expand Up @@ -26,7 +26,7 @@
* A constraint mapping creational context which allows to select the parameter or
* return value to which the next operations shall apply.
*
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
* @author Gunnar Morling
*/
public class MethodConstraintMappingContextImpl implements MethodConstraintMappingContext {
Expand Down
Expand Up @@ -28,7 +28,7 @@
*
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public final class ParameterConstraintMappingContextImpl
extends ConstraintMappingContextImplBase
Expand Down
Expand Up @@ -30,7 +30,7 @@
*
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public final class PropertyConstraintMappingContextImpl extends ConstraintMappingContextImplBase
implements PropertyConstraintMappingContext {
Expand Down
Expand Up @@ -28,7 +28,7 @@
*
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public final class ReturnValueConstraintMappingContextImpl
extends ConstraintMappingContextImplBase
Expand Down
Expand Up @@ -29,7 +29,7 @@
*
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public final class TypeConstraintMappingContextImpl<C> extends ConstraintMappingContextImplBase
implements TypeConstraintMappingContext<C> {
Expand Down
Expand Up @@ -27,7 +27,7 @@
* {@code import org.joda.time.ReadableInstant}
* is in the future.
*
* @author Kevin Pollet
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class FutureValidatorForReadableInstant implements ConstraintValidator<Future, ReadableInstant> {

Expand Down
Expand Up @@ -27,7 +27,7 @@
* {@code org.joda.time.ReadablePartial}
* is in the future.
*
* @author Kevin Pollet
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class FutureValidatorForReadablePartial implements ConstraintValidator<Future, ReadablePartial> {

Expand Down
Expand Up @@ -26,7 +26,7 @@
* less than or equal to the maximum value specified.
*
* @author Alaa Nassef
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class MaxValidatorForCharSequence implements ConstraintValidator<Max, CharSequence> {

Expand Down
Expand Up @@ -26,7 +26,7 @@
* more than or equal to the minimum value specified.
*
* @author Alaa Nassef
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class MinValidatorForCharSequence implements ConstraintValidator<Min, CharSequence> {

Expand Down
Expand Up @@ -27,7 +27,7 @@
* {@code org.joda.time.ReadableInstant}
* is in the past.
*
* @author Kevin Pollet
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class PastValidatorForReadableInstant implements ConstraintValidator<Past, ReadableInstant> {

Expand Down
Expand Up @@ -27,7 +27,7 @@
* {@code org.joda.time.ReadablePartial}
* is in the past.
*
* @author Kevin Pollet
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class PastValidatorForReadablePartial implements ConstraintValidator<Past, ReadablePartial> {

Expand Down
Expand Up @@ -28,9 +28,9 @@
/**
* Validator for the {@link ScriptAssert} constraint annotation.
*
* @author Gunnar Morling.
* @author Gunnar Morling
* @author Hardy Ferentschik
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ScriptAssertValidator implements ConstraintValidator<ScriptAssert, Object> {
private String script;
Expand Down
Expand Up @@ -51,7 +51,7 @@
* @author Emmanuel Bernard
* @author Hardy Ferentschik
* @author Gunnar Morling
* @author Kevin Pollet - SERLI - (kevin.pollet@serli.com)
* @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI
*/
public class ConfigurationImpl implements HibernateValidatorConfiguration, ConfigurationState {

Expand Down

0 comments on commit 9adb69d

Please sign in to comment.