ExportToXMLAction.js 612 B

1234567891011121314151617181920212223
  1. /*
  2. *+------------------------------------------------------------------------+
  3. *| Licensed Materials - Property of IBM
  4. *| IBM Cognos Products: Viewer
  5. *| (C) Copyright IBM Corp. 2013
  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 ExportToXMLAction()
  13. {
  14. this.m_format = "XML";
  15. }
  16. ExportToXMLAction.prototype = new ExportFromIframeAction();
  17. ExportToXMLAction.prototype.getWindowTitle = function()
  18. {
  19. return RV_RES.RV_XML;
  20. };