Are there any tools that can automatically generate java class hierarchy from xml (plist)?
Say we have:
<blah>
    <item />
    <item />
</blah>
And we need to get something like:
class Blah {
Collection<Item> items;
}
...and so on and so forth
 
    