String cat4Special = "Special Achievements (titles)";
String cat5Step = "Step Achievements (medals)";
String cat6Rise = "Rise of the Americas Achievements (medals)" ;
String cat7Clan = "Clan Wars Campaigns Achievements (medals)";
ObjectFactory objFactory = null;
try {
JAXBContext context = JAXBContext.newInstance(XmlWiki.class);
Marshaller m = context.createMarshaller();
m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
objFactory = new ObjectFactory();
//création WIKI
XmlWiki wiki = objFactory.createXmlWiki();
//création ACHIEVEMENTS
XmlAchievements myXmlAchievements = objFactory.createXmlAchievements();
wiki.setACHIEVEMENTS(myXmlAchievements);
//parsing HTML WIKI
parseHtmlAchievement(AllLinesWot, cat1BattleHero, cat2Comm, objFactory, wiki);
parseHtmlAchievement(AllLinesWot, cat2Comm, cat3Epc, objFactory, wiki);