use of objects.CreatureSet in project ultimate-java by pantinor.
the class TestJaxb method testCreatures.
// @Test
public void testCreatures() throws Exception {
File file = new File("target/classes/xml/creatures.xml");
JAXBContext jaxbContext = JAXBContext.newInstance(CreatureSet.class);
Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
CreatureSet ts = (CreatureSet) jaxbUnmarshaller.unmarshal(file);
for (Creature t : ts.getCreatures()) {
System.out.println(t);
}
}
Aggregations