|
|
|
|
@ -27,9 +27,9 @@ public class RaceXMLReader extends XMLReader {
|
|
|
|
|
/**
|
|
|
|
|
* Constractor for Race XML
|
|
|
|
|
* @param filePath path of the file
|
|
|
|
|
* @throws IOException
|
|
|
|
|
* @throws SAXException
|
|
|
|
|
* @throws ParserConfigurationException
|
|
|
|
|
* @throws IOException error
|
|
|
|
|
* @throws SAXException error
|
|
|
|
|
* @throws ParserConfigurationException error
|
|
|
|
|
*/
|
|
|
|
|
public RaceXMLReader(String filePath) throws IOException, SAXException, ParserConfigurationException {
|
|
|
|
|
this(filePath, true);
|
|
|
|
|
@ -39,9 +39,9 @@ public class RaceXMLReader extends XMLReader {
|
|
|
|
|
* COnstructor for Race XML
|
|
|
|
|
* @param filePath file path to read
|
|
|
|
|
* @param read whether or not to read and store the files straight away.
|
|
|
|
|
* @throws IOException
|
|
|
|
|
* @throws SAXException
|
|
|
|
|
* @throws ParserConfigurationException
|
|
|
|
|
* @throws IOException error
|
|
|
|
|
* @throws SAXException error
|
|
|
|
|
* @throws ParserConfigurationException error
|
|
|
|
|
*/
|
|
|
|
|
public RaceXMLReader(String filePath, boolean read) throws IOException, SAXException, ParserConfigurationException {
|
|
|
|
|
super(filePath);
|
|
|
|
|
|