BuxRunReportAction.js 939 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2001, 2012
  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. /**
  13. * This class should only be used in the case where there is delayed loading
  14. * of report.
  15. */
  16. function BuxRunReportAction()
  17. {
  18. BuxRunReportAction.baseConstructor.call();
  19. }
  20. BuxRunReportAction.prototype = new RunReportAction();
  21. BuxRunReportAction.baseConstructor = RunReportAction;
  22. BuxRunReportAction.prototype.canBeQueued = function() { return true; };
  23. BuxRunReportAction.prototype.getAction = function( limitedInteractiveMode ) {
  24. return limitedInteractiveMode ? 'runBux' : 'buxRunSpec';
  25. };