Added TimelineProperties.reloadTimeline() method.

This commit is contained in:
Jonathan Bernard 2013-08-09 11:37:55 -05:00
parent ec154c8a49
commit 6e6d799dee
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#Fri, 19 Jul 2013 18:51:43 -0500
#Fri, 09 Aug 2013 11:36:19 -0500
name=timestamper-lib
version=1.1
version=1.2
lib.local=true
build.number=2
build.number=1

View File

@ -179,6 +179,11 @@ public class TimelineProperties {
}
}
public Timeline reloadTimeline() throws IOException {
timeline = timelineSource.read();
return timeline;
}
public Timeline getTimeline() { return timeline; }
public void setTimelineSource(TimelineSource newSource) {