I have a java object such as:
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
Code:
@XmlSchema(namespace="http://www.testws.com")
package org.test;
public class XmlObj{
............
}
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