Samples JDK
package-info.java
1 /**
2  * \brief Default ReflectionProvider skips constructor code or to be more detailed - the object initializer code.
3  *
4  * If we do not specify a ReflectionProvider xstream tries to find the best reflection provider.
5  * But the best ReflectionProvider for xstream might not be the best for you, because it normally selects the Sun14ReflectionProvider.
6  *
7  * The Sun14ReflectionProvider uses the same instantiation strategy as the java serialization mechanism and that means that it skips constructor code
8  * or to be more detailed - the object initializer code.
9  *
10  * http://stackoverflow.com/questions/16060804/set-default-value-for-fields-not-in-xml-in-xstream
11  *
12  */
13 package com.freemindcafe.serialization.sample5;