Ejemplo n.º 1
0
 private void setupAddProfile(final JButton addProfile) {
   addProfile.addActionListener(
       e ->
           new StandardInputDialog(
                   dialog,
                   Dialog.ModalityType.DOCUMENT_MODAL,
                   iconManager,
                   "Profile Manager: Add Profile",
                   "Enter the new profile's name",
                   model.getNewProfileNameValidator(),
                   (Consumer<String>) model::addProfile)
               .display());
 }