author | dadubrow |
Mon, 06 Apr 2009 13:50:37 -0500 | |
branch | RCL_2_0 |
changeset 48 | cfd7fcf6bf2d |
parent 2 | d760517a8095 |
permissions | -rw-r--r-- |
2 | 1 |
function CImplementationDelegate() { |
2 |
} |
|
3 |
||
4 |
CImplementationDelegate.prototype.getDelegates = function(instance, interfaceTypeName) { |
|
5 |
if (interfaceTypeName == "com.nokia.sdt.datamodel.adapter.ILayout") { |
|
6 |
return [ lookupInstanceByName("delegate") ]; |
|
7 |
} |
|
8 |
||
9 |
return null; |
|
10 |
} |
|
11 |
||
12 |
CImplementationDelegate.prototype.getDelegateInterfaceNames = function(instance) { |
|
13 |
return [ "com.nokia.sdt.datamodel.adapter.ILayout" ]; |
|
14 |
} |