public XMLSlideShow(XSLFSlideShow xml) throws XmlException, IOException {
this.slideShow = xml;
// Build the main masters list - TODO
CTSlideMasterIdList masterIds = slideShow.getSlideMasterReferences();
// Build the slides list
CTSlideIdList slideIds = slideShow.getSlideReferences();
slides = new XSLFSlide[slideIds.getSldIdList().size()];
for(int i=0; i<slides.length; i++) {