Generated by
JDiff

org.springframework.core Documentation Differences

This file contains all the changes in documentation in the package org.springframework.core as colored differences. Deletions are shown like this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.

Class CollectionFactory, Map createMap(Class<?>, int)

Create the most approximate map for the given map.

Creates a TreeMap or linked Map for a SortedMap or Map, respectively. @param collectionTypemapType the desired type of the target Map @param initialCapacity the initial capacity @return the new Map instance @see java.util.TreeMap @see java.util.LinkedHashMap


Class GenericTypeResolver

Helper class for resolving generic types against type variables.

Mainly intended for usage within the framework, resolving method parameter types even when they are declared generically. @author Juergen Hoeller @author Rob Harrop @author Sam Brannen @since 2.5.2 @see GenericCollectionTypeResolver

Class GenericTypeResolver, Map<TypeVariable, Type> getTypeVariableMap(Class)

Build a mapping of TypeVariable names toto concrete Classconcrete classes for the specified Class. SearchesSearches all super types, enclosing types and interfaces.
Class GenericTypeResolver, Class<?> resolveReturnType(Method, Class<?>)

Determine the target type for the generic return type of the given method., where formal type variables are declared on the given class. @param method the method to introspect @param clazz the class to resolve type variables against @return the corresponding generic parameter or return typetype @see #resolveReturnTypeForGenericMethod

Class LocalVariableTableParameterNameDiscoverer

Implementation of ParameterNameDiscoverer that uses the LocalVariableTable information in the method attributes to discover parameter names. Returns null if the class file was compiled without debug information.

Uses ObjectWeb's ASM library for analyzing class files. Each discoverer instancediscoverer instance caches the ASM discovered information for each introspected Class, in a a thread-safesafe manner. It is recommended to reuse discovererParameterNameDiscoverer instances instances as far as possible. @author Adrian Colyer @author Costin Leau @author Juergen Hoeller @author Chris Beams @since 2.0