I am trying to marshal some classes I designed, with standard JAXB, the classes all have void constructors, this is my first attempt at using JAXB or marshalling/unmarhslling in any language for that matter but as I understand it JAXB should be able to marshall them without a XSD.
The classes are as follow:
@XmlRootElement(name="place")
class Place {
@XmlAttribute
//various fields and get set methods
public Place() {
}
}
@XmlRootElement(name="Arc")
class Arc {
// various fields and get set methods
@XmlAttribute
Place p;
public setPlace(Place p) {
// ...
}
public Arc() {
}
}
@XmlRootElement(name="Transition")
class Transition {
Arc[] a;
public Transition() {
}
}
I can marshall the Place class but not the Arc class, the Transition I didn't even try, the classes have the @XMLPropriety tags but when it reaches the nested Place class JAXB doesn't seem to understand which XML object to map it too.
If there is another tag I should be using for the nested class or there's another error I'm overlooking?