Javadoc fix

#story[878]
main
hba56 9 years ago
parent 4b2e90f54b
commit abcaca719c

@ -38,6 +38,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* Constructor for Streamed Race XML * Constructor for Streamed Race XML
* @param filePath path of the file * @param filePath path of the file
* @param boatData data for boats in race
* @throws IOException error * @throws IOException error
* @throws SAXException error * @throws SAXException error
* @throws ParserConfigurationException error * @throws ParserConfigurationException error
@ -53,6 +54,7 @@ public class RaceXMLReader extends XMLReader implements RaceDataSource {
/** /**
* Constructor for Streamed Race XML * Constructor for Streamed Race XML
* @param filePath file path to read * @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. * @param read whether or not to read and store the files straight away.
* @throws IOException error * @throws IOException error
* @throws SAXException error * @throws SAXException error

@ -27,9 +27,9 @@ public abstract class XMLReader {
/** /**
* Read in XML file * Read in XML file
* @param filePath filepath for XML file * @param filePath filepath for XML file
* @throws ParserConfigurationException * @throws ParserConfigurationException error
* @throws IOException * @throws IOException error
* @throws SAXException * @throws SAXException error
*/ */
public XMLReader(String filePath) throws ParserConfigurationException, IOException, SAXException { public XMLReader(String filePath) throws ParserConfigurationException, IOException, SAXException {

Loading…
Cancel
Save