25 lines
503 B
JavaScript
25 lines
503 B
JavaScript
/**
|
||
* @fileOverview Runtime管理器,负责Runtime的选择, 连接
|
||
*/
|
||
define(function() {
|
||
|
||
function CompBase( owner, runtime ) {
|
||
|
||
this.owner = owner;
|
||
this.options = owner.options;
|
||
|
||
this.getRuntime = function() {
|
||
return runtime;
|
||
};
|
||
|
||
this.getRuid = function() {
|
||
return runtime.uid;
|
||
};
|
||
|
||
this.trigger = function() {
|
||
return owner.trigger.apply( owner, arguments );
|
||
};
|
||
}
|
||
|
||
return CompBase;
|
||
}); |