I would like know the procedure to read xer file
I have tried the below snippet of code to read the file
UniversalProjectReader reader = new UniversalProjectReader();
InputStream f = Core.getFileDocumentContent(getContext(), __ProjectPlan);
ProjectFile projectObj = reader.read(f);
projectObj.getTasks();
Core.getLogger("Size").info(projectObj.getTasks().size());