JAXB again
the relevant stuff is mainly in javax.xml.bind package. include by default in JDK6, versions vary. tools like schemagen are not, so need to be downloaded from jaxb site. basic example: @XmlRootElement(name = “TimedValue”) @XmlType(propOrder = {“value”, “time”}) public class TimeValue { private String value = null; private Date time = null; @XmlElement(name = “value”) public String […]
Read More JAXB again