mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
8b8422de3a
- because in AC35 spec. race xml file contain course set up and all other general race settings #story[828]
21 lines
366 B
Java
21 lines
366 B
Java
package seng302.server.simulator.parsers;
|
|
|
|
import org.w3c.dom.Document;
|
|
import org.w3c.dom.NodeList;
|
|
|
|
|
|
/**
|
|
* Parses the race xml file to get course details
|
|
* Created by Haoming Yin (hyi25) on 16/3/2017
|
|
*/
|
|
public class BoatsParser extends FileParser {
|
|
|
|
private Document doc;
|
|
|
|
public BoatsParser(String path) {
|
|
super(path);
|
|
this.doc = this.parseFile();
|
|
}
|
|
|
|
}
|