String inputfilepath = System.getProperty("user.dir") + "/checkbox.docx";
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new java.io.File(inputfilepath));
MainDocumentPart documentPart = wordMLPackage.getMainDocumentPart();
ClassFinder finder = new ClassFinder(FldChar.class); // <----- change this to suit
new TraversalUtil(documentPart.getContent(), finder);
System.out.println("got " + finder.results.size() );
for (Object o : finder.results) {