When I create Java files from an XML schema using JAXB, the package-info.java file is created.
What is this file for? and how does it work?
In particular, this file contains an annotation as shown below.
@javax.xml.bind.annotation.XmlSchema(namespace = "http://searchrequest")
What does it mean? I doubt this is doing something with javadoc or Eclipse Juno.
It must be something specific with JAXB, right?
source
share