Browse Source

SPR-7308

+ add missing package javadocs

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3820 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Costin Leau 15 years ago
parent
commit
49c8df65d7
  1. 10
      org.springframework.context.support/src/main/java/org/springframework/cache/annotation/package-info.java
  2. 10
      org.springframework.context.support/src/main/java/org/springframework/cache/concurrent/package-info.java
  3. 9
      org.springframework.context.support/src/main/java/org/springframework/cache/config/package-info.java
  4. 2
      org.springframework.context.support/src/main/java/org/springframework/cache/ehcache/package-info.java
  5. 8
      org.springframework.context.support/src/main/java/org/springframework/cache/interceptor/package-info.java
  6. 7
      org.springframework.context.support/src/main/java/org/springframework/cache/package-info.java
  7. 6
      org.springframework.context.support/src/main/java/org/springframework/cache/support/package-info.java

10
org.springframework.context.support/src/main/java/org/springframework/cache/annotation/package-info.java vendored

@ -0,0 +1,10 @@ @@ -0,0 +1,10 @@
/**
*
* JDK 1.5+ annotation for caching demarcation.
* Hooked into Spring's caching interception infrastructure
* via CacheDefinitionSource implementation.
*
*/
package org.springframework.cache.annotation;

10
org.springframework.context.support/src/main/java/org/springframework/cache/concurrent/package-info.java vendored

@ -0,0 +1,10 @@ @@ -0,0 +1,10 @@
/**
*
* Implementation package for java.util.concurrent based
* caches. Provides a CacheManager and Cache implementation
* for usage in a Spring context.
*
*/
package org.springframework.cache.concurrent;

9
org.springframework.context.support/src/main/java/org/springframework/cache/config/package-info.java vendored

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
/**
*
* Support package for declarative caching configuration,
* with XML schema being the primary configuration format.
*
*/
package org.springframework.cache.config;

2
org.springframework.context.support/src/main/java/org/springframework/cache/ehcache/package-info.java vendored

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
/**
*
* Support classes for the open source cache
* <a href="http://ehcache.sourceforge.net">EHCache</a>,
* <a href="http://ehcache.sourceforge.net">Ehcache</a>,
* allowing to set up an EHCache CacheManager and Caches
* as beans in a Spring context.
*

8
org.springframework.context.support/src/main/java/org/springframework/cache/interceptor/package-info.java vendored

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
/**
* AOP-based solution for declarative caching demarcation.
* Builds on the AOP infrastructure in org.springframework.aop.framework.
* Any POJO can be cache advised with Spring.
*
*/
package org.springframework.cache.interceptor;

7
org.springframework.context.support/src/main/java/org/springframework/cache/package-info.java vendored

@ -0,0 +1,7 @@ @@ -0,0 +1,7 @@
/**
* Spring's generic cache abstraction.
* Concrete implementations are provided in the subpackages.
*
*/
package org.springframework.cache;

6
org.springframework.context.support/src/main/java/org/springframework/cache/support/package-info.java vendored

@ -0,0 +1,6 @@ @@ -0,0 +1,6 @@
/**
* Support classes for the the org.springframework.cache package.
* Provides abstract classes for cache managers and caches.
*/
package org.springframework.cache.support;
Loading…
Cancel
Save