setupInternalsOf method

void setupInternalsOf(
  1. ClassReflection o
)

Setups the internal fields of o instance using already computed fields of this. Used by withObject.

Implementation

void setupInternalsOf(ClassReflection o) => o
  .._allConstructors = _allConstructors
  .._allFieldsNoObject = _allFieldsNoObject
  .._allMethodsNoObject = _allMethodsNoObject
  .._allStaticFields = _allStaticFields
  .._allStaticMethods = _allStaticMethods
  .._entityFieldsNoObject = _entityFieldsNoObject
  .._fieldsJsonNameAliases = _fieldsJsonNameAliases
  .._fieldsJsonNameAliasesReverse = _fieldsJsonNameAliasesReverse
  .._fieldsWithJsonFieldHidden = _fieldsWithJsonFieldHidden
  .._fieldsWithJsonFieldVisible = _fieldsWithJsonFieldVisible
  .._fieldsWithJsonNameAlias = _fieldsWithJsonNameAlias
  .._getBestConstructorForMapCache = _getBestConstructorForMapCache
  .._hasFieldWithoutSetter = _hasFieldWithoutSetter
  .._hasFinalField = _hasFinalField
  .._hasJsonConstructor = _hasJsonConstructor
  .._hasJsonConstructorMandatory = _hasJsonConstructorMandatory
  .._hasJsonNameAlias = _hasJsonNameAlias
  .._jsonConstructors = _jsonConstructors
  .._jsonConstructorsMandatory = _jsonConstructorsMandatory;