mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 06:18:44 +00:00
1c866ea8c2
#story[1250]
55 lines
1.4 KiB
Java
55 lines
1.4 KiB
Java
package seng302.model.stream.xml.parser;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import seng302.model.Limit;
|
|
import seng302.model.mark.CompoundMark;
|
|
import seng302.model.mark.Corner;
|
|
import seng302.model.token.Token;
|
|
|
|
/**
|
|
* Process a Document object containing race data in XML format and stores the data.
|
|
*/
|
|
public class RaceXMLData {
|
|
|
|
private List<Integer> participants;
|
|
private List<Token> tokens;
|
|
private Map<Integer, CompoundMark> compoundMarks;
|
|
private List<Corner> markSequence;
|
|
private List<Limit> courseLimit;
|
|
|
|
public RaceXMLData(List<Integer> participants, List<Token> tokens,
|
|
List<CompoundMark> compoundMarks,
|
|
List<Corner> markSequence, List<Limit> courseLimit) {
|
|
this.participants = participants;
|
|
this.tokens = tokens;
|
|
this.markSequence = markSequence;
|
|
this.courseLimit = courseLimit;
|
|
this.compoundMarks = new HashMap<>();
|
|
for (CompoundMark cMark : compoundMarks) {
|
|
this.compoundMarks.put(cMark.getId(), cMark);
|
|
}
|
|
}
|
|
|
|
public List<Integer> getParticipants() {
|
|
return participants;
|
|
}
|
|
|
|
public List<Token> getTokens() {
|
|
return tokens;
|
|
}
|
|
|
|
public Map<Integer, CompoundMark> getCompoundMarks() {
|
|
return compoundMarks;
|
|
}
|
|
|
|
public List<Corner> getMarkSequence() {
|
|
return markSequence;
|
|
}
|
|
|
|
public List<Limit> getCourseLimit() {
|
|
return courseLimit;
|
|
}
|
|
}
|