NavIndex.js 353 B

123456789101112131415161718192021222324252627282930
  1. function NavIndex ()
  2. {
  3. this.m_nCurrentIndex = -1;
  4. this.m_arNav = new Array();
  5. };
  6. NavIndex.prototype.register = function (objControl)
  7. {
  8. };
  9. NavIndex.prototype.remove = function (objControl)
  10. {
  11. };
  12. NavIndex.prototype.getCurrent = function ()
  13. {
  14. };
  15. NavIndex.prototype.setCurrent = function ()
  16. {
  17. };
  18. NavIndex.prototype.refresh = function ()
  19. {
  20. };