Exemplo n.º 1
0
 public void start() throws RaplaException {
   ui =
       new PasswordChangeUI(
           getClientFacade(), getI18n(), getRaplaLocale(), getLogger(), showOld);
   dlg =
       dialogUiFactory.create(
           popupContext,
           true,
           ui.getComponent(),
           new String[] {getString("change"), getString("cancel")});
   dlg.setDefault(0);
   dlg.setTitle(getI18n().format("change.format", getString("password")));
   dlg.getAction(0).setRunnable(this);
   dlg.getAction(1).setIcon("icon.cancel");
   dlg.start(true);
 }