In order to load the XML data with XOM you will need to make a Builder from which you can build it into a Document.
Builder builder = new Builder();
Document doc = builder.build(file);
To get the root element, the highest parent in the xml file, you need to use the getRootElement() on the Doc...