/**
* Show the dialog to change master password.
*/
private void showMasterPasswordChangeDialog()
{
MasterPasswordChangeDialog dialog = MasterPasswordChangeDialog.getInstance();
dialog.setCallback(new ChangeMasterPasswordCallback());
dialog.setVisible(true);
}