Skip to content

Commit

Permalink
Add missing @SInCE elements
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelbernard committed Jan 31, 2013
1 parent 2132c71 commit e33e3a4
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/main/java/javax/validation/BootstrapConfiguration.java
Expand Up @@ -24,6 +24,8 @@
* @author Emmanuel Bernard <emmanuel@hibernate.org>
* @author Gunnar Morling
* @author Hardy Ferentschik
*
* @since 1.1
*/
public interface BootstrapConfiguration {
/**
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/javax/validation/Configuration.java
Expand Up @@ -113,6 +113,8 @@ public interface Configuration<T extends Configuration<T>> {
* @param parameterNameProvider Parameter name provider implementation.
*
* @return {@code this} following the chaining method pattern.
*
* @since 1.1
*/
T parameterNameProvider(ParameterNameProvider parameterNameProvider);

Expand Down Expand Up @@ -224,6 +226,8 @@ public interface Configuration<T extends Configuration<T>> {
*
* @return default ParameterNameProvider implementation compliant with
* the specification
*
* @since 1.1
*/
ParameterNameProvider getDefaultParameterNameProvider();

Expand All @@ -236,6 +240,7 @@ public interface Configuration<T extends Configuration<T>> {
* @return Returns an instance of {@code BootstrapConfiguration}. This method returns never {@code null}. If there
* is no <i>META-INF/validation.xml</i> the different getters of the returned instance will return {@code null} respective
* the empty set or map.
* @since 1.1
*/
BootstrapConfiguration getBootstrapConfiguration();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/javax/validation/ConstraintTarget.java
Expand Up @@ -3,8 +3,8 @@
/**
* Defines the constraint target
*
* @since 1.1
* @author Emmanuel Bernard <emmanuel@hibernate.org>
* @since 1.1
*/
public enum ConstraintTarget {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/javax/validation/ExecutableType.java
Expand Up @@ -3,8 +3,8 @@
/**
* Defines the types of executables targeted by an operation.
*
* @since 1.1
* @author Emmanuel Bernard <emmanuel@hibernate.org>
* @since 1.1
*/
public enum ExecutableType {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/javax/validation/ValidateExecutable.java
Expand Up @@ -48,8 +48,8 @@
* of the method it overrides / implements</li>
* </ul>
*
* @since 1.1
* @author Emmanuel Bernard
* @since 1.1
*/
@Target({ CONSTRUCTOR, METHOD, TYPE, PACKAGE })
@Retention(RUNTIME)
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/javax/validation/constraints/DecimalMax.java
Expand Up @@ -72,6 +72,8 @@
*
* @return {@code true} if the value must be lower or equal to the specified maximum, {@code false}
* if the value must be lower.
*
* @since 1.1
*/
boolean inclusive() default true;

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/javax/validation/constraints/DecimalMin.java
Expand Up @@ -72,6 +72,8 @@
*
* @return {@code true} if the value must be higher or equal to the specified minimum, {@code false}
* if the value must be higher.
*
* @since 1.1
*/
boolean inclusive() default true;

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/javax/validation/spi/ConfigurationState.java
Expand Up @@ -117,6 +117,8 @@ public interface ConfigurationState {
* </ul>
*
* @return parameter name provider instance or {@code null} if not defined
*
* @since 1.1
*/
ParameterNameProvider getParameterNameProvider();

Expand Down

0 comments on commit e33e3a4

Please sign in to comment.