- I had a xml file to parse.
- I created the xsd file related to that xml file manually.
- I created a jar file through that xsd file so that all the tags in the xml file could be taken as interfaces
- Now I have got a jar file in which the tags of the xml file are treated as interfaces with their respective implementation classes.
- My problem is I want the simple xml tag names extracted out of those implementation classes or those interfaces. I am looking for some API or some other way to do it.
- I have used XmlBeans in this process.
I hope this explains my problem appropriately. :)