*
* @param validatorsDisabled A boolean value
*
- * @since
+ * @since 8.11
*/
public void setValidatorsDisabled(boolean validatorsDisabled);
*
* @return A boolean value
*
- * @since
+ * @since 8.11
*/
public boolean isValidatorsDisabled();
}
* {@code null}
* @param forced
* disable all Validators during write
- * @since
+ * @since 8.11
*/
public void writeBeanAsDraft(BEAN bean, boolean forced) {
doWriteDraft(bean, new ArrayList<>(bindings),forced);
*
* @param validatorsDisabled Boolean value
*
- * @since
+ * @since 8.11
*/
public void setValidatorsDisabled(boolean validatorsDisabled) {
this.validatorsDisabled = validatorsDisabled;
*
* @return Boolean value
*
- * @since
+ * @since 8.11
*/
public boolean isValidatorsDisabled() {
return validatorsDisabled;
*
* @return {@code true} if the caption is rendered as HTML, {@code false} if
* rendered as plain text
- * @since
+ * @since 8.11
*/
public boolean isButtonCaptionAsHtml() {
return getState(false).buttonCaptionAsHtml;
* @param buttonCaptionAsHtml
* {@code true} if the caption is rendered as HTML, {@code false}
* if rendered as plain text
- * @since
+ * @since 8.11
*/
public void setButtonCaptionAsHtml(boolean buttonCaptionAsHtml) {
getState().buttonCaptionAsHtml = buttonCaptionAsHtml;