*
* @param ae Event
*/
public void actionPerformed(ActionEvent ae)
{
PasswordDialog dialog = new PasswordDialog((Dialog) PasswordWidget.this.panel.getTopLevelAncestor(), true, resourceCollection);
SwingUtil.show(dialog);
if (dialog.isCancelled())
return;
PasswordWidget.this.setValue(dialog.getPassword());
notifyOptionMgrOfOptionChange();
}