Each generated java file has this header comments
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
whole scenario:
xml schema(input) -> jaxb library -> java class(output)
Jaxb generates java class files based out of the input given to them via xml schema file.
The generated class file has the above mentioned comments on the top. Rest of the lines contains normal java code that is generated as per the inputs defined in the xml schema.
There is no comments related to license apart from the above mentioned.
jaxb has dual license cddl + lgpl
I am wondering whether the license of jaxb applies to my generated files as well?