public Knowledge(Fact fact, Subject source, StoryPoint knownSince, double positionInSource) { _fact = fact; _source = source; _knownSince = knownSince; _positionInSource = positionInSource; }
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; }
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; } }
public void Clear() { _story = null; foreach (StoryPoint p in _events) { p.Clear(); } _events.Clear(); _events = null; _startPoint.Clear(); _startPoint = null; }
public void Clear() { _storypoint.Clear(); _storypoint = null; }
public Lifepoint(StoryPoint storypoint, TimeSpan timestamp) { _storypoint = storypoint; _timestamp = timestamp; }
public Fact(Subject source, StoryPoint when, double positionInText, string shortDescription) : this(source, when, positionInText, shortDescription, string.Empty) { }
public void Clear() { _subject = null; _storyPoint = null; }
public SubjectProperty(Subject who, StoryPoint when) { _subject = who; _storyPoint = when; }
public SubjectProperty(Subject who, StoryPoint when, string name, string value) : this(who, when) { _name = name; _value = value; }