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.concatChildValues = function(node, def) {
2303 Timeline.DefaultEventSource.prototype.loadXML=function(G,A){var C=this._getBaseURL(A);
2313 var K=new Timeline.DefaultEventSource.Event({id:D.getAttribute("id"),start:E(D.getAttribute("start"…
2323 Timeline.DefaultEventSource.prototype.loadJSON=function(H,B){var D=this._getBaseURL(B);
2333 var L=new Timeline.DefaultEventSource.Event({id:("id" in A)?A.id:undefined,start:E(A.start),end:E(A…
2342 Timeline.DefaultEventSource.prototype.loadSPARQL=function(I,B){var E=this._getBaseURL(B);
2360 var M=new Timeline.DefaultEventSource.Event({id:D["id"],start:G(D["start"]),end:G(D["end"]),latestS…
2370 Timeline.DefaultEventSource.prototype.add=function(A){this._events.add(A);
2373 Timeline.DefaultEventSource.prototype.addMany=function(A){for(var B=0;
2378 Timeline.DefaultEventSource.prototype.clear=function(){this._events.removeAll();
2381 Timeline.DefaultEventSource.prototype.getEvent=function(A){return this._events.getEvent(A);
2383 Timeline.DefaultEventSource.prototype.getEventIterator=function(A,B){return this._events.getIterato…
2385 Timeline.DefaultEventSource.prototype.getEventReverseIterator=function(A,B){return this._events.get…
2387 Timeline.DefaultEventSource.prototype.getAllEventIterator=function(){return this._events.getAllIter…
2389 Timeline.DefaultEventSource.prototype.getCount=function(){return this._events.getCount();
2391 Timeline.DefaultEventSource.prototype.getEarliestDate=function(){return this._events.getEarliestDat…
2393 Timeline.DefaultEventSource.prototype.getLatestDate=function(){return this._events.getLatestDate();
2395 Timeline.DefaultEventSource.prototype._fire=function(B,A){for(var C=0;
2401 Timeline.DefaultEventSource.prototype._getBaseURL=function(A){if(A.indexOf("://")<0){var C=this._ge…
2408 Timeline.DefaultEventSource.prototype._resolveRelativeURL=function(A,B){if(A==null||A==""){return A;
2413 Timeline.DefaultEventSource.Event=function(A){function D(E){return(A[E]!=null&&A[E]!="")?A[E]:null;
2453 Timeline.DefaultEventSource.Event.prototype={getID:function(){return this._id;