Exemple #1
0
 /**
  * Returns whether this bean is important.
  *
  * @return whether this bean is important
  */
 public boolean isImportant() {
   return BooleanUtils.toBoolean(important);
 }
Exemple #2
0
 /**
  * Returns whether this bean is to be lazily initialized.
  *
  * @return true, if this bean is to be lazily initialized
  */
 public boolean isLazyInit() {
   return BooleanUtils.toBoolean(lazyInit);
 }