(className)
| 150 | |
| 151 | |
| 152 | function JavaProxy(className) { |
| 153 | return function (target) { |
| 154 | var extended = target.extend(className, target.prototype) |
| 155 | extended.name = className; |
| 156 | return extended; |
| 157 | }; |
| 158 | } |
| 159 | |
| 160 | function Interfaces(interfacesArr) { |
| 161 | return function (target) { |