WarningMessageDialog.js 614 B

1234567891011121314151617181920
  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. dojo.provide("WarningMessageDialog");
  13. dojo.declare("WarningMessageDialog", FaultMessageDialog, {
  14. constructor: function(oCV, errorMessage) {
  15. },
  16. isWarningMessage: function() {
  17. return true;
  18. }
  19. });