IDEMPIERE-5239 : Add ConfirmPanel.getMap method (#1260)

This commit is contained in:
Nicolas Micoud 2022-03-22 06:08:47 +01:00 committed by GitHub
parent e3a44d924d
commit 7254b851cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public final class ConfirmPanel extends Div
/**
*
*/
private static final long serialVersionUID = -5522843675498634948L;
private static final long serialVersionUID = -2054986459098954685L;
/** Action String OK. */
public static final String A_OK = "Ok";
@ -598,4 +598,10 @@ public final class ConfirmPanel extends Div
useSmallButtonClassForSmallScreen = true;
addButtonSclass(SMALL_SCREEN_BUTTON_CLASS);
}
/** Returns the map containing all buttons attached to the ConfirmPanel */
public Map<String, Button> getMap() {
return buttonMap;
}
} // ConfirmPanel