I'm creating a program in Java which contains a tree-structure of objects. All classes involved implement the same interface, and each class contains a list of children:
public class MyClass1 implements MyInterface {
List<MyInterface> children;
}
public class MyClass2 implements MyInterface {
List<MyInterface> children;
}
public class MyClass3 implements MyInterface {
List<MyInterface> children;
}
....
Now the three structure is defined in an XML-file:
<myclass1>
<myclass2></myclass2>
<myclass1>
<myclass3></myclass3>
</myclass1>
</myclass1>
The tree structure can be of any type, defined by the user. Of course, each class contains class-specific variables which I omitted for now.
Now I'm trying to use XStream to deserialize the XML-file to Java-objects, preferably using annotations, but I don't know how to do this. I don't want to end up making a list for each possible class, e.g. in MyClass1:
@XStreamImplicit(itemFieldName="myclass2")
List<MyClass2> children2;
@XStreamImplicit(itemFieldName="myclass3")
List<MyClass3> children3;
@XStreamImplicit(itemFieldName="myclass4")
List<MyClass4> children4;
Any suggestions on how to solve this case with XStream? Or should I use other technologies?