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 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


Class MethodParameter

Helper class that encapsulates the specification of a method parameter, i.e. a Method or Constructor plus a parameter index and a nested type index for a declared generic type. Useful as a specification object to pass along. @author Juergen Hoeller @author Rob Harrop @author Andy Clement @author Nikita Tovstoles @author Chris Beams @since 2.0 @see GenericCollectionTypeResolver