Example #1
0
 public Knowledge(Fact fact, Subject source, StoryPoint knownSince, double positionInSource)
 {
     _fact             = fact;
     _source           = source;
     _knownSince       = knownSince;
     _positionInSource = positionInSource;
 }
Example #2
0
 public Fact(Subject source, StoryPoint when, double positionInSource, string shortDescription, string longDescription)
 {
     _source           = source;
     _stated           = when;
     _positionInSource = positionInSource;
     _shortDescription = shortDescription;
     _longDescription  = longDescription;
     _veracity         = Parameters.Veracity.Truth;
     _certainty        = Parameters.Certainty.NoIdeaIfTrue;
 }
Example #3
0
 public Timeline(Story story, string title, StoryPoint startPoint = null)
 {
     _story  = story;
     _title  = title;
     _events = new List <StoryPoint>();
     if (startPoint == null)
     {
         StoryPoint p = new StoryPoint(this, TimeSpan.Zero, "Story start");
         this._startPoint = p;
     }
 }
Example #4
0
 public void Clear()
 {
     _story = null;
     foreach (StoryPoint p in _events)
     {
         p.Clear();
     }
     _events.Clear();
     _events = null;
     _startPoint.Clear();
     _startPoint = null;
 }
Example #5
0
 public void Clear()
 {
     _storypoint.Clear();
     _storypoint = null;
 }
Example #6
0
 public Lifepoint(StoryPoint storypoint, TimeSpan timestamp)
 {
     _storypoint = storypoint;
     _timestamp  = timestamp;
 }
Example #7
0
 public Fact(Subject source, StoryPoint when, double positionInText, string shortDescription)
     : this(source, when, positionInText, shortDescription, string.Empty)
 {
 }
Example #8
0
 public void Clear()
 {
     _subject    = null;
     _storyPoint = null;
 }
Example #9
0
 public SubjectProperty(Subject who, StoryPoint when)
 {
     _subject    = who;
     _storyPoint = when;
 }
Example #10
0
 public SubjectProperty(Subject who, StoryPoint when, string name, string value)
     : this(who, when)
 {
     _name  = name;
     _value = value;
 }