RESOLVED - SPR-5523: Replace all 'package.html' artifacts with 'package-info.java'

* Applied patch submitted by Carlos Zuniga
This commit is contained in:
Chris Beams
2009-06-01 04:14:22 +00:00
parent f3e6242568
commit a9696c7282
499 changed files with 2627 additions and 2420 deletions

View File

@@ -0,0 +1,8 @@
/**
*
* Support package for beans-style handling of Java 5 annotations.
*
*/
package org.springframework.beans.annotation;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Support package for beans-style handling of Java 5 annotations.
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* Support classes for accessing a Spring BeanFactory from Unified EL.
*
*/
package org.springframework.beans.factory.access.el;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Support classes for accessing a Spring BeanFactory from Unified EL.
</body>
</html>

View File

@@ -0,0 +1,12 @@
/**
*
* Helper infrastructure to locate and access bean factories.
*
* <p><b>Note: This package is only relevant for special sharing of bean
* factories, for example behind EJB facades. It is <i>not</i> used in a
* typical web application or standalone application.</b>
*
*/
package org.springframework.beans.factory.access;

View File

@@ -1,11 +0,0 @@
<html>
<body>
Helper infrastructure to locate and access bean factories.
<p><b>Note: This package is only relevant for special sharing of bean
factories, for example behind EJB facades. It is <i>not</i> used in a
typical web application or standalone application.</b>
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* Support package for annotation-driven bean configuration.
*
*/
package org.springframework.beans.factory.annotation;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Support package for annotation-driven bean configuration.
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* SPI interfaces and configuration-related convenience classes for bean factories.
*
*/
package org.springframework.beans.factory.config;

View File

@@ -1,7 +0,0 @@
<html>
<body>
SPI interfaces and configuration-related convenience classes for bean factories.
</body>
</html>

View File

@@ -0,0 +1,16 @@
/**
*
* The core package implementing Spring's lightweight Inversion of Control (IoC) container.
* <p>
* Provides an alternative to the Singleton and Prototype design
* patterns, including a consistent approach to configuration management.
* Builds on the org.springframework.beans package.
*
* <p>This package and related packages are discussed in Chapter 11 of
* <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
* by Rod Johnson (Wrox, 2002).
*
*/
package org.springframework.beans.factory;

View File

@@ -1,15 +0,0 @@
<html>
<body>
The core package implementing Spring's lightweight Inversion of Control (IoC) container.
<p>
Provides an alternative to the Singleton and Prototype design
patterns, including a consistent approach to configuration management.
Builds on the org.springframework.beans package.
<p>This package and related packages are discussed in Chapter 11 of
<a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
by Rod Johnson (Wrox, 2002).
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* Support infrastructure for bean definition parsing.
*
*/
package org.springframework.beans.factory.parsing;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Support infrastructure for bean definition parsing.
</body>
</html>

View File

@@ -0,0 +1,8 @@
/**
*
* Support package for the JDK 1.6 ServiceLoader facility.
*
*/
package org.springframework.beans.factory.serviceloader;

View File

@@ -1,7 +0,0 @@
<html>
<body>
Support package for the JDK 1.6 ServiceLoader facility.
</body>
</html>

View File

@@ -0,0 +1,10 @@
/**
*
* Classes supporting the <code>org.springframework.beans.factory</code> package.
* Contains abstract base classes for <code>BeanFactory</code> implementations.
*
*
*/
package org.springframework.beans.factory.support;

View File

@@ -1,9 +0,0 @@
<html>
<body>
Classes supporting the <code>org.springframework.beans.factory</code> package.
Contains abstract base classes for <code>BeanFactory</code> implementations.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Mechanism to determine bean wiring metadata from a bean instance.
* Foundation for aspect-driven bean configuration.
*
*/
package org.springframework.beans.factory.wiring;

View File

@@ -1,8 +0,0 @@
<html>
<body>
Mechanism to determine bean wiring metadata from a bean instance.
Foundation for aspect-driven bean configuration.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Contains an abstract XML-based <code>BeanFactory</code> implementation,
* including a standard "spring-beans" DTD.
*
*/
package org.springframework.beans.factory.xml;

View File

@@ -1,8 +0,0 @@
<html>
<body>
Contains an abstract XML-based <code>BeanFactory</code> implementation,
including a standard "spring-beans" DTD.
</body>
</html>

View File

@@ -0,0 +1,16 @@
/**
*
* This package contains interfaces and classes for manipulating Java beans.
* It is used by most other Spring packages.
*
* <p>A BeanWrapper object may be used to set and get bean properties,
* singly or in bulk.
*
* <p>The classes in this package are discussed in Chapter 11 of
* <a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
* by Rod Johnson (Wrox, 2002).
*
*/
package org.springframework.beans;

View File

@@ -1,15 +0,0 @@
<html>
<body>
This package contains interfaces and classes for manipulating Java beans.
It is used by most other Spring packages.
<p>A BeanWrapper object may be used to set and get bean properties,
singly or in bulk.
<p>The classes in this package are discussed in Chapter 11 of
<a href="http://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
by Rod Johnson (Wrox, 2002).
</body>
</html>

View File

@@ -0,0 +1,13 @@
/**
*
* Properties editors used to convert from String values to object
* types such as java.util.Properties.
*
* <p>Some of these editors are registered automatically by BeanWrapperImpl.
* "CustomXxxEditor" classes are intended for manual registration in
* specific binding processes, as they are localized or the like.
*
*/
package org.springframework.beans.propertyeditors;

View File

@@ -1,12 +0,0 @@
<html>
<body>
Properties editors used to convert from String values to object
types such as java.util.Properties.
<p>Some of these editors are registered automatically by BeanWrapperImpl.
"CustomXxxEditor" classes are intended for manual registration in
specific binding processes, as they are localized or the like.
</body>
</html>

View File

@@ -0,0 +1,9 @@
/**
*
* Classes supporting the org.springframework.beans package,
* such as utility classes for sorting and holding lists of beans.
*
*/
package org.springframework.beans.support;

View File

@@ -1,8 +0,0 @@
<html>
<body>
Classes supporting the org.springframework.beans package,
such as utility classes for sorting and holding lists of beans.
</body>
</html>