API Docs for: 0.9.1
Show:

File: lib/pageObjects/viewObject.js

  1. // Copyright 2014, Yahoo! Inc.
  2. // Copyrights licensed under the Mit License. See the accompanying LICENSE file for terms.
  3.  
  4. var BaseObject = require('./baseObject');
  5.  
  6. /**
  7. * @class ViewObject
  8. * @extends BaseObject
  9. */
  10. var ViewObject = BaseObject.extend(
  11.  
  12. {},
  13.  
  14. {
  15. /**
  16. * @property TYPE
  17. * @type {string}
  18. * @static
  19. */
  20. TYPE: 'ViewObject'
  21. }
  22. );
  23.  
  24. module.exports = ViewObject;
  25.