@@ -111,8 +111,8 @@ open class BeanRegistrarDsl(private val init: BeanRegistrarDsl.() -> Unit): Bean
111
111
}
112
112
113
113
/* *
114
- * Register a bean from the given bean class, which will be instantiated
115
- * using the related [resolvable constructor]
114
+ * Register a bean of type [T] which will be instantiated using the
115
+ * related [resolvable constructor]
116
116
* [org.springframework.beans.BeanUtils.getResolvableConstructor] if any.
117
117
* @param T the bean type
118
118
* @param name the name of the bean
@@ -177,8 +177,8 @@ open class BeanRegistrarDsl(private val init: BeanRegistrarDsl.() -> Unit): Bean
177
177
}
178
178
179
179
/* *
180
- * Register a bean from the given bean class, which will be instantiated
181
- * using the related [resolvable constructor]
180
+ * Register a bean of type [T] which will be instantiated using the
181
+ * related [resolvable constructor]
182
182
* [org.springframework.beans.BeanUtils.getResolvableConstructor]
183
183
* if any.
184
184
* @param T the bean type
@@ -243,8 +243,8 @@ open class BeanRegistrarDsl(private val init: BeanRegistrarDsl.() -> Unit): Bean
243
243
}
244
244
245
245
/* *
246
- * Register a bean from the given bean class, which will be instantiated
247
- * using the provided [supplier].
246
+ * Register a bean of type [T] which will be instantiated using the
247
+ * provided [supplier].
248
248
* @param T the bean type
249
249
* @param name the name of the bean
250
250
* @param autowirable set whether this bean is a candidate for getting
@@ -323,8 +323,8 @@ open class BeanRegistrarDsl(private val init: BeanRegistrarDsl.() -> Unit): Bean
323
323
prototype : Boolean = false,
324
324
crossinline supplier : (SupplierContextDsl <T >.() -> T )): String {
325
325
/* *
326
- * Register a bean from the given bean class, which will be instantiated
327
- * using the provided [supplier].
326
+ * Register a bean of type [T] which will be instantiated using the
327
+ * provided [supplier].
328
328
* @param T the bean type
329
329
* @param autowirable set whether this bean is a candidate for getting
330
330
* autowired into some other bean
0 commit comments