JButton test = new JButton(mLocalizer.msg("check", "Check"));
test.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Window bestparent = UiUtilities.getBestDialogParent(panel);
ParamCheckDialog dialog;
dialog = new ParamCheckDialog(bestparent, mUrl.getText());
dialog.setVisible(true);
}
});
panel.add(test, cc.xy(5, 3));
JButton help = new JButton(Localizer.getLocalization(Localizer.I18N_HELP));
help.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
Window bestparent = UiUtilities.getBestDialogParent(panel);
ParamHelpDialog dialog;
dialog = new ParamHelpDialog(bestparent);
dialog.setVisible(true);
}