A field can have a custom initialization statement, set via {@link #setInitializer}. Without one it will be initialized via a {@link com.google.gwt.core.client.GWT#create} call. (In the rare case thatyou need a field not to be initialized, initialize it to "null".)
Dependencies can be declared between fields via {@link #needs}, to ensure that one can be initialized via reference to another. Circular references are not supported, nor detected.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|