package tim.prune.save.xml; import tim.prune.data.DataPoint; import tim.prune.data.FileInfo; import tim.prune.data.SourceInfo; /** * Class to hold a list of GpxCacher objects * and get the original source xml for data points */ public class GpxCacherList { /** Array of Gpx Cachers */ private GpxCacher[] _cacherList = null; /** * Constructor * @param inInfo file info object */ public GpxCacherList(FileInfo inInfo) { int numFiles = inInfo.getNumFiles(); _cacherList = new GpxCacher[numFiles]; for (int i=0; i