IDEMPIERE-5239 : Add ConfirmPanel.getMap method (#1260)
This commit is contained in:
parent
e3a44d924d
commit
7254b851cf
|
@ -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. */
|
/** Action String OK. */
|
||||||
public static final String A_OK = "Ok";
|
public static final String A_OK = "Ok";
|
||||||
|
@ -598,4 +598,10 @@ public final class ConfirmPanel extends Div
|
||||||
useSmallButtonClassForSmallScreen = true;
|
useSmallButtonClassForSmallScreen = true;
|
||||||
addButtonSclass(SMALL_SCREEN_BUTTON_CLASS);
|
addButtonSclass(SMALL_SCREEN_BUTTON_CLASS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Returns the map containing all buttons attached to the ConfirmPanel */
|
||||||
|
public Map<String, Button> getMap() {
|
||||||
|
return buttonMap;
|
||||||
|
}
|
||||||
|
|
||||||
} // ConfirmPanel
|
} // ConfirmPanel
|
||||||
|
|
Loading…
Reference in New Issue