JAXB @xmlSchema and package-info.java error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kokababu
    New Member
    • Jul 2008
    • 39

    JAXB @xmlSchema and package-info.java error

    I have a java object such as:

    Code:
    @XmlSchema(namespace="http://www.testws.com")
    package org.test;
    
    public class XmlObj{
    ............
    }
    But from Eclipse, I am getting error:
    Package annotations must be in file package-info.java

    I created a file named "package-info.java" and put
    the following lines in the package-info.java file:

    @XmlSchema(name space="http://www.testws.com" )
    package org.test;

    Note: My package-info.java file is in the org.test package.

    I would be glad, if someone kindly help me in the issue
Working...