Add missing package-info files for common packages
Issue: SPR-14420
This commit is contained in:
parent
9c29ed75f8
commit
66ec1c1618
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* Support classes for integrating a JSR-303 Bean Validation provider
|
||||
* (such as Hibernate Validator 4.0) into a Spring ApplicationContext
|
||||
* (such as Hibernate Validator) into a Spring ApplicationContext
|
||||
* and in particular with Spring's data binding and validation APIs.
|
||||
*
|
||||
* <p>The central class is {@link
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* Spring's repackaging of
|
||||
* <a href="http://cglib.sourceforge.net">net.sf.cglib 3.1</a>
|
||||
* <a href="http://cglib.sourceforge.net">net.sf.cglib 3.2</a>
|
||||
* (for internal use only).
|
||||
*
|
||||
* <p>This repackaging technique avoids any potential conflicts with
|
||||
|
@ -9,7 +9,7 @@
|
|||
*
|
||||
* <p>As this repackaging happens at the class file level, sources
|
||||
* and javadocs are not available here. See the original
|
||||
* <a href="http://cglib.sourceforge.net/apidocs">CGLIB 3.1 javadocs</a>
|
||||
* <a href="http://cglib.sourceforge.net/apidocs">CGLIB 3.2 javadocs</a>
|
||||
* for details when working with these classes.
|
||||
*/
|
||||
package org.springframework.cglib;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Common utility classes behind the <em>Spring Expression Language</em>.
|
||||
*/
|
||||
package org.springframework.expression.common;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Core abstractions behind the <em>Spring Expression Language</em>.
|
||||
*/
|
||||
package org.springframework.expression;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* SpEL's abstract syntax tree.
|
||||
*/
|
||||
package org.springframework.expression.spel.ast;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* SpEL's central implementation package.
|
||||
*/
|
||||
package org.springframework.expression.spel;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* SpEL's standard parser implementation.
|
||||
*/
|
||||
package org.springframework.expression.spel.standard;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* SpEL's default implementations for various core abstractions.
|
||||
*/
|
||||
package org.springframework.expression.spel.support;
|
4
spring-test/src/main/java/org/springframework/test/context/cache/package-info.java
vendored
Normal file
4
spring-test/src/main/java/org/springframework/test/context/cache/package-info.java
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Support for context caching within the <em>Spring TestContext Framework</em>.
|
||||
*/
|
||||
package org.springframework.test.context.cache;
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Java 5 annotation for transaction demarcation.
|
||||
* Spring's support for annotation-based transaction demarcation.
|
||||
* Hooked into Spring's transaction interception infrastructure
|
||||
* via a special TransactionAttributeSource implementation.
|
||||
*/
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Spring's support for listening to transaction events.
|
||||
*/
|
||||
package org.springframework.transaction.event;
|
|
@ -1,4 +1,4 @@
|
|||
/**
|
||||
* Provides an HttpMessageConverter implementations for handling JSON.
|
||||
* Provides HttpMessageConverter implementations for handling JSON.
|
||||
*/
|
||||
package org.springframework.http.converter.json;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
/**
|
||||
* Provides an HttpMessageConverter implementation for handling
|
||||
* <a href="https://developers.google.com/protocol-buffers/">Google Protocol Buffers</a>.
|
||||
*/
|
||||
package org.springframework.http.converter.protobuf;
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Provides a comprehensive HttpMessageConverter variant for form handling.
|
||||
*/
|
||||
package org.springframework.http.converter.support;
|
|
@ -1,4 +1,4 @@
|
|||
/**
|
||||
* Provides an HttpMessageConverter implementations for handling XML.
|
||||
* Provides HttpMessageConverter implementations for handling XML.
|
||||
*/
|
||||
package org.springframework.http.converter.xml;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
/**
|
||||
* Provides convenience annotations for web scopes.
|
||||
*/
|
||||
package org.springframework.web.context.annotation;
|
Loading…
Reference in New Issue