// Licensed Materials - Property of IBM // // IBM Cognos Products: pps // // (C) Copyright IBM Corp. 2005, 2017 // // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. var D_ppesAdminTitleDialog = new C_Dialog( "D_ppesAdminTitleDialog", "dlgPPESAdminTitle", "hal/../fragments/ppesAdmin/dialogs/" ); /** * Shows the dialog. * @param {HTMLElement} v_elVisualParent The element of the visual parent of this dialog. * @param {String} v_sTitle * @param {I_DialogListener} v_oDialogListener * @param {String} v_sCurrentValue * @type void */ D_ppesAdminTitleDialog.F_Show = function( v_elVisualParent, v_sTitle, v_oDialogListener, v_sCurrentValue ) { /** * @private */ this.m_sCurrentValue = v_sCurrentValue; this.M_fnSuper_Show( v_elVisualParent, v_oDialogListener, v_sTitle ); };