PageRenderTime 98ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/pyjs/tests/test001.js

http://pyjamas.googlecode.com/
JavaScript | 12 lines | 12 code | 0 blank | 0 comment | 0 complexity | bae134db76b146c9308f2311c1a784d7 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. __ui_UIObject.prototype.__class__ = "ui_UIObject";
  2. function ui_UIObject() {
  3. return new __ui_UIObject();
  4. }
  5. function __ui_UIObject() {
  6. }
  7. __ui_UIObject.prototype.getElement = function() {
  8. return this.element;
  9. };
  10. __ui_UIObject.prototype.setElement = function(element) {
  11. this.element = element;
  12. };