| ObjectInitializations[class] returns a list of held field initializations executed by New before the constructor is called. The ObjectInitializations list is built automatically. |
This loads the package.
The field assignments are used internally to initialize the fields of an object. The next class defines fields bound to an object and others bound to the class by means of the Static modifier.
The list of initializations contains only the object fields. The exact internal format may be subject to change.
A child class also inherits this initialization list.
All values do get the right values during initalization of a newly created object.
|