Polishing

This commit is contained in:
Sam Brannen 2019-03-01 20:07:09 +01:00
parent 297fd7629a
commit 416346200f
8 changed files with 20 additions and 19 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -24,8 +24,8 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Test annotation to indicate whether a test is enabled or disabled for a
* specific testing profile.
* Test annotation for use with JUnit 4 to indicate whether a test is enabled or
* disabled for a specific testing profile.
*
* <p>In the context of this annotation, the term <em>profile</em> refers to
* a Java system property by default; however, the semantics can be changed

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -24,10 +24,10 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* {@code ProfileValueSourceConfiguration} is a class-level annotation which
* is used to specify what type of {@link ProfileValueSource} to use when
* retrieving <em>profile values</em> configured via the {@link IfProfileValue
* &#064;IfProfileValue} annotation.
* {@code ProfileValueSourceConfiguration} is a class-level annotation for use
* with JUnit 4 which is used to specify what type of {@link ProfileValueSource}
* to use when retrieving <em>profile values</em> configured via
* {@link IfProfileValue @IfProfileValue}.
*
* <p>As of Spring Framework 4.0, this annotation may be used as a
* <em>meta-annotation</em> to create custom <em>composed annotations</em>.

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -23,7 +23,8 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Test annotation to indicate that a test method should be invoked repeatedly.
* Test annotation for use with JUnit 4 to indicate that a test method should be
* invoked repeatedly.
*
* <p>Note that the scope of execution to be repeated includes execution of the
* test method itself as well as any <em>set up</em> or <em>tear down</em> of

View File

@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -23,7 +23,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Test-specific annotation to indicate that a test method has to finish
* Test annotation for use with JUnit 4 to indicate that a test method has to finish
* execution in a {@linkplain #millis() specified time period}.
*
* <p>If the text execution takes longer than the specified time period, then

View File

@ -1,5 +1,5 @@
/**
* Custom JUnit {@code Rules} used in the <em>Spring TestContext Framework</em>.
* Custom JUnit 4 {@code Rules} used in the <em>Spring TestContext Framework</em>.
*/
@NonNullApi
@NonNullFields

View File

@ -1,5 +1,5 @@
/**
* Custom JUnit {@code Statements} used in the <em>Spring TestContext Framework</em>.
* Custom JUnit 4 {@code Statements} used in the <em>Spring TestContext Framework</em>.
*/
@NonNullApi
@NonNullFields

View File

@ -1,6 +1,6 @@
/**
* Support classes for ApplicationContext-based and transactional
* tests run with TestNG and the <em>Spring TestContext Framework</em>.
* Support classes for integrating the <em>Spring TestContext Framework</em>
* with TestNG.
*/
@NonNullApi
@NonNullFields

View File

@ -1,7 +1,7 @@
/**
* Exception hierarchy for Spring's transaction infrastructure,
* independent of any specific transaction management system.
* Contains transaction manager, definition, and status interfaces.
* Spring's core transaction management APIs (independent of any specific transaction
* management system); an exception hierarchy for Spring's transaction infrastructure;
* and transaction manager, definition, and status interfaces.
*/
@NonNullApi
@NonNullFields