RefreshAction.js 674 B

123456789101112131415161718192021222324
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2001, 2011
  6. *|
  7. *| US Government Users Restricted Rights - Use, duplication or
  8. *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  9. *|
  10. *+------------------------------------------------------------------------+
  11. */
  12. function RefreshAction()
  13. {
  14. this.m_sAction = "Refresh";
  15. }
  16. RefreshAction.prototype = new RunReportAction();
  17. RefreshAction.superclass = RunReportAction.prototype;
  18. RefreshAction.prototype.execute = function()
  19. {
  20. RefreshAction.superclass.execute.call(this);
  21. };