1
1
/*
2
- * Copyright 2002-2018 the original author or authors.
2
+ * Copyright 2002-2020 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -69,7 +69,7 @@ public class BeanWrapperImpl extends AbstractNestablePropertyAccessor implements
69
69
private CachedIntrospectionResults cachedIntrospectionResults ;
70
70
71
71
/**
72
- * The security context used for invoking the property methods
72
+ * The security context used for invoking the property methods.
73
73
*/
74
74
private AccessControlContext acc ;
75
75
@@ -95,7 +95,7 @@ public BeanWrapperImpl(boolean registerDefaultEditors) {
95
95
96
96
/**
97
97
* Create a new BeanWrapperImpl for the given object.
98
- * @param object object wrapped by this BeanWrapper
98
+ * @param object the object wrapped by this BeanWrapper
99
99
*/
100
100
public BeanWrapperImpl (Object object ) {
101
101
super (object );
@@ -112,7 +112,7 @@ public BeanWrapperImpl(Class<?> clazz) {
112
112
/**
113
113
* Create a new BeanWrapperImpl for the given object,
114
114
* registering a nested path that the object is in.
115
- * @param object object wrapped by this BeanWrapper
115
+ * @param object the object wrapped by this BeanWrapper
116
116
* @param nestedPath the nested path of the object
117
117
* @param rootObject the root object at the top of the path
118
118
*/
@@ -123,7 +123,7 @@ public BeanWrapperImpl(Object object, String nestedPath, Object rootObject) {
123
123
/**
124
124
* Create a new BeanWrapperImpl for the given object,
125
125
* registering a nested path that the object is in.
126
- * @param object object wrapped by this BeanWrapper
126
+ * @param object the object wrapped by this BeanWrapper
127
127
* @param nestedPath the nested path of the object
128
128
* @param parent the containing BeanWrapper (must not be {@code null})
129
129
*/
@@ -164,7 +164,7 @@ protected void setIntrospectionClass(Class<?> clazz) {
164
164
}
165
165
166
166
/**
167
- * Obtain a lazily initializted CachedIntrospectionResults instance
167
+ * Obtain a lazily initialized CachedIntrospectionResults instance
168
168
* for the wrapped object.
169
169
*/
170
170
private CachedIntrospectionResults getCachedIntrospectionResults () {
0 commit comments