public abstract @interface

SerCustomInitPostGraph

implements Annotation
com.pnfsoftware.jeb.util.serialization.annotations.SerCustomInitPostGraph

Class Overview

The annotated method will be called after a full object graph has been deserialized.

Required prototype:

 private void postInit()
 
Note that the visibility MUST be private to make sure that sub-classes do not accidentally override a custom initializer method of a super-class.

Limitation: Unlike in-line deserializer initializers such as SerCustomRead or SerCustomInit, methods annotated with SerCustomInitPostGraph are called in any order, regardless of object hierarchies.

See Also

Summary

[Expand]
Inherited Methods
From interface java.lang.annotation.Annotation