Skip to content

Commit 833ed71

Browse files
committed
Add missing package-info files for common packages
Issue: SPR-14420 (cherry picked from commit 66ec1c1)
1 parent 09c7194 commit 833ed71

File tree

15 files changed

+47
-6
lines changed

15 files changed

+47
-6
lines changed

spring-context/src/main/java/org/springframework/validation/beanvalidation/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Support classes for integrating a JSR-303 Bean Validation provider
3-
* (such as Hibernate Validator 4.0) into a Spring ApplicationContext
3+
* (such as Hibernate Validator) into a Spring ApplicationContext
44
* and in particular with Spring's data binding and validation APIs.
55
*
66
* <p>The central class is {@link
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Spring's repackaging of
3-
* <a href="http://cglib.sourceforge.net">net.sf.cglib 3.1</a>
3+
* <a href="http://cglib.sourceforge.net">net.sf.cglib 3.2</a>
44
* (for internal use only).
55
*
66
* <p>This repackaging technique avoids any potential conflicts with
@@ -9,7 +9,7 @@
99
*
1010
* <p>As this repackaging happens at the class file level, sources
1111
* and javadocs are not available here. See the original
12-
* <a href="http://cglib.sourceforge.net/apidocs">CGLIB 3.1 javadocs</a>
12+
* <a href="http://cglib.sourceforge.net/apidocs">CGLIB 3.2 javadocs</a>
1313
* for details when working with these classes.
1414
*/
1515
package org.springframework.cglib;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Common utility classes behind the <em>Spring Expression Language</em>.
3+
*/
4+
package org.springframework.expression.common;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Core abstractions behind the <em>Spring Expression Language</em>.
3+
*/
4+
package org.springframework.expression;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* SpEL's abstract syntax tree.
3+
*/
4+
package org.springframework.expression.spel.ast;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* SpEL's central implementation package.
3+
*/
4+
package org.springframework.expression.spel;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* SpEL's standard parser implementation.
3+
*/
4+
package org.springframework.expression.spel.standard;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* SpEL's default implementations for various core abstractions.
3+
*/
4+
package org.springframework.expression.spel.support;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Support for context caching within the <em>Spring TestContext Framework</em>.
3+
*/
4+
package org.springframework.test.context.cache;

spring-tx/src/main/java/org/springframework/transaction/annotation/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Java 5 annotation for transaction demarcation.
2+
* Spring's support for annotation-based transaction demarcation.
33
* Hooked into Spring's transaction interception infrastructure
44
* via a special TransactionAttributeSource implementation.
55
*/
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Spring's support for listening to transaction events.
3+
*/
4+
package org.springframework.transaction.event;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
2-
* Provides an HttpMessageConverter implementations for handling JSON.
2+
* Provides HttpMessageConverter implementations for handling JSON.
33
*/
44
package org.springframework.http.converter.json;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/**
2+
* Provides an HttpMessageConverter implementation for handling
3+
* <a href="https://developers.google.com/protocol-buffers/">Google Protocol Buffers</a>.
4+
*/
5+
package org.springframework.http.converter.protobuf;
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Provides a comprehensive HttpMessageConverter variant for form handling.
3+
*/
4+
package org.springframework.http.converter.support;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
2-
* Provides an HttpMessageConverter implementations for handling XML.
2+
* Provides HttpMessageConverter implementations for handling XML.
33
*/
44
package org.springframework.http.converter.xml;

0 commit comments

Comments
 (0)