package-info.java 602 字节
Newer Older
1 2 3
/**
 * This package contains interfaces and classes for manipulating Java beans.
 * It is used by most other Spring packages.
4
 *
5 6
 * <p>A BeanWrapper object may be used to set and get bean properties,
 * singly or in bulk.
7
 *
8
 * <p>The classes in this package are discussed in Chapter 11 of
S
Spring Operator 已提交
9
 * <a href="https://www.amazon.com/exec/obidos/tg/detail/-/0764543857/">Expert One-On-One J2EE Design and Development</a>
10 11
 * by Rod Johnson (Wrox, 2002).
 */
12
@NonNullApi
13
@NonNullFields
14
package org.springframework.beans;
15 16

import org.springframework.lang.NonNullApi;
17
import org.springframework.lang.NonNullFields;