Introduction
Interface
Straight from the code:
Timeline.DefaultEventSource.Event.prototype
Event Methods:
- getID: function() { return this.id; },
- isInstant: function() { return this.instant; },
- isImprecise: function() { return this.start != this.latestStart || this.end != this.earliestEnd; },
- getStart: function() { return this.start; },
- getEnd: function() { return this.end; },
- getLatestStart: function() { return this.latestStart; },
- getEarliestEnd: function() { return this.earliestEnd; },
- getText: function() { return this.text; },
- getDescription: function() { return this.description; },
- getImage: function() { return this.image; },
- getLink: function() { return this.link; },
- getIcon: function() { return this.icon; },
- getColor: function() { return this.color; },
- getTextColor: function() { return this.textColor; },
- getProperty:
- getWikiURL: function() { return this.wikiURL; },
- getWikiSection: function() { return this.wikiSection; },
- setWikiInfo: function(wikiURL, wikiSection) {
This appears to be the documentation of Event, not EventSource?.