}
return newTrack;
}
public Tracks makeNewTracks(String timeStamp) {
Tracks newTracks = null;
try {
newTracks = objectFactory.createTracks();
newTracks.setTimestamp(timeStamp);
} catch (JAXBException e) {
System.out.println(
"There was this problem creating a new item: " + e);
}