diff --git a/mock/src/main/java/seng302/DataInput/RaceXMLReader.java b/mock/src/main/java/seng302/DataInput/RaceXMLReader.java index 60b01d79..5f3435cd 100644 --- a/mock/src/main/java/seng302/DataInput/RaceXMLReader.java +++ b/mock/src/main/java/seng302/DataInput/RaceXMLReader.java @@ -38,6 +38,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource { /** * Constructor for Streamed Race XML * @param filePath path of the file + * @param boatData data for boats in race * @throws IOException error * @throws SAXException error * @throws ParserConfigurationException error @@ -53,6 +54,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource { /** * Constructor for Streamed Race XML * @param filePath file path to read + * @param boatData data of the boats in race * @param read whether or not to read and store the files straight away. * @throws IOException error * @throws SAXException error diff --git a/mock/src/main/java/seng302/DataInput/XMLReader.java b/mock/src/main/java/seng302/DataInput/XMLReader.java index 1dce01ec..fbda2821 100644 --- a/mock/src/main/java/seng302/DataInput/XMLReader.java +++ b/mock/src/main/java/seng302/DataInput/XMLReader.java @@ -27,9 +27,9 @@ public abstract class XMLReader { /** * Read in XML file * @param filePath filepath for XML file - * @throws ParserConfigurationException - * @throws IOException - * @throws SAXException + * @throws ParserConfigurationException error + * @throws IOException error + * @throws SAXException error */ public XMLReader(String filePath) throws ParserConfigurationException, IOException, SAXException {