I want to generate xsd for the next class
public class Node{ private String value; private List<Node> childrens; }
What is the best utility to generate an xsd schema for such code
In general, I want to implement a simple tree. I already use jaxb to generate classes from the schema.
Julias
source share