Lines Matching refs:DefaultEventSource

2277 Timeline.DefaultEventSource=function(A){this._events=(A instanceof Object)?A:new SimileAjax.EventIn…  class in Timeline
2280 Timeline.DefaultEventSource.prototype.addListener=function(A){this._listeners.push(A);
2282 Timeline.DefaultEventSource.prototype.removeListener=function(B){for(var A=0;
2287 Timeline.DefaultEventSource.prototype.loadXML=function(G,A){var C=this._getBaseURL(A);
2297 var K=new Timeline.DefaultEventSource.Event({id:D.getAttribute("id"),start:E(D.getAttribute("start"…
2307 Timeline.DefaultEventSource.prototype.loadJSON=function(H,B){var D=this._getBaseURL(B);
2317 var L=new Timeline.DefaultEventSource.Event({id:("id" in A)?A.id:undefined,start:E(A.start),end:E(A…
2326 Timeline.DefaultEventSource.prototype.loadSPARQL=function(I,B){var E=this._getBaseURL(B);
2344 var M=new Timeline.DefaultEventSource.Event({id:D["id"],start:G(D["start"]),end:G(D["end"]),latestS…
2354 Timeline.DefaultEventSource.prototype.add=function(A){this._events.add(A);
2357 Timeline.DefaultEventSource.prototype.addMany=function(A){for(var B=0;
2362 Timeline.DefaultEventSource.prototype.clear=function(){this._events.removeAll();
2365 Timeline.DefaultEventSource.prototype.getEvent=function(A){return this._events.getEvent(A);
2367 Timeline.DefaultEventSource.prototype.getEventIterator=function(A,B){return this._events.getIterato…
2369 Timeline.DefaultEventSource.prototype.getEventReverseIterator=function(A,B){return this._events.get…
2371 Timeline.DefaultEventSource.prototype.getAllEventIterator=function(){return this._events.getAllIter…
2373 Timeline.DefaultEventSource.prototype.getCount=function(){return this._events.getCount();
2375 Timeline.DefaultEventSource.prototype.getEarliestDate=function(){return this._events.getEarliestDat…
2377 Timeline.DefaultEventSource.prototype.getLatestDate=function(){return this._events.getLatestDate();
2379 Timeline.DefaultEventSource.prototype._fire=function(B,A){for(var C=0;
2385 Timeline.DefaultEventSource.prototype._getBaseURL=function(A){if(A.indexOf("://")<0){var C=this._ge…
2392 Timeline.DefaultEventSource.prototype._resolveRelativeURL=function(A,B){if(A==null||A==""){return A;
2397 Timeline.DefaultEventSource.Event=function(A){function D(E){return(A[E]!=null&&A[E]!="")?A[E]:null;
2437 Timeline.DefaultEventSource.Event.prototype={getID:function(){return this._id;